diff --git a/1.x/sitemap.xml b/1.x/sitemap.xml
new file mode 100644
index 000000000..abf976db2
--- /dev/null
+++ b/1.x/sitemap.xml
@@ -0,0 +1,15963 @@
+
+
$ sbt
-[info] welcome to sbt 2.0.0-alpha7 (Azul Systems, Inc. Java 1.8.0_352)
+[info] welcome to sbt 2.0.0-alpha7 (Azul Systems, Inc. Java)
....
[info] started sbt server
sbt:foo-build>
@@ -253,12 +253,13 @@ Compile a
As a convention, we will use the sbt:...>
or >
prompt to mean that we're in the sbt interactive shell.
$ sbt
sbt:foo-build> compile
+[success] elapsed time: 0 s, cache 0%, 1 onsite task
Recompile on code change
Prefixing the compile
command (or any other command) with ~
causes the command to be automatically
re-executed whenever one of the source files within the project is modified. For example:
sbt:foo-build> ~compile
-[success] Total time: 0 s, completed 28 Jul 2023, 13:32:35
+[success] elapsed time: 0 s, cache 100%, 1 disk cache hit
[info] 1. Monitoring source files for foo-build/compile...
[info] Press <enter> to interrupt or '?' for more options.
@@ -268,16 +269,13 @@ Cre
in the example
directory using your favorite editor as follows:
package example
-object Hello {
- def main(args: Array[String]): Unit = {
- println("Hello")
- }
-}
+@main def main(args: String*): Unit =
+ println(s"Hello ${args.mkString}")
This new file should be picked up by the running command:
[info] Build triggered by /tmp/foo-build/src/main/scala/example/Hello.scala. Running 'compile'.
-[info] compiling 1 Scala source to /tmp/foo-build/target/scala-2.12/classes ...
-[success] Total time: 0 s, completed 28 Jul 2023, 13:38:55
+[info] compiling 1 Scala source to /tmp/foo-build/target/out/jvm/scala-3.3.3/foo/backend ...
+[success] elapsed time: 1 s, cache 0%, 1 onsite task
[info] 2. Monitoring source files for foo-build/compile...
[info] Press <enter> to interrupt or '?' for more options.
@@ -307,22 +305,22 @@ Getting help
sbt:foo-build> run
-[info] running example.Hello
+sbt:foo> run
+[info] running example.main
Hello
-[success] Total time: 0 s, completed 28 Jul 2023, 13:40:31
+[success] elapsed time: 0 s, cache 50%, 1 disk cache hit, 1 onsite task
Set ThisBuild / scalaVersion from sbt shell
-sbt:foo-build> set ThisBuild / scalaVersion := "$example_scala213$"
-[info] Defining ThisBuild / scalaVersion
-[info] The new value will be used by Compile / bspBuildTarget, Compile / dependencyTreeCrossProjectId and 50 others.
+sbt:foo-build> set scalaVersion := "3.3.3"
+[info] Defining scalaVersion
+[info] The new value will be used by Compile / bspBuildTarget, Compile / dependencyTreeCrossProjectId and 51 others.
[info] Run `last` for details.
[info] Reapplying settings...
-[info] set current project to foo-build (in build file:/tmp/foo-build/)
+[info] set current project to foo (in build file:/tmp/foo-build/)
Check the scalaVersion
setting:
sbt:foo-build> scalaVersion
-[info] $example_scala213$
+[info] 3.3.3
Save the session to build.sbt
We can save the ad-hoc settings using session save
.
@@ -337,17 +335,20 @@ ThisBuild / scalaVersion := "$example_scala213$"
+scalaVersion := "3.3.3"
Name your project
Using an editor, change build.sbt
as follows:
-@@snip name {}
+scalaVersion := "3.3.3"
+organization := "com.example"
+name := "Hello"
+
Reload the build
Use the reload
command to reload the build. The command causes the
build.sbt
file to be re-read, and its settings applied.
sbt:foo-build> reload
-[info] welcome to sbt 1.10.1 (Eclipse Adoptium Java 17.0.8)
+[info] welcome to sbt 2.x (Azul Systems, Inc. Java)
[info] loading project definition from /tmp/foo-build/project
[info] loading settings for project hello from build.sbt ...
[info] set current project to Hello (in build file:/tmp/foo-build/)
@@ -356,7 +357,11 @@ Reload the
Note that the prompt has now changed to sbt:Hello>
.
Add toolkit-test to libraryDependencies
Using an editor, change build.sbt
as follows:
-@@snip example-test {}
+scalaVersion := "3.3.3"
+organization := "com.example"
+name := "Hello"
+libraryDependencies += "org.scala-lang" %% "toolkit-test" % "0.1.7" % Test
+
Use the reload
command to reflect the change in build.sbt
.
sbt:Hello> reload
@@ -369,43 +374,58 @@ Write a test
Leaving the previous command running, create a file named src/test/scala/example/HelloSuite.scala
using an editor:
-@@snip example-test {}
+package example
+
+class HelloSuite extends munit.FunSuite:
+ test("Hello should start with H") {
+ assert("hello".startsWith("H"))
+ }
+end HelloSuite
+
~testQuick
should pick up the change:
-[info] 2. Monitoring source files for hello/testQuick...
-[info] Press <enter> to interrupt or '?' for more options.
-[info] Build triggered by /tmp/foo-build/src/test/scala/example/HelloSuite.scala. Running 'testQuick'.
-[info] compiling 1 Scala source to /tmp/foo-build/target/scala-2.13/test-classes ...
-HelloSuite:
-==> X HelloSuite.Hello should start with H 0.004s munit.FailException: /tmp/foo-build/src/test/scala/example/HelloSuite.scala:4 assertion failed
-3: test("Hello should start with H") {
-4: assert("hello".startsWith("H"))
-5: }
+example.HelloSuite:
+==> X example.HelloSuite.Hello should start with H 0.012s munit.FailException: /tmp/foo-build/src/test/scala/example/HelloSuite.scala:5 assertion failed
+4: test("Hello should start with H") {
+5: assert("hello".startsWith("H"))
+6: }
at munit.FunSuite.assert(FunSuite.scala:11)
- at HelloSuite.\$anonfun\$new\$1(HelloSuite.scala:4)
+ at example.HelloSuite.$init$$$anonfun$1(HelloSuite.scala:5)
[error] Failed: Total 1, Failed 1, Errors 0, Passed 0
[error] Failed tests:
-[error] HelloSuite
+[error] example.HelloSuite
[error] (Test / testQuick) sbt.TestsFailedException: Tests unsuccessful
+[error] elapsed time: 1 s, cache 50%, 3 disk cache hits, 3 onsite tasks
Make the test pass
Using an editor, change src/test/scala/example/HelloSuite.scala
to:
-@@snip example-test {}
+package example
+
+class HelloSuite extends munit.FunSuite:
+ test("Hello should start with H") {
+ assert("Hello".startsWith("H"))
+ }
+end HelloSuite
+
Confirm that the test passes, then press Enter
to exit the continuous test.
Add a library dependency
Using an editor, change build.sbt
as follows:
-@@snip example-library {}
+scalaVersion := "3.3.3"
+organization := "com.example"
+name := "Hello"
+libraryDependencies ++= Seq(
+ "org.scala-lang" %% "toolkit" % "0.1.7",
+ "org.scala-lang" %% "toolkit-test" % "0.1.7" % Test,
+)
+
Use the reload
command to reflect the change in build.sbt
.
Use Scala REPL
We can find out the current weather in New York.
sbt:Hello> console
-[info] Starting scala interpreter...
-Welcome to Scala 2.13.12 (OpenJDK 64-Bit Server VM, Java 17).
+Welcome to Scala 3.3.3 (1.8.0_402, Java OpenJDK 64-Bit Server VM).
Type in expressions for evaluation. Or try :help.
-scala> :paste
-// Entering paste mode (ctrl-D to finish)
-
-import sttp.client4.quick._
+scala>
+import sttp.client4.quick.*
import sttp.client4.Response
val newYorkLatitude: Double = 40.7143
@@ -449,7 +469,25 @@ Use Scala REPL<
Make a subproject
Change build.sbt
as follows:
-@@snip example-sub1 {}
+scalaVersion := "3.3.3"
+organization := "com.example"
+
+lazy val hello = project
+ .in(file("."))
+ .settings(
+ name := "Hello",
+ libraryDependencies ++= Seq(
+ "org.scala-lang" %% "toolkit" % "0.1.7",
+ "org.scala-lang" %% "toolkit-test" % "0.1.7" % Test
+ )
+ )
+
+lazy val helloCore = project
+ .in(file("core"))
+ .settings(
+ name := "Hello Core"
+ )
+
Use the reload
command to reflect the change in build.sbt
.
List all subprojects
sbt:Hello> projects
@@ -462,28 +500,91 @@
Add toolkit-test to the subproject
Change build.sbt
as follows:
-@@snip example-sub2 {}
+scalaVersion := "3.3.3"
+organization := "com.example"
+
+val toolkitTest = "org.scala-lang" %% "toolkit-test" % "0.1.7"
+
+lazy val hello = project
+ .in(file("."))
+ .settings(
+ name := "Hello",
+ libraryDependencies ++= Seq(
+ "org.scala-lang" %% "toolkit" % "0.1.7",
+ toolkitTest % Test
+ )
+ )
+
+lazy val helloCore = project
+ .in(file("core"))
+ .settings(
+ name := "Hello Core",
+ libraryDependencies += toolkitTest % Test
+ )
+
Broadcast commands
Set aggregate so that the command sent to hello
is broadcast to helloCore
too:
-@@snip example-sub3 {}
+scalaVersion := "3.3.3"
+organization := "com.example"
+
+val toolkitTest = "org.scala-lang" %% "toolkit-test" % "0.1.7"
+
+lazy val hello = project
+ .in(file("."))
+ .aggregate(helloCore)
+ .settings(
+ name := "Hello",
+ libraryDependencies ++= Seq(
+ "org.scala-lang" %% "toolkit" % "0.1.7",
+ toolkitTest % Test
+ )
+ )
+
+lazy val helloCore = project
+ .in(file("core"))
+ .settings(
+ name := "Hello Core",
+ libraryDependencies += toolkitTest % Test
+ )
+
After reload
, ~testQuick
now runs on both subprojects:
sbt:Hello> ~testQuick
Press Enter
to exit the continuous test.
Make hello depend on helloCore
Use .dependsOn(...)
to add a dependency on other subprojects. Also let's move the toolkit dependency to helloCore
.
-@@snip example-sub4 {}
+scalaVersion := "3.3.3"
+organization := "com.example"
+
+val toolkitTest = "org.scala-lang" %% "toolkit-test" % "0.1.7"
+
+lazy val hello = project
+ .in(file("."))
+ .aggregate(helloCore)
+ .dependsOn(helloCore)
+ .settings(
+ name := "Hello",
+ libraryDependencies += toolkitTest % Test
+ )
+
+lazy val helloCore = project
+ .in(file("core"))
+ .settings(
+ name := "Hello Core",
+ libraryDependencies += "org.scala-lang" %% "toolkit" % "0.1.7",
+ libraryDependencies += toolkitTest % Test
+ )
+
Parse JSON using uJson
Let's use uJson from the toolkit in helloCore
.
-@@snip example-weather-build {}
-After reload
, add core/src/main/scala/example/core/Weather.scala
:
+Add core/src/main/scala/example/core/Weather.scala
:
package example.core
import sttp.client4.quick._
import sttp.client4.Response
-object Weather {
- def temp() = {
+object Weather:
+ def temp() =
val response: Response[String] = quickRequest
.get(
uri"https://api.open-meteo.com/v1/forecast?latitude=40.7143&longitude=-74.006¤t_weather=true"
@@ -491,20 +592,16 @@
Next, change src/main/scala/example/Hello.scala
as follows:
package example
import example.core.Weather
-object Hello {
- def main(args: Array[String]): Unit = {
- val temp = Weather.temp()
- println(s"Hello! The current temperature in New York is \$temp C.")
- }
-}
+@main def main(args: String*): Unit =
+ val temp = Weather.temp()
+ println(s"Hello! The current temperature in New York is $temp C.")
Let's run the app to see if it worked:
sbt:Hello> run
@@ -513,15 +610,23 @@
-Add sbt-native-packager plugin
-Using an editor, create project/plugins.sbt
:
-@@snip example-weather-plugins {}
-Next change build.sbt
as follows to add JavaAppPackaging
:
-@@snip example-weather-build2 {}
-Reload and create a .zip distribution
-sbt:Hello> reload
+
Switch scalaVersion temporarily
sbt:Hello> ++3.3.3!
[info] Forcing Scala version to 3.3.3 on all projects.
@@ -565,18 +685,27 @@ Inspect the dist task
-To find out more about dist
, try help
and inspect
.
-sbt:Hello> help dist
+
Batch mode
You can also run sbt in batch mode, passing sbt commands directly from the terminal.
$ sbt clean "testOnly HelloSuite"
diff --git a/2.x/docs/en/sbt-by-example.html b/2.x/docs/en/sbt-by-example.html
index 32612cbbd..6555ad2c4 100644
--- a/2.x/docs/en/sbt-by-example.html
+++ b/2.x/docs/en/sbt-by-example.html
@@ -187,7 +187,7 @@ Start sbt shell
$ sbt
-[info] welcome to sbt 2.0.0-alpha7 (Azul Systems, Inc. Java 1.8.0_352)
+[info] welcome to sbt 2.0.0-alpha7 (Azul Systems, Inc. Java)
....
[info] started sbt server
sbt:foo-build>
@@ -200,12 +200,13 @@ Compile a
As a convention, we will use the sbt:...>
or >
prompt to mean that we're in the sbt interactive shell.
$ sbt
sbt:foo-build> compile
+[success] elapsed time: 0 s, cache 0%, 1 onsite task
Recompile on code change
Prefixing the compile
command (or any other command) with ~
causes the command to be automatically
re-executed whenever one of the source files within the project is modified. For example:
sbt:foo-build> ~compile
-[success] Total time: 0 s, completed 28 Jul 2023, 13:32:35
+[success] elapsed time: 0 s, cache 100%, 1 disk cache hit
[info] 1. Monitoring source files for foo-build/compile...
[info] Press <enter> to interrupt or '?' for more options.
@@ -215,16 +216,13 @@ Cre
in the example
directory using your favorite editor as follows:
package example
-object Hello {
- def main(args: Array[String]): Unit = {
- println("Hello")
- }
-}
+@main def main(args: String*): Unit =
+ println(s"Hello ${args.mkString}")
This new file should be picked up by the running command:
[info] Build triggered by /tmp/foo-build/src/main/scala/example/Hello.scala. Running 'compile'.
-[info] compiling 1 Scala source to /tmp/foo-build/target/scala-2.12/classes ...
-[success] Total time: 0 s, completed 28 Jul 2023, 13:38:55
+[info] compiling 1 Scala source to /tmp/foo-build/target/out/jvm/scala-3.3.3/foo/backend ...
+[success] elapsed time: 1 s, cache 0%, 1 onsite task
[info] 2. Monitoring source files for foo-build/compile...
[info] Press <enter> to interrupt or '?' for more options.
@@ -254,22 +252,22 @@ Getting help
Run your app
-sbt:foo-build> run
-[info] running example.Hello
+sbt:foo> run
+[info] running example.main
Hello
-[success] Total time: 0 s, completed 28 Jul 2023, 13:40:31
+[success] elapsed time: 0 s, cache 50%, 1 disk cache hit, 1 onsite task
Set ThisBuild / scalaVersion from sbt shell
-sbt:foo-build> set ThisBuild / scalaVersion := "$example_scala213$"
-[info] Defining ThisBuild / scalaVersion
-[info] The new value will be used by Compile / bspBuildTarget, Compile / dependencyTreeCrossProjectId and 50 others.
+sbt:foo-build> set scalaVersion := "3.3.3"
+[info] Defining scalaVersion
+[info] The new value will be used by Compile / bspBuildTarget, Compile / dependencyTreeCrossProjectId and 51 others.
[info] Run `last` for details.
[info] Reapplying settings...
-[info] set current project to foo-build (in build file:/tmp/foo-build/)
+[info] set current project to foo (in build file:/tmp/foo-build/)
Check the scalaVersion
setting:
sbt:foo-build> scalaVersion
-[info] $example_scala213$
+[info] 3.3.3
Save the session to build.sbt
We can save the ad-hoc settings using session save
.
@@ -284,17 +282,20 @@ ThisBuild / scalaVersion := "$example_scala213$"
+scalaVersion := "3.3.3"
Name your project
Using an editor, change build.sbt
as follows:
-@@snip name {}
+scalaVersion := "3.3.3"
+organization := "com.example"
+name := "Hello"
+
Reload the build
Use the reload
command to reload the build. The command causes the
build.sbt
file to be re-read, and its settings applied.
sbt:foo-build> reload
-[info] welcome to sbt 1.10.1 (Eclipse Adoptium Java 17.0.8)
+[info] welcome to sbt 2.x (Azul Systems, Inc. Java)
[info] loading project definition from /tmp/foo-build/project
[info] loading settings for project hello from build.sbt ...
[info] set current project to Hello (in build file:/tmp/foo-build/)
@@ -303,7 +304,11 @@ Reload the
Note that the prompt has now changed to sbt:Hello>
.
Add toolkit-test to libraryDependencies
Using an editor, change build.sbt
as follows:
-@@snip example-test {}
+scalaVersion := "3.3.3"
+organization := "com.example"
+name := "Hello"
+libraryDependencies += "org.scala-lang" %% "toolkit-test" % "0.1.7" % Test
+
Use the reload
command to reflect the change in build.sbt
.
sbt:Hello> reload
@@ -316,43 +321,58 @@ Write a test
Leaving the previous command running, create a file named src/test/scala/example/HelloSuite.scala
using an editor:
-@@snip example-test {}
+package example
+
+class HelloSuite extends munit.FunSuite:
+ test("Hello should start with H") {
+ assert("hello".startsWith("H"))
+ }
+end HelloSuite
+
~testQuick
should pick up the change:
-[info] 2. Monitoring source files for hello/testQuick...
-[info] Press <enter> to interrupt or '?' for more options.
-[info] Build triggered by /tmp/foo-build/src/test/scala/example/HelloSuite.scala. Running 'testQuick'.
-[info] compiling 1 Scala source to /tmp/foo-build/target/scala-2.13/test-classes ...
-HelloSuite:
-==> X HelloSuite.Hello should start with H 0.004s munit.FailException: /tmp/foo-build/src/test/scala/example/HelloSuite.scala:4 assertion failed
-3: test("Hello should start with H") {
-4: assert("hello".startsWith("H"))
-5: }
+example.HelloSuite:
+==> X example.HelloSuite.Hello should start with H 0.012s munit.FailException: /tmp/foo-build/src/test/scala/example/HelloSuite.scala:5 assertion failed
+4: test("Hello should start with H") {
+5: assert("hello".startsWith("H"))
+6: }
at munit.FunSuite.assert(FunSuite.scala:11)
- at HelloSuite.\$anonfun\$new\$1(HelloSuite.scala:4)
+ at example.HelloSuite.$init$$$anonfun$1(HelloSuite.scala:5)
[error] Failed: Total 1, Failed 1, Errors 0, Passed 0
[error] Failed tests:
-[error] HelloSuite
+[error] example.HelloSuite
[error] (Test / testQuick) sbt.TestsFailedException: Tests unsuccessful
+[error] elapsed time: 1 s, cache 50%, 3 disk cache hits, 3 onsite tasks
Make the test pass
Using an editor, change src/test/scala/example/HelloSuite.scala
to:
-@@snip example-test {}
+package example
+
+class HelloSuite extends munit.FunSuite:
+ test("Hello should start with H") {
+ assert("Hello".startsWith("H"))
+ }
+end HelloSuite
+
Confirm that the test passes, then press Enter
to exit the continuous test.
Add a library dependency
Using an editor, change build.sbt
as follows:
-@@snip example-library {}
+scalaVersion := "3.3.3"
+organization := "com.example"
+name := "Hello"
+libraryDependencies ++= Seq(
+ "org.scala-lang" %% "toolkit" % "0.1.7",
+ "org.scala-lang" %% "toolkit-test" % "0.1.7" % Test,
+)
+
Use the reload
command to reflect the change in build.sbt
.
Use Scala REPL
We can find out the current weather in New York.
sbt:Hello> console
-[info] Starting scala interpreter...
-Welcome to Scala 2.13.12 (OpenJDK 64-Bit Server VM, Java 17).
+Welcome to Scala 3.3.3 (1.8.0_402, Java OpenJDK 64-Bit Server VM).
Type in expressions for evaluation. Or try :help.
-scala> :paste
-// Entering paste mode (ctrl-D to finish)
-
-import sttp.client4.quick._
+scala>
+import sttp.client4.quick.*
import sttp.client4.Response
val newYorkLatitude: Double = 40.7143
@@ -396,7 +416,25 @@ Use Scala REPL<
Make a subproject
Change build.sbt
as follows:
-@@snip example-sub1 {}
+scalaVersion := "3.3.3"
+organization := "com.example"
+
+lazy val hello = project
+ .in(file("."))
+ .settings(
+ name := "Hello",
+ libraryDependencies ++= Seq(
+ "org.scala-lang" %% "toolkit" % "0.1.7",
+ "org.scala-lang" %% "toolkit-test" % "0.1.7" % Test
+ )
+ )
+
+lazy val helloCore = project
+ .in(file("core"))
+ .settings(
+ name := "Hello Core"
+ )
+
Use the reload
command to reflect the change in build.sbt
.
List all subprojects
sbt:Hello> projects
@@ -409,28 +447,91 @@
Add toolkit-test to the subproject
Change build.sbt
as follows:
-@@snip example-sub2 {}
+scalaVersion := "3.3.3"
+organization := "com.example"
+
+val toolkitTest = "org.scala-lang" %% "toolkit-test" % "0.1.7"
+
+lazy val hello = project
+ .in(file("."))
+ .settings(
+ name := "Hello",
+ libraryDependencies ++= Seq(
+ "org.scala-lang" %% "toolkit" % "0.1.7",
+ toolkitTest % Test
+ )
+ )
+
+lazy val helloCore = project
+ .in(file("core"))
+ .settings(
+ name := "Hello Core",
+ libraryDependencies += toolkitTest % Test
+ )
+
Broadcast commands
Set aggregate so that the command sent to hello
is broadcast to helloCore
too:
-@@snip example-sub3 {}
+scalaVersion := "3.3.3"
+organization := "com.example"
+
+val toolkitTest = "org.scala-lang" %% "toolkit-test" % "0.1.7"
+
+lazy val hello = project
+ .in(file("."))
+ .aggregate(helloCore)
+ .settings(
+ name := "Hello",
+ libraryDependencies ++= Seq(
+ "org.scala-lang" %% "toolkit" % "0.1.7",
+ toolkitTest % Test
+ )
+ )
+
+lazy val helloCore = project
+ .in(file("core"))
+ .settings(
+ name := "Hello Core",
+ libraryDependencies += toolkitTest % Test
+ )
+
After reload
, ~testQuick
now runs on both subprojects:
sbt:Hello> ~testQuick
Press Enter
to exit the continuous test.
Make hello depend on helloCore
Use .dependsOn(...)
to add a dependency on other subprojects. Also let's move the toolkit dependency to helloCore
.
-@@snip example-sub4 {}
+scalaVersion := "3.3.3"
+organization := "com.example"
+
+val toolkitTest = "org.scala-lang" %% "toolkit-test" % "0.1.7"
+
+lazy val hello = project
+ .in(file("."))
+ .aggregate(helloCore)
+ .dependsOn(helloCore)
+ .settings(
+ name := "Hello",
+ libraryDependencies += toolkitTest % Test
+ )
+
+lazy val helloCore = project
+ .in(file("core"))
+ .settings(
+ name := "Hello Core",
+ libraryDependencies += "org.scala-lang" %% "toolkit" % "0.1.7",
+ libraryDependencies += toolkitTest % Test
+ )
+
Parse JSON using uJson
Let's use uJson from the toolkit in helloCore
.
-@@snip example-weather-build {}
-After reload
, add core/src/main/scala/example/core/Weather.scala
:
+Add core/src/main/scala/example/core/Weather.scala
:
package example.core
import sttp.client4.quick._
import sttp.client4.Response
-object Weather {
- def temp() = {
+object Weather:
+ def temp() =
val response: Response[String] = quickRequest
.get(
uri"https://api.open-meteo.com/v1/forecast?latitude=40.7143&longitude=-74.006¤t_weather=true"
@@ -438,20 +539,16 @@
Next, change src/main/scala/example/Hello.scala
as follows:
package example
import example.core.Weather
-object Hello {
- def main(args: Array[String]): Unit = {
- val temp = Weather.temp()
- println(s"Hello! The current temperature in New York is \$temp C.")
- }
-}
+@main def main(args: String*): Unit =
+ val temp = Weather.temp()
+ println(s"Hello! The current temperature in New York is $temp C.")
Let's run the app to see if it worked:
sbt:Hello> run
@@ -460,15 +557,23 @@
-Add sbt-native-packager plugin
-Using an editor, create project/plugins.sbt
:
-@@snip example-weather-plugins {}
-Next change build.sbt
as follows to add JavaAppPackaging
:
-@@snip example-weather-build2 {}
-Reload and create a .zip distribution
-sbt:Hello> reload
+
Switch scalaVersion temporarily
sbt:Hello> ++3.3.3!
[info] Forcing Scala version to 3.3.3 on all projects.
@@ -512,18 +632,27 @@ Inspect the dist task
-To find out more about dist
, try help
and inspect
.
-sbt:Hello> help dist
+
Batch mode
You can also run sbt in batch mode, passing sbt commands directly from the terminal.
$ sbt clean "testOnly HelloSuite"
diff --git a/2.x/docs/en/searchindex.js b/2.x/docs/en/searchindex.js
index acf0f9b82..cd55da0ee 100644
--- a/2.x/docs/en/searchindex.js
+++ b/2.x/docs/en/searchindex.js
@@ -1 +1 @@
-Object.assign(window.search, {"doc_urls":["index.html#the-book-of-sbt-draft","Setup.html#installing-sbt-runner","Setup.html#prerequisites","Setup.html#installing-from-sdkman","Setup.html#universal-packages","Setup.html#verify-the-sbt-runner","sbt-by-example.html#sbt-by-example","sbt-by-example.html#create-a-minimum-sbt-build","sbt-by-example.html#start-sbt-shell","sbt-by-example.html#exit-sbt-shell","sbt-by-example.html#compile-a-project","sbt-by-example.html#recompile-on-code-change","sbt-by-example.html#create-a-source-file","sbt-by-example.html#run-a-previous-command","sbt-by-example.html#getting-help","sbt-by-example.html#run-your-app","sbt-by-example.html#set-thisbuild--scalaversion-from-sbt-shell","sbt-by-example.html#save-the-session-to-buildsbt","sbt-by-example.html#name-your-project","sbt-by-example.html#reload-the-build","sbt-by-example.html#add-toolkit-test-to-librarydependencies","sbt-by-example.html#run-tests","sbt-by-example.html#run-incremental-tests-continuously","sbt-by-example.html#write-a-test","sbt-by-example.html#make-the-test-pass","sbt-by-example.html#add-a-library-dependency","sbt-by-example.html#use-scala-repl","sbt-by-example.html#make-a-subproject","sbt-by-example.html#list-all-subprojects","sbt-by-example.html#compile-the-subproject","sbt-by-example.html#add-toolkit-test-to-the-subproject","sbt-by-example.html#broadcast-commands","sbt-by-example.html#make-hello-depend-on-hellocore","sbt-by-example.html#parse-json-using-ujson","sbt-by-example.html#add-sbt-native-packager-plugin","sbt-by-example.html#reload-and-create-a-zip-distribution","sbt-by-example.html#dockerize-your-app","sbt-by-example.html#set-the-version","sbt-by-example.html#switch-scalaversion-temporarily","sbt-by-example.html#inspect-the-dist-task","sbt-by-example.html#batch-mode","sbt-by-example.html#sbt-new-command","sbt-by-example.html#credits","guide/index.html#getting-started-with-sbt","guide/why-sbt-exists.html#why-sbt-exists","guide/why-sbt-exists.html#preliminaries","guide/why-sbt-exists.html#sbt","guide/why-sbt-exists.html#why-buildsbt-dsl","guide/sbt-new.html#creating-a-new-build","guide/sbt-new.html#giter8-templates","guide/sbt-components.html#sbt-components","guide/sbt-components.html#sbt-runner","guide/sbt-components.html#specifying-sbt-version-with-projectbuildproperties","guide/sbt-components.html#sbtn-sbt---client","guide/sbt-components.html#sbt-server","guide/sbt-components.html#coursier","guide/sbt-components.html#zinc","guide/sbt-components.html#bsp-server","guide/sbt-components.html#connecting-to-sbt-server","guide/sbt-components.html#sbt-shell-using-sbtn","guide/sbt-components.html#batch-mode-using-sbtn","guide/sbt-components.html#shutting-down-sbt-server","guide/running.html#working-with-an-existing-build","guide/running.html#sbt-shell-with-sbtn","guide/running.html#projects-command","guide/running.html#tasks-command","guide/running.html#compile","guide/running.html#run","guide/running.html#testquick","guide/running.html#watch-tilde-command","guide/build-definition-basics.html#build-definition-basics","guide/build-definition-basics.html#what-is-a-build-definition","guide/build-definition-basics.html#buildsbt-dsl","guide/build-definition-basics.html#typed-setting-expression","guide/build-definition-basics.html#vals-and-lazy-vals","guide/library-dependency-basics.html#library-dependency-basics","guide/library-dependency-basics.html#the-librarydependencies-key","guide/library-dependency-basics.html#getting-the-right-scala-version-with-","guide/library-dependency-basics.html#tracking-dependencies-in-one-place","guide/library-dependency-basics.html#viewing-library-dependencies","guide/multi-project-basics.html#multi-project-basics","guide/build-layout.html#build-layout","guide/build-layout.html#build-support-files","guide/build-layout.html#source-code","guide/build-layout.html#configuring-version-control","guide/IDE.html#sbt-with-ides","guide/IDE.html#using-sbt-as-metals-build-server","guide/IDE.html#importing-to-intellij-idea","guide/IDE.html#using-sbt-as-intellij-idea-build-server-advanced","guide/IDE.html#using-neovim-as-metals-frontend-advanced","setup-notes.html#setup-notes","setup-notes.html#os-specific-setup","setup-notes.html#macos","setup-notes.html#windows","setup-notes.html#linux"],"index":{"documentStore":{"docInfo":{"0":{"body":58,"breadcrumbs":4,"title":3},"1":{"body":48,"breadcrumbs":8,"title":3},"10":{"body":13,"breadcrumbs":6,"title":2},"11":{"body":43,"breadcrumbs":7,"title":3},"12":{"body":81,"breadcrumbs":7,"title":3},"13":{"body":14,"breadcrumbs":7,"title":3},"14":{"body":79,"breadcrumbs":6,"title":2},"15":{"body":17,"breadcrumbs":6,"title":2},"16":{"body":44,"breadcrumbs":9,"title":5},"17":{"body":64,"breadcrumbs":7,"title":3},"18":{"body":7,"breadcrumbs":6,"title":2},"19":{"body":50,"breadcrumbs":6,"title":2},"2":{"body":15,"breadcrumbs":6,"title":1},"20":{"body":16,"breadcrumbs":8,"title":4},"21":{"body":2,"breadcrumbs":6,"title":2},"22":{"body":2,"breadcrumbs":8,"title":4},"23":{"body":86,"breadcrumbs":6,"title":2},"24":{"body":15,"breadcrumbs":7,"title":3},"25":{"body":14,"breadcrumbs":7,"title":3},"26":{"body":129,"breadcrumbs":7,"title":3},"27":{"body":12,"breadcrumbs":6,"title":2},"28":{"body":9,"breadcrumbs":6,"title":2},"29":{"body":2,"breadcrumbs":6,"title":2},"3":{"body":24,"breadcrumbs":7,"title":2},"30":{"body":6,"breadcrumbs":8,"title":4},"31":{"body":23,"breadcrumbs":6,"title":2},"32":{"body":13,"breadcrumbs":8,"title":4},"33":{"body":91,"breadcrumbs":8,"title":4},"34":{"body":18,"breadcrumbs":9,"title":5},"35":{"body":83,"breadcrumbs":8,"title":4},"36":{"body":31,"breadcrumbs":6,"title":2},"37":{"body":7,"breadcrumbs":6,"title":2},"38":{"body":37,"breadcrumbs":7,"title":3},"39":{"body":35,"breadcrumbs":7,"title":3},"4":{"body":6,"breadcrumbs":7,"title":2},"40":{"body":37,"breadcrumbs":6,"title":2},"41":{"body":36,"breadcrumbs":7,"title":3},"42":{"body":10,"breadcrumbs":5,"title":1},"43":{"body":39,"breadcrumbs":5,"title":3},"44":{"body":0,"breadcrumbs":6,"title":2},"45":{"body":76,"breadcrumbs":5,"title":1},"46":{"body":83,"breadcrumbs":5,"title":1},"47":{"body":102,"breadcrumbs":6,"title":2},"48":{"body":282,"breadcrumbs":8,"title":3},"49":{"body":39,"breadcrumbs":7,"title":2},"5":{"body":4,"breadcrumbs":8,"title":3},"50":{"body":0,"breadcrumbs":6,"title":2},"51":{"body":21,"breadcrumbs":6,"title":2},"52":{"body":39,"breadcrumbs":8,"title":4},"53":{"body":39,"breadcrumbs":7,"title":3},"54":{"body":18,"breadcrumbs":6,"title":2},"55":{"body":14,"breadcrumbs":5,"title":1},"56":{"body":37,"breadcrumbs":5,"title":1},"57":{"body":21,"breadcrumbs":6,"title":2},"58":{"body":7,"breadcrumbs":7,"title":3},"59":{"body":105,"breadcrumbs":8,"title":4},"6":{"body":12,"breadcrumbs":6,"title":2},"60":{"body":15,"breadcrumbs":8,"title":4},"61":{"body":15,"breadcrumbs":8,"title":4},"62":{"body":31,"breadcrumbs":8,"title":3},"63":{"body":75,"breadcrumbs":8,"title":3},"64":{"body":34,"breadcrumbs":7,"title":2},"65":{"body":211,"breadcrumbs":7,"title":2},"66":{"body":29,"breadcrumbs":6,"title":1},"67":{"body":49,"breadcrumbs":6,"title":1},"68":{"body":94,"breadcrumbs":6,"title":1},"69":{"body":42,"breadcrumbs":8,"title":3},"7":{"body":14,"breadcrumbs":8,"title":4},"70":{"body":5,"breadcrumbs":8,"title":3},"71":{"body":60,"breadcrumbs":7,"title":2},"72":{"body":29,"breadcrumbs":7,"title":2},"73":{"body":77,"breadcrumbs":8,"title":3},"74":{"body":142,"breadcrumbs":8,"title":3},"75":{"body":25,"breadcrumbs":8,"title":3},"76":{"body":31,"breadcrumbs":7,"title":2},"77":{"body":54,"breadcrumbs":9,"title":4},"78":{"body":69,"breadcrumbs":9,"title":4},"79":{"body":44,"breadcrumbs":8,"title":3},"8":{"body":17,"breadcrumbs":7,"title":3},"80":{"body":65,"breadcrumbs":8,"title":3},"81":{"body":89,"breadcrumbs":6,"title":2},"82":{"body":40,"breadcrumbs":7,"title":3},"83":{"body":99,"breadcrumbs":6,"title":2},"84":{"body":28,"breadcrumbs":7,"title":3},"85":{"body":43,"breadcrumbs":6,"title":2},"86":{"body":166,"breadcrumbs":9,"title":5},"87":{"body":136,"breadcrumbs":7,"title":3},"88":{"body":256,"breadcrumbs":11,"title":7},"89":{"body":250,"breadcrumbs":9,"title":5},"9":{"body":13,"breadcrumbs":7,"title":3},"90":{"body":49,"breadcrumbs":5,"title":2},"91":{"body":0,"breadcrumbs":6,"title":3},"92":{"body":39,"breadcrumbs":4,"title":1},"93":{"body":10,"breadcrumbs":4,"title":1},"94":{"body":266,"breadcrumbs":4,"title":1}},"docs":{"0":{"body":"Warning This is a draft documentation of sbt 2.x that is yet to be released. While the general concept translates to sbt 1.x, details of both 2.x and this doc are subject to change. sbt logo sbt is a simple build tool for Scala and Java. sbt downloads your library dependencies via Coursier, incrementally compiles and tests your projects, integrates with IDEs like IntelliJ and VS Code, makes JAR packages, and publishes them to Maven Central , JVM community's package registry. scalaVersion := \"3.3.3\" You just need one line of build.sbt to get started with Scala.","breadcrumbs":"Introduction » The Book of sbt (Draft)","id":"0","title":"The Book of sbt (Draft)"},"1":{"body":"To build an sbt project, you'll need to take these steps: Install JDK (We recommend Eclipse Adoptium Temurin JDK 8, 11, or 17, or Zulu JDK 8 for macOS with ARM chips). Install sbt runner. sbt runner is a script that invokes a declared version of sbt, downloading it beforehand if necessary. This allows build authors to precisely control the sbt version, instead of relying on users' machine environment.","breadcrumbs":"Quick Start » Installing sbt runner » Installing sbt runner","id":"1","title":"Installing sbt runner"},"10":{"body":"As a convention, we will use the sbt:...> or > prompt to mean that we're in the sbt interactive shell. $ sbt\nsbt:foo-build> compile","breadcrumbs":"Quick Start » sbt by example » Compile a project","id":"10","title":"Compile a project"},"11":{"body":"Prefixing the compile command (or any other command) with ~ causes the command to be automatically re-executed whenever one of the source files within the project is modified. For example: sbt:foo-build> ~compile\n[success] Total time: 0 s, completed 28 Jul 2023, 13:32:35\n[info] 1. Monitoring source files for foo-build/compile...\n[info] Press to interrupt or '?' for more options.","breadcrumbs":"Quick Start » sbt by example » Recompile on code change","id":"11","title":"Recompile on code change"},"12":{"body":"Leave the previous command running. From a different shell or in your file manager create in the foo-build directory the following nested directories: src/main/scala/example. Then, create Hello.scala in the example directory using your favorite editor as follows: package example object Hello { def main(args: Array[String]): Unit = { println(\"Hello\") }\n} This new file should be picked up by the running command: [info] Build triggered by /tmp/foo-build/src/main/scala/example/Hello.scala. Running 'compile'.\n[info] compiling 1 Scala source to /tmp/foo-build/target/scala-2.12/classes ...\n[success] Total time: 0 s, completed 28 Jul 2023, 13:38:55\n[info] 2. Monitoring source files for foo-build/compile...\n[info] Press to interrupt or '?' for more options. Press Enter to exit ~compile.","breadcrumbs":"Quick Start » sbt by example » Create a source file","id":"12","title":"Create a source file"},"13":{"body":"From sbt shell, press up-arrow twice to find the compile command that you executed at the beginning. sbt:foo-build> compile","breadcrumbs":"Quick Start » sbt by example » Run a previous command","id":"13","title":"Run a previous command"},"14":{"body":"Use the help command to get basic help about the available commands. sbt:foo-build> help (; )* Runs the provided semicolon-separated commands. about Displays basic information about sbt and the build. tasks Lists the tasks defined for the current project. settings Lists the settings defined for the current project. reload (Re)loads the current project or changes to plugins project or returns from it. new Creates a new sbt build. new Creates a new sbt build. projects Lists the names of available projects or temporarily adds/removes extra builds to the session. .... Display the description of a specific task: sbt:foo-build> help run\nRuns a main class, passing along arguments provided on the command line.","breadcrumbs":"Quick Start » sbt by example » Getting help","id":"14","title":"Getting help"},"15":{"body":"sbt:foo-build> run\n[info] running example.Hello\nHello\n[success] Total time: 0 s, completed 28 Jul 2023, 13:40:31","breadcrumbs":"Quick Start » sbt by example » Run your app","id":"15","title":"Run your app"},"16":{"body":"sbt:foo-build> set ThisBuild / scalaVersion := \"$example_scala213$\"\n[info] Defining ThisBuild / scalaVersion\n[info] The new value will be used by Compile / bspBuildTarget, Compile / dependencyTreeCrossProjectId and 50 others.\n[info] Run `last` for details.\n[info] Reapplying settings...\n[info] set current project to foo-build (in build file:/tmp/foo-build/) Check the scalaVersion setting: sbt:foo-build> scalaVersion\n[info] $example_scala213$","breadcrumbs":"Quick Start » sbt by example » Set ThisBuild / scalaVersion from sbt shell","id":"16","title":"Set ThisBuild / scalaVersion from sbt shell"},"17":{"body":"We can save the ad-hoc settings using session save. sbt:foo-build> session save\n[info] Reapplying settings...\n[info] set current project to foo-build (in build file:/tmp/foo-build/)\n[warn] build source files have changed\n[warn] modified files:\n[warn] /tmp/foo-build/build.sbt\n[warn] Apply these changes by running `reload`.\n[warn] Automatically reload the build when source changes are detected by setting `Global / onChangedBuildSource := ReloadOnSourceChanges`.\n[warn] Disable this warning by setting `Global / onChangedBuildSource := IgnoreSourceChanges`. build.sbt file should now contain: ThisBuild / scalaVersion := \"$example_scala213$\"","breadcrumbs":"Quick Start » sbt by example » Save the session to build.sbt","id":"17","title":"Save the session to build.sbt"},"18":{"body":"Using an editor, change build.sbt as follows: @@snip name {}","breadcrumbs":"Quick Start » sbt by example » Name your project","id":"18","title":"Name your project"},"19":{"body":"Use the reload command to reload the build. The command causes the build.sbt file to be re-read, and its settings applied. sbt:foo-build> reload\n[info] welcome to sbt 1.10.1 (Eclipse Adoptium Java 17.0.8)\n[info] loading project definition from /tmp/foo-build/project\n[info] loading settings for project hello from build.sbt ...\n[info] set current project to Hello (in build file:/tmp/foo-build/)\nsbt:Hello> Note that the prompt has now changed to sbt:Hello>.","breadcrumbs":"Quick Start » sbt by example » Reload the build","id":"19","title":"Reload the build"},"2":{"body":"sbt runs on all major operating systems; however, it requires JDK 8 or higher to run. java -version\n# openjdk version \"1.8.0_352\"","breadcrumbs":"Quick Start » Installing sbt runner » Prerequisites","id":"2","title":"Prerequisites"},"20":{"body":"Using an editor, change build.sbt as follows: @@snip example-test {} Use the reload command to reflect the change in build.sbt. sbt:Hello> reload","breadcrumbs":"Quick Start » sbt by example » Add toolkit-test to libraryDependencies","id":"20","title":"Add toolkit-test to libraryDependencies"},"21":{"body":"sbt:Hello> test","breadcrumbs":"Quick Start » sbt by example » Run tests","id":"21","title":"Run tests"},"22":{"body":"sbt:Hello> ~testQuick","breadcrumbs":"Quick Start » sbt by example » Run incremental tests continuously","id":"22","title":"Run incremental tests continuously"},"23":{"body":"Leaving the previous command running, create a file named src/test/scala/example/HelloSuite.scala using an editor: @@snip example-test {} ~testQuick should pick up the change: [info] 2. Monitoring source files for hello/testQuick...\n[info] Press to interrupt or '?' for more options.\n[info] Build triggered by /tmp/foo-build/src/test/scala/example/HelloSuite.scala. Running 'testQuick'.\n[info] compiling 1 Scala source to /tmp/foo-build/target/scala-2.13/test-classes ...\nHelloSuite:\n==> X HelloSuite.Hello should start with H 0.004s munit.FailException: /tmp/foo-build/src/test/scala/example/HelloSuite.scala:4 assertion failed\n3: test(\"Hello should start with H\") {\n4: assert(\"hello\".startsWith(\"H\"))\n5: } at munit.FunSuite.assert(FunSuite.scala:11) at HelloSuite.\\$anonfun\\$new\\$1(HelloSuite.scala:4)\n[error] Failed: Total 1, Failed 1, Errors 0, Passed 0\n[error] Failed tests:\n[error] HelloSuite\n[error] (Test / testQuick) sbt.TestsFailedException: Tests unsuccessful","breadcrumbs":"Quick Start » sbt by example » Write a test","id":"23","title":"Write a test"},"24":{"body":"Using an editor, change src/test/scala/example/HelloSuite.scala to: @@snip example-test {} Confirm that the test passes, then press Enter to exit the continuous test.","breadcrumbs":"Quick Start » sbt by example » Make the test pass","id":"24","title":"Make the test pass"},"25":{"body":"Using an editor, change build.sbt as follows: @@snip example-library {} Use the reload command to reflect the change in build.sbt.","breadcrumbs":"Quick Start » sbt by example » Add a library dependency","id":"25","title":"Add a library dependency"},"26":{"body":"We can find out the current weather in New York. sbt:Hello> console\n[info] Starting scala interpreter...\nWelcome to Scala 2.13.12 (OpenJDK 64-Bit Server VM, Java 17).\nType in expressions for evaluation. Or try :help. scala> :paste\n// Entering paste mode (ctrl-D to finish) import sttp.client4.quick._\nimport sttp.client4.Response val newYorkLatitude: Double = 40.7143\nval newYorkLongitude: Double = -74.006\nval response: Response[String] = quickRequest .get( uri\"https://api.open-meteo.com/v1/forecast?latitude=\\$newYorkLatitude&longitude=\\$newYorkLongitude¤t_weather=true\" ) .send() println(ujson.read(response.body).render(indent = 2)) // press Ctrl+D // Exiting paste mode, now interpreting. { \"latitude\": 40.710335, \"longitude\": -73.99307, \"generationtime_ms\": 0.36704540252685547, \"utc_offset_seconds\": 0, \"timezone\": \"GMT\", \"timezone_abbreviation\": \"GMT\", \"elevation\": 51, \"current_weather\": { \"temperature\": 21.3, \"windspeed\": 16.7, \"winddirection\": 205, \"weathercode\": 3, \"is_day\": 1, \"time\": \"2023-08-04T10:00\" }\n}\nimport sttp.client4.quick._\nimport sttp.client4.Response\nval newYorkLatitude: Double = 40.7143\nval newYorkLongitude: Double = -74.006\nval response: sttp.client4.Response[String] = Response({\"latitude\":40.710335,\"longitude\":-73.99307,\"generationtime_ms\":0.36704540252685547,\"utc_offset_seconds\":0,\"timezone\":\"GMT\",\"timezone_abbreviation\":\"GMT\",\"elevation\":51.0,\"current_weather\":{\"temperature\":21.3,\"windspeed\":16.7,\"winddirection\":205.0,\"weathercode\":3,\"is_day\":1,\"time\":\"2023-08-04T10:00\"}},200,,List(:status: 200, content-encoding: deflate, content-type: application/json; charset=utf-8, date: Fri, 04 Aug 2023 10:09:11 GMT),List(),RequestMetadata(GET,https://api.open-meteo.com/v1/forecast?latitude=40.7143&longitude... scala> :q // to quit","breadcrumbs":"Quick Start » sbt by example » Use Scala REPL","id":"26","title":"Use Scala REPL"},"27":{"body":"Change build.sbt as follows: @@snip example-sub1 {} Use the reload command to reflect the change in build.sbt.","breadcrumbs":"Quick Start » sbt by example » Make a subproject","id":"27","title":"Make a subproject"},"28":{"body":"sbt:Hello> projects\n[info] In file:/tmp/foo-build/\n[info] * hello\n[info] helloCore","breadcrumbs":"Quick Start » sbt by example » List all subprojects","id":"28","title":"List all subprojects"},"29":{"body":"sbt:Hello> helloCore/compile","breadcrumbs":"Quick Start » sbt by example » Compile the subproject","id":"29","title":"Compile the subproject"},"3":{"body":"To install both JDK and sbt, consider using SDKMAN . sdk install java $(sdk list java | grep -o \"\\b8\\.[0-9]*\\.[0-9]*\\-tem\" | head -1)\nsdk install sbt","breadcrumbs":"Quick Start » Installing sbt runner » Installing from SDKMAN","id":"3","title":"Installing from SDKMAN"},"30":{"body":"Change build.sbt as follows: @@snip example-sub2 {}","breadcrumbs":"Quick Start » sbt by example » Add toolkit-test to the subproject","id":"30","title":"Add toolkit-test to the subproject"},"31":{"body":"Set aggregate so that the command sent to hello is broadcast to helloCore too: @@snip example-sub3 {} After reload, ~testQuick now runs on both subprojects: sbt:Hello> ~testQuick Press Enter to exit the continuous test.","breadcrumbs":"Quick Start » sbt by example » Broadcast commands","id":"31","title":"Broadcast commands"},"32":{"body":"Use .dependsOn(...) to add a dependency on other subprojects. Also let's move the toolkit dependency to helloCore. @@snip example-sub4 {}","breadcrumbs":"Quick Start » sbt by example » Make hello depend on helloCore","id":"32","title":"Make hello depend on helloCore"},"33":{"body":"Let's use uJson from the toolkit in helloCore. @@snip example-weather-build {} After reload, add core/src/main/scala/example/core/Weather.scala: package example.core import sttp.client4.quick._\nimport sttp.client4.Response object Weather { def temp() = { val response: Response[String] = quickRequest .get( uri\"https://api.open-meteo.com/v1/forecast?latitude=40.7143&longitude=-74.006¤t_weather=true\" ) .send() val json = ujson.read(response.body) json.obj(\"current_weather\")(\"temperature\").num }\n} Next, change src/main/scala/example/Hello.scala as follows: package example import example.core.Weather object Hello { def main(args: Array[String]): Unit = { val temp = Weather.temp() println(s\"Hello! The current temperature in New York is \\$temp C.\") }\n} Let's run the app to see if it worked: sbt:Hello> run\n[info] compiling 1 Scala source to /tmp/foo-build/core/target/scala-2.13/classes ...\n[info] compiling 1 Scala source to /tmp/foo-build/target/scala-2.13/classes ...\n[info] running example.Hello\nHello! The current temperature in New York is 22.7 C.","breadcrumbs":"Quick Start » sbt by example » Parse JSON using uJson","id":"33","title":"Parse JSON using uJson"},"34":{"body":"Using an editor, create project/plugins.sbt: @@snip example-weather-plugins {} Next change build.sbt as follows to add JavaAppPackaging: @@snip example-weather-build2 {}","breadcrumbs":"Quick Start » sbt by example » Add sbt-native-packager plugin","id":"34","title":"Add sbt-native-packager plugin"},"35":{"body":"sbt:Hello> reload\n...\nsbt:Hello> dist\n[info] Wrote /private/tmp/foo-build/target/scala-2.13/hello_2.13-0.1.0-SNAPSHOT.pom\n[info] Main Scala API documentation to /tmp/foo-build/target/scala-2.13/api...\n[info] Main Scala API documentation successful.\n[info] Main Scala API documentation to /tmp/foo-build/core/target/scala-2.13/api...\n[info] Wrote /tmp/foo-build/core/target/scala-2.13/hello-core_2.13-0.1.0-SNAPSHOT.pom\n[info] Main Scala API documentation successful.\n[success] All package validations passed\n[info] Your package is ready in /tmp/foo-build/target/universal/hello-0.1.0-SNAPSHOT.zip Here's how you can run the packaged app: $ /tmp/someother\n$ cd /tmp/someother\n$ unzip -o -d /tmp/someother /tmp/foo-build/target/universal/hello-0.1.0-SNAPSHOT.zip\n$ ./hello-0.1.0-SNAPSHOT/bin/hello\nHello! The current temperature in New York is 22.7 C.","breadcrumbs":"Quick Start » sbt by example » Reload and create a .zip distribution","id":"35","title":"Reload and create a .zip distribution"},"36":{"body":"Note that a Docker daemon will need to be running in order for this to work. sbt:Hello> Docker/publishLocal\n....\n[info] Built image hello with tags [0.1.0-SNAPSHOT] Here's how to run the Dockerized app: $ docker run hello:0.1.0-SNAPSHOT\nHello! The current temperature in New York is 22.7 C.","breadcrumbs":"Quick Start » sbt by example » Dockerize your app","id":"36","title":"Dockerize your app"},"37":{"body":"Change build.sbt as follows: @@snip example-weather-build3 {}","breadcrumbs":"Quick Start » sbt by example » Set the version","id":"37","title":"Set the version"},"38":{"body":"sbt:Hello> ++3.3.3!\n[info] Forcing Scala version to 3.3.3 on all projects.\n[info] Reapplying settings...\n[info] Set current project to Hello (in build file:/tmp/foo-build/) Check the scalaVersion setting: sbt:Hello> scalaVersion\n[info] helloCore / scalaVersion\n[info] 3.3.3\n[info] scalaVersion\n[info] 3.3.3 This setting will go away after reload.","breadcrumbs":"Quick Start » sbt by example » Switch scalaVersion temporarily","id":"38","title":"Switch scalaVersion temporarily"},"39":{"body":"To find out more about dist, try help and inspect. sbt:Hello> help dist\nCreates the distribution packages.\nsbt:Hello> inspect dist To call inspect recursively on the dependency tasks use inspect tree. sbt:Hello> inspect tree dist\n[info] dist = Task[java.io.File]\n[info] +-Universal / dist = Task[java.io.File]\n....","breadcrumbs":"Quick Start » sbt by example » Inspect the dist task","id":"39","title":"Inspect the dist task"},"4":{"body":"sbt-1.10.0.zip sbt-1.10.0.tgz sbt-1.10.0.msi","breadcrumbs":"Quick Start » Installing sbt runner » Universal packages","id":"4","title":"Universal packages"},"40":{"body":"You can also run sbt in batch mode, passing sbt commands directly from the terminal. $ sbt clean \"testOnly HelloSuite\" Note : Running in batch mode requires JVM spinup and JIT each time, so your build will run much slower . For day-to-day coding, we recommend using the sbt shell or a continuous test like ~testQuick.","breadcrumbs":"Quick Start » sbt by example » Batch mode","id":"40","title":"Batch mode"},"41":{"body":"You can use the sbt new command to quickly setup a simple \"Hello world\" build. $ sbt new scala/scala-seed.g8\n....\nA minimal Scala project. name [My Something Project]: hello Template applied in ./hello When prompted for the project name, type hello. This will create a new project under a directory named hello.","breadcrumbs":"Quick Start » sbt by example » sbt new command","id":"41","title":"sbt new command"},"42":{"body":"This page is based on the Essential sbt tutorial written by William \"Scala William\" Narmontas.","breadcrumbs":"Quick Start » sbt by example » Credits","id":"42","title":"Credits"},"43":{"body":"sbt uses a small number of concepts to support flexible and powerful build definitions. There are not that many concepts, but sbt is not exactly like other build systems and there are details you will stumble on if you haven't read the documentation. The Getting Started Guide covers the concepts you need to know to create and maintain an sbt build definition. It is highly recommended to read the Getting Started Guide!","breadcrumbs":"Getting Started » Getting Started with sbt","id":"43","title":"Getting Started with sbt"},"44":{"body":"","breadcrumbs":"Getting Started » Why sbt exists » Why sbt exists","id":"44","title":"Why sbt exists"},"45":{"body":"In Scala, a library or a program is compiled using the Scala compiler, scalac, as documented in the Scala 3 Book : @main def hello() = println(\"Hello, World!\") $ scalac hello.scala\n$ scala hello\nHello, World! This process gets tedious and slow if we were to invoke scalac directly since we'd have to pass all the Scala source file names. Furthermore, most non-trivial programs will likely have library dependencies, and will therefore also depend transitively on their dependencies. This is doubly complicated for Scala ecosystem because we have Scala 2.12, 2.13 ecosystem, Scala 3.x ecosystem, JVM, JS, and Native platforms. Rather than working with JAR files and scalac, we can avoid manual toil by introducing a higher-level subproject abstraction and by using a build tool.","breadcrumbs":"Getting Started » Why sbt exists » Preliminaries","id":"45","title":"Preliminaries"},"46":{"body":"sbt is a simple build tool created for Scala and Java. It lets us declare subprojects and their various dependencies and custom tasks to ensure that we'll always get a fast, repeatable build. To accomplish this goal, sbt does several things: The version of sbt itself is tracked in project/build.properties. Defines a domain-specific language (DSL) called build.sbt DSL that can declare the Scala version and other subproject information in build.sbt. Uses Coursier to fetch subprojects dependencies and their dependencies. Invokes Zinc to incrementally compile Scala and Java sources. Automatically runs tasks in parallel whenever possible. Defines conventions on how packages are published to Maven repositories to interoperate with the wider JVM ecosystem. To a large extent, sbt standardizes the commands needed to build a given program or library.","breadcrumbs":"Getting Started » Why sbt exists » sbt","id":"46","title":"sbt"},"47":{"body":"build.sbt DSL makes sbt a unique build tool, as opposed to other tools that use configuration file formats like YAML, TOML, and XML. Originally developed beween 2010 and 2013, build.sbt can start almost like a YAML file, declaring just scalaVersion and libraryDependencies, but it can supports more features to keep the build definition organized as the build grows larger: To avoid repeating the same information, like the version number for a library, build.sbt can declare variables using val. Uses Scala language constructs like if to define settings and tasks, when needed. Statically typed settings and tasks, to catch typos and type errors before the build starts. The type also helps passing data from one task from another. Provides structured concurrency via Initialized[Task[A]]. The DSL uses direct style .value syntax to concisely define task graphs. Enpowers the community to extend sbt with plugins that provide custom tasks or language extensions like Scala.JS.","breadcrumbs":"Getting Started » Why sbt exists » Why build.sbt DSL?","id":"47","title":"Why build.sbt DSL?"},"48":{"body":"To start a new build with sbt, use sbt new. $ mkdir /tmp/foo\n$ cd /tmp/foo\n$ sbt new Welcome to sbt new!\nHere are some templates to get started: a) scala/toolkit.local - Scala Toolkit (beta) by Scala Center and VirtusLab b) typelevel/toolkit.local - Toolkit to start building Typelevel apps c) sbt/cross-platform.local - A cross-JVM/JS/Native project d) scala/scala3.g8 - Scala 3 seed template e) scala/scala-seed.g8 - Scala 2 seed template f) playframework/play-scala-seed.g8 - A Play project in Scala g) playframework/play-java-seed.g8 - A Play project in Java i) softwaremill/tapir.g8 - A tapir project using Netty m) scala-js/vite.g8 - A Scala.JS + Vite project n) holdenk/sparkProjectTemplate.g8 - A Scala Spark project o) spotify/scio.g8 - A Scio project p) disneystreaming/smithy4s.g8 - A Smithy4s project q) quit\nSelect a template: If you select \"a\", you will be prompted by more questions: Select a template: a\nScala version (default: 3.3.0):\nScala Toolkit version (default: 0.2.0): Hit return key to select the default values. [info] Updated file /private/tmp/bar/project/build.properties: set sbt.version to 1.9.8\n[info] welcome to sbt 1.9.8 (Azul Systems, Inc. Java 1.8.0_352)\n....\n[info] set current project to bar (in build file:/private/tmp/foo/)\n[info] sbt server started at local:///Users/eed3si9n/.sbt/1.0/server/d0ac1409c0117a949d47/sock\n[info] started sbt server\nsbt:bar> exit\n[info] shutting down sbt server Here are the files that are created by this template: .\n├── build.sbt\n├── project\n│ └── build.properties\n├── src\n│ ├── main\n│ │ └── scala\n│ │ └── example\n│ │ └── Main.scala\n│ └── test\n│ └── scala\n│ └── example\n│ └── ExampleSuite.scala\n└── target Let's take a look at the build.sbt file: val toolkitV = \"0.2.0\"\nval toolkit = \"org.scala-lang\" %% \"toolkit\" % toolkitV\nval toolkitTest = \"org.scala-lang\" %% \"toolkit-test\" % toolkitV scalaVersion := \"3.3.0\"\nlibraryDependencies += toolkit\nlibraryDependencies += (toolkitTest % Test) This is called a build definition , and it contains the information sbt needs to compile your project. This is written in .sbt format, a subset of Scala language. Here's what's in src/main/scala/example/Main.scala: package example @main def main(args: String*): Unit = println(s\"Hello ${args.mkString}\") This is a Hello world template. We can run it from the sbt shell by starting sbt --client and typing run inside the shell: $ sbt --client\n[info] entering *experimental* thin client - BEEP WHIRR\n[info] server was not detected. starting an instance\n....\ninfo] terminate the server with `shutdown`\n[info] disconnect from the server with `exit`\nsbt:bar> run Raj\n[info] running example.main Raj\nHello Raj\n[success] Total time: 0 s, completed Feb 18, 2024 2:38:10 PM","breadcrumbs":"Getting Started » Creating a new build » Creating a new build","id":"48","title":"Creating a new build"},"49":{"body":"In addition to a few .local templates, sbt new integrates with Giter8 , and open templating system that uses GitHub to host templates. For example, scala/scala3.g8 is maintained by the Scala team to create a new Scala 3 build: $ /tmp\n$ sbt new scala/scala3.g8 Giter8 wiki lists over 100 templates that can jump start your new build.","breadcrumbs":"Getting Started » Creating a new build » Giter8 templates","id":"49","title":"Giter8 templates"},"5":{"body":"sbt --script-version\n# 1.10.0","breadcrumbs":"Quick Start » Installing sbt runner » Verify the sbt runner","id":"5","title":"Verify the sbt runner"},"50":{"body":"","breadcrumbs":"Getting Started » sbt components » sbt components","id":"50","title":"sbt components"},"51":{"body":"An sbt build is executed using the sbt runner, also called \"sbt-the-shell-script\" to distinguish from other components. It's important to note is that sbt runner is designed to run any version of sbt.","breadcrumbs":"Getting Started » sbt components » sbt runner","id":"51","title":"sbt runner"},"52":{"body":"The sbt runner executes a subcomponent called sbt launcher, which reads project/build.properties to determine the sbt version for the build, and downloads the artifacts if they haven't been cached: sbt.version=2.0.0-alpha7 This means that: Anyone who checkouts your build would get the same sbt version, regardless of sbt runner they may have installed on their machines. The change of sbt version can be tracked in a version control system, like git.","breadcrumbs":"Getting Started » sbt components » Specifying sbt version with project/build.properties","id":"52","title":"Specifying sbt version with project/build.properties"},"53":{"body":"sbtn (native thin client) is a subcomponent of the sbt runner, called when you pass --client flag to the sbt runner, and is used to send commands to the sbt server. It is called sbtn because it is compiled to native code using GraalVM native-image. The protocol between sbtn and sbt server is stable enough that it should work between most recent versions of sbt.","breadcrumbs":"Getting Started » sbt components » sbtn (sbt --client)","id":"53","title":"sbtn (sbt --client)"},"54":{"body":"The sbt server is the actual build tool whose version is specified using project/build.properties. The sbt server acts as a cashier to take commands from sbtn and editors.","breadcrumbs":"Getting Started » sbt components » sbt server","id":"54","title":"sbt server"},"55":{"body":"The sbt server runs Couriser as a subcomponent to resolve Scala library, Scala compiler, and any other library dependencies your build needs.","breadcrumbs":"Getting Started » sbt components » Coursier","id":"55","title":"Coursier"},"56":{"body":"Zinc is the incremental compiler for Scala, developed and maintained by sbt project. An often overlooked aspect of Zinc is that Zinc provides a stable API to invoke any modern versions of Scala compiler. Combined with the fact that Coursier can resolve any Scala version, with sbt we can invoke any modern versions of Scala just by writing a single line build.sbt: scalaVersion := \"3.3.3\"","breadcrumbs":"Getting Started » sbt components » Zinc","id":"56","title":"Zinc"},"57":{"body":"The sbt server supports Build Server Protocol (BSP) to list build targets, build them, etc. This allows IDEs like IntelliJ and Metals to communicate with a running sbt server programmatically.","breadcrumbs":"Getting Started » sbt components » BSP server","id":"57","title":"BSP server"},"58":{"body":"Let's look at three ways of connecting to the sbt server.","breadcrumbs":"Getting Started » sbt components » Connecting to sbt server","id":"58","title":"Connecting to sbt server"},"59":{"body":"Run sbt --client in the working directory of your build: sbt --client This should display something like the following: $ sbt --client\n[info] server was not detected. starting an instance\n[info] welcome to sbt 2.0.0-alpha7 (Azul Systems, Inc. Java 1.8.0_352)\n[info] loading project definition from /private/tmp/bar/project\n[info] loading settings for project bar from build.sbt ...\n[info] set current project to bar (in build file:/private/tmp/bar/)\n[info] sbt server started at local:///Users/eed3si9n/.sbt/2.0.0-alpha7/server/d0ac1409c0117a949d47/sock\n[info] started sbt server\n[info] terminate the server with `shutdown`\n[info] disconnect from the server with `exit`\nsbt:bar> Running sbt with no command line arguments starts sbt shell. sbt shell has a command prompt (with tab completion and history!). For example, you could type compile at the sbt shell: sbt:bar> compile To compile again, press up arrow and then enter. To leave sbt shell, type exit or use Ctrl-D (Unix) or Ctrl-Z (Windows).","breadcrumbs":"Getting Started » sbt components » sbt shell using sbtn","id":"59","title":"sbt shell using sbtn"},"6":{"body":"This page assumes you've installed sbt runner . Let's start with examples rather than explaining how sbt works or why.","breadcrumbs":"Quick Start » sbt by example » sbt by example","id":"6","title":"sbt by example"},"60":{"body":"You can also run sbt in batch mode: sbt --client compile\nsbt --client testOnly TestA $ sbt --client compile\n> compile","breadcrumbs":"Getting Started » sbt components » Batch mode using sbtn","id":"60","title":"Batch mode using sbtn"},"61":{"body":"Run the following to shutdown all sbt servers on your machine: sbt shutdownall Or the following to shutdown just the current one: sbt --client shutdown","breadcrumbs":"Getting Started » sbt components » Shutting down sbt server","id":"61","title":"Shutting down sbt server"},"62":{"body":"This page describes how to use sbt once you have set up your project. This page assumes you've read sbt components . If you pull a repository that uses sbt, it's fairly easy to get started. First, get the package from GitHub, or some other repository. $ git clone https://github.com/scalanlp/breeze.git\n$ cd breeze","breadcrumbs":"Getting Started » Working with an existing build » Working with an existing build","id":"62","title":"Working with an existing build"},"63":{"body":"As mentioned in sbt components , start an sbt shell: $ sbt --client This should display something like the following: $ sbt --client\n[info] entering *experimental* thin client - BEEP WHIRR\n[info] server was not detected. starting an instance\n[info] welcome to sbt 1.5.5 (Azul Systems, Inc. Java 1.8.0_352)\n[info] loading global plugins from /Users/eed3si9n/.sbt/1.0/plugins\n[info] loading settings for project breeze-build from plugins.sbt ...\n[info] loading project definition from /private/tmp/breeze/project\nDownloading https://repo1.maven.org/maven2/org/scalanlp/sbt-breeze-expand-codegen_2.12_1.0/0.2.1/sbt-breeze-expand-codegen-0.2.1.pom\n....\n[info] sbt server started at local:///Users/eed3si9n/.sbt/1.0/server/dd982e07e85c7de1b618/sock\n[info] terminate the server with `shutdown`\n[info] disconnect from the server with `exit`\nsbt:breeze-parent>","breadcrumbs":"Getting Started » Working with an existing build » sbt shell with sbtn","id":"63","title":"sbt shell with sbtn"},"64":{"body":"Let's explore the build by listing out the subprojects with projects command: sbt:breeze-parent> projects\n[info] In file:/private/tmp/breeze/\n[info] benchmark\n[info] macros\n[info] math\n[info] natives\n[info] * root\n[info] viz This shows that this build has 6 subprojects, including the current subproject called root.","breadcrumbs":"Getting Started » Working with an existing build » projects command","id":"64","title":"projects command"},"65":{"body":"Similarly, we can list the tasks availble to this build using tasks command: sbt:breeze-parent> tasks This is a list of tasks defined for the current project.\nIt does not list the scopes the tasks are defined in; use the 'inspect' command for that.\nTasks produce values. Use the 'show' command to run the task and print the resulting value. bgRun Start an application's default main class as a background job bgRunMain Start a provided main class as a background job clean Deletes files produced by the build, such as generated sources, compiled classes, and task caches. compile Compiles sources. console Starts the Scala interpreter with the project classes on the classpath. consoleProject Starts the Scala interpreter with the sbt and the build definition on the classpath and useful imports. consoleQuick Starts the Scala interpreter with the project dependencies on the classpath. copyResources Copies resources to the output directory. doc Generates API documentation. package Produces the main artifact, such as a binary jar. This is typically an alias for the task that actually does the packaging. packageBin Produces a main artifact, such as a binary jar. packageDoc Produces a documentation artifact, such as a jar containing API documentation. packageSrc Produces a source artifact, such as a jar containing sources and resources. publish Publishes artifacts to a repository. publishLocal Publishes artifacts to the local Ivy repository. publishM2 Publishes artifacts to the local Maven repository. run Runs a main class, passing along arguments provided on the command line. runMain Runs the main class selected by the first argument, passing the remaining arguments to the main method. test Executes all tests. testOnly Executes the tests provided as arguments or all tests if no arguments are provided. testQuick Executes the tests that either failed before, were not run or whose transitive dependencies changed, among those provided as arguments. update Resolves and optionally retrieves dependencies, producing a report. More tasks may be viewed by increasing verbosity. See 'help tasks'","breadcrumbs":"Getting Started » Working with an existing build » tasks command","id":"65","title":"tasks command"},"66":{"body":"The compile tasks compiles the sources, after resolving and downloading the library dependendies. > compile This should display something like the following: sbt:breeze-parent> compile\n[info] compiling 341 Scala sources and 1 Java source to /private/tmp/breeze/math/target/scala-3.1.3/classes ... | => math / Compile / compileIncremental 51s","breadcrumbs":"Getting Started » Working with an existing build » compile","id":"66","title":"compile"},"67":{"body":"The run task runs the main class for the subproject. In the sbt shell, type math/run: > math/run math/run means run task, scoped to math subproject. This should display something like the following: sbt:breeze-parent> math/run\n[info] Scala version: 3.1.3 true\n.... Multiple main classes detected. Select one to run: [1] breeze.optimize.linear.NNLS [2] breeze.optimize.proximal.NonlinearMinimizer [3] breeze.optimize.proximal.QuadraticMinimizer [4] breeze.util.UpdateSerializedObjects Enter number: Enter 1 at the prompt.","breadcrumbs":"Getting Started » Working with an existing build » run","id":"67","title":"run"},"68":{"body":"The testQuick task tests either the tests that failed before, were not run, or whose transitive dependencies changed. > math/testQuick This should display something like the following: sbt:breeze-parent> math/testQuick\n[info] FeatureVectorTest:\n[info] - axpy fv dv (1 second, 106 milliseconds)\n[info] - axpy fv vb (9 milliseconds)\n[info] - DM mult (19 milliseconds)\n[info] - CSC mult (32 milliseconds)\n[info] - DM trans mult (4 milliseconds)\n....\n[info] Run completed in 58 seconds, 183 milliseconds.\n[info] Total number of tests run: 1285\n[info] Suites: completed 168, aborted 0\n[info] Tests: succeeded 1285, failed 0, canceled 0, ignored 0, pending 0\n[info] All tests passed.\n[success] Total time: 130 s (02:10), completed Feb 19, 2024","breadcrumbs":"Getting Started » Working with an existing build » testQuick","id":"68","title":"testQuick"},"69":{"body":"To speed up your edit-compile-test cycle, you can ask sbt to automatically recompile or run tests whenever you save a source file. Make a command run when one or more source files change by prefixing the command with ~. For example, in sbt shell try: > ~testQuick Press enter to stop watching for changes. You can use the ~ prefix with either sbt shell or batch mode.","breadcrumbs":"Getting Started » Working with an existing build » Watch (tilde) command","id":"69","title":"Watch (tilde) command"},"7":{"body":"mkdir foo-build\ncd foo-build\ntouch build.sbt\nmkdir project\necho \"sbt.version=2.0.0-alpha7\" > project/build.properties","breadcrumbs":"Quick Start » sbt by example » Create a minimum sbt build","id":"7","title":"Create a minimum sbt build"},"70":{"body":"This page discusses the build.sbt build definition.","breadcrumbs":"Getting Started » Build definition basics » Build definition basics","id":"70","title":"Build definition basics"},"71":{"body":"A build definition is defined in build.sbt, and it consists of a set of projects (of type Project ). Because the term project can be ambiguous, we often call it a subproject in this guide. For instance, in build.sbt you define the subproject located in the current directory like this: scalaVersion := \"3.3.3\"\nname := \"Hello\" or more explicitly: lazy val root = (project in file(\".\")) .settings( scalaVersion := \"3.3.3\", name := \"Hello\", ) Each subproject is configured by key-value pairs. For example, one key is name and it maps to a string value, the name of your subproject. The key-value pairs are listed under the .settings(...) method.","breadcrumbs":"Getting Started » Build definition basics » What is a build definition?","id":"71","title":"What is a build definition?"},"72":{"body":"build.sbt defines subprojects using a DSL called build.sbt DSL, which is based on Scala. Initially you can use build.sbt DSL, like a YAML file, declaring just scalaVersion and libraryDependencies, but it can supports more features to keep the build definition organized as the build grows larger.","breadcrumbs":"Getting Started » Build definition basics » build.sbt DSL","id":"72","title":"build.sbt DSL"},"73":{"body":"Let's take a closer look at the build.sbt DSL: organization := \"com.example\"\n^^^^^^^^^^^^ ^^^^^^^^ ^^^^^^^^^^^^^\nkey operator (setting/task) body Each entry is called a setting expression . Some among them are also called task expressions. We will see more on the difference later in this page. A setting expression consists of three parts: Left-hand side is a key . Operator , which in this case is := Right-hand side is called the body , or the setting/task body . On the left-hand side, name, version, and scalaVersion are keys . A key is an instance of SettingKey[A] , TaskKey[A] , or InputKey[A] where A is the expected value type. Because key name is typed to SettingKey[String], the := operator on name is also typed specifically to String. If you use the wrong value type, the build definition will not compile: name := 42 // will not compile","breadcrumbs":"Getting Started » Build definition basics » Typed setting expression","id":"73","title":"Typed setting expression"},"74":{"body":"To avoid repeating the same information, like the version number for a library, build.sbt may be interspersed with vals, lazy vals, and defs. val toolkitV = \"0.2.0\"\nval toolkit = \"org.scala-lang\" %% \"toolkit\" % toolkitV\nval toolkitTest = \"org.scala-lang\" %% \"toolkit-test\" % toolkitV scalaVersion := \"3.3.3\"\nlibraryDependencies += toolkit\nlibraryDependencies += (toolkitTest % Test) In the above, val defines a variable, which are initialized from the top to bottom. This means that toolkitV must be defined before it is referenced. Here's a bad example: // bad example\nval toolkit = \"org.scala-lang\" %% \"toolkit\" % toolkitV // uninitialized reference!\nval toolkitTest = \"org.scala-lang\" %% \"toolkit-test\" % toolkitV // uninitialized reference!\nval toolkitV = \"0.2.0\" sbt will fail to load with java.lang.ExceptionInInitializerError cased by a NullPointerException if your build.sbt contains an uninitialized forward reference. One way to let the compiler fix this is to define the variables as lazy: lazy val toolkit = \"org.scala-lang\" %% \"toolkit\" % toolkitV\nlazy val toolkitTest = \"org.scala-lang\" %% \"toolkit-test\" % toolkitV\nlazy val toolkitV = \"0.2.0\" Some frown upon gratuitous lazy vals, but Scala 3 lazy vals are efficient, and we think it makes the build definition more robust for copy-pasting. Note Top-level objects and classes are not allowed in build.sbt. Those should go in the project/ directory as Scala source files.","breadcrumbs":"Getting Started » Build definition basics » vals and lazy vals","id":"74","title":"vals and lazy vals"},"75":{"body":"This page explains the basics of library dependency management using sbt. sbt uses Coursier to implement managed dependencies, so if you're familiar with package managers like Coursier, npm, PIP, etc you won't have much trouble.","breadcrumbs":"Getting Started » Library dependency basics » Library dependency basics","id":"75","title":"Library dependency basics"},"76":{"body":"Declaring a dependency looks like this, where groupId, artifactId, and revision are strings: libraryDependencies += groupID % artifactID % revision or like this, where configuration can be a string or a Configuration value (such as Test): libraryDependencies += groupID % artifactID % revision % configuration When you run: > compile sbt will automatically resolve the dependencies and download the JAR files.","breadcrumbs":"Getting Started » Library dependency basics » The libraryDependencies key","id":"76","title":"The libraryDependencies key"},"77":{"body":"If you use organization %% moduleName % version rather than organization % moduleName % version (the difference is the double %% after the organization), sbt will add your project's binary Scala version to the artifact name. This is just a shortcut. You could write this without the %%: libraryDependencies += \"org.scala-lang\" % \"toolkit_3\" % \"0.2.0\" Assuming the scalaVersion for your build is 3.x, the following is identical (note the double %% after \"toolkit\"): libraryDependencies += \"org.scala-lang\" %% \"toolkit\" % \"0.2.0\" The idea is that many dependencies are compiled for multiple Scala versions, and you'd like to get the one that matches your project to ensure binary compatibility.","breadcrumbs":"Getting Started » Library dependency basics » Getting the right Scala version with %%","id":"77","title":"Getting the right Scala version with %%"},"78":{"body":".scala files under project becomes part of the build definition, which we can use to track dependencies in one place by creating a file named project/Dependencies.scala. // place this file at project/Dependencies.scala import sbt.* object Dependencies: // versions lazy val toolkitV = \"0.2.0\" // libraries val toolkit = \"org.scala-lang\" %% \"toolkit\" % toolkitV val toolkitTest = \"org.scala-lang\" %% \"toolkit-test\" % toolkitV\nend Dependencies The Dependencies object will be available in build.sbt. To make it easier to use the vals defined in it, import Dependencies.* in your build.sbt file. import Dependencies.* scalaVersion := \"3.3.3\"\nname := \"something\"\nlibraryDependencies += toolkit\nlibraryDependencies += toolkitTest % Test","breadcrumbs":"Getting Started » Library dependency basics » Tracking dependencies in one place","id":"78","title":"Tracking dependencies in one place"},"79":{"body":"Type in Compile/dependencyTree in the sbt shell to show the library dependency tree, including the transitive dependencies: > Compile/dependencyTree This should display something like the following: sbt:bar> Compile/dependencyTree\n[info] default:bar_3:0.1.0-SNAPSHOT\n[info] +-org.scala-lang:scala3-library_3:3.3.1 [S]\n[info] +-org.scala-lang:toolkit_3:0.2.0\n[info] +-com.lihaoyi:os-lib_3:0.9.1\n[info] | +-com.lihaoyi:geny_3:1.0.0\n[info] | | +-org.scala-lang:scala3-library_3:3.1.3 (evicted by: 3.3.1)\n[info] | | +-org.scala-lang:scala3-library_3:3.3.1 [S]\n....","breadcrumbs":"Getting Started » Library dependency basics » Viewing library dependencies","id":"79","title":"Viewing library dependencies"},"8":{"body":"$ sbt\n[info] welcome to sbt 2.0.0-alpha7 (Azul Systems, Inc. Java 1.8.0_352)\n....\n[info] started sbt server\nsbt:foo-build>","breadcrumbs":"Quick Start » sbt by example » Start sbt shell","id":"8","title":"Start sbt shell"},"80":{"body":"While a simple program can start out as a single-project build, it's more common for a build to split into smaller, multiple subprojects. Each subproject in a build has its own source directories, generates its own JAR file when you run packageBin, and in general works like any other project. A project is defined by declaring a lazy val of type Project . For example, : scalaVersion := \"3.3.3\" lazy val core = (project in file(\"core\")) .settings( name := \"core\", ) lazy val util = (project in file(\"util\")) .dependsOn(core) .settings( name := \"util\", ) The name of the val is used as the subproject's ID, which is used to refer to the subproject at the sbt shell.","breadcrumbs":"Getting Started » Multi project basics » Multi project basics","id":"80","title":"Multi project basics"},"81":{"body":"sbt uses conventions for file placement to make it easy to dive into a new sbt build: .\n├── build.sbt\n├── project/\n│ ├── build.properties\n│ ├── Dependencies.scala\n│ └── plugins.sbt\n├── src/\n│ ├── main/\n│ │ ├── java/\n│ │ ├── resources/\n│ │ ├── scala/\n│ │ └── scala-2.13/\n│ └── test/\n│ ├── java/\n│ ├── resources/\n│ ├── scala/\n│ └── scala-2.13/\n├── subproject-core/\n│ └── src/\n│ ├── main/\n│ └── test/\n├─── subproject-util/\n│ └── src/\n│ ├── main/\n│ └── test/\n└── target/ The local root directory . is the starting point of your build. In sbt's terminology, the base directory is the directory containing the subproject. In the above, ., subproject-core, and subproject-util are base directories. The build definition is described in build.sbt (actually any files named *.sbt) in the local root directory. The sbt version is tracked in project/build.properties. Generated files (compiled classes, packaged jars, managed files, caches, and documentation) will be written to the target directory by default.","breadcrumbs":"Getting Started » Build layout » Build layout","id":"81","title":"Build layout"},"82":{"body":"In addition to build.sbt, project directory can contain .scala files that define helper objects and one-off plugins. See organizing the build for more. .\n├── build.sbt\n├── project/\n│ ├── build.properties\n│ ├── Dependencies.scala\n│ └── plugins.sbt\n.... You may see .sbt files inside project/ but they are not equivalent to .sbt files in the project's base directory. Explaining this will come later , since you'll need some background information first.","breadcrumbs":"Getting Started » Build layout » Build support files","id":"82","title":"Build support files"},"83":{"body":"sbt uses the same directory structure as Maven for source files by default (all paths are relative to the base directory): ....\n├── src/\n│ ├── main/\n│ │ ├── java/ \n│ │ ├── resources/ \n│ │ ├── scala/ \n│ │ └── scala-2.13/ \n│ └── test/\n│ ├── java/ \n│ ├── resources/ \n│ ├── scala/ \n│ └── scala-2.13/ \n.... Other directories in src/ will be ignored. Additionally, all hidden directories will be ignored. Source code can be placed in the project's base directory as hello/app.scala, which may be OK for small projects, though for normal projects people tend to keep the projects in the src/main/ directory to keep things neat. The fact that you can place *.scala source code in the base directory might seem like an odd trick, but this fact becomes relevant later .","breadcrumbs":"Getting Started » Build layout » Source code","id":"83","title":"Source code"},"84":{"body":"Your .gitignore (or equivalent for other version control systems) should contain: target/ Note that this deliberately has a trailing / (to match only directories) and it deliberately has no leading / (to match project/target/ in addition to plain target/). sbt automates building, testing, and deployment of your subprojects from information in the build definition.","breadcrumbs":"Getting Started » Build layout » Configuring version control","id":"84","title":"Configuring version control"},"85":{"body":"While it's possible to code Scala with just an editor and sbt, most programmers today use an Integrated Development Environment, or IDE for short. Two of the popular IDEs in Scala are Metals and IntelliJ IDEA , and they both integrate with sbt builds. Using sbt as Metals build server Importing to IntelliJ IDEA Using sbt as IntelliJ IDEA build server Using Neovim as Metals frontend","breadcrumbs":"Getting Started » sbt with IDEs » sbt with IDEs","id":"85","title":"sbt with IDEs"},"86":{"body":"Metals is an open source language server for Scala, which can act as the backend for VS Code and other editors that support LSP . Metals in turn supports different build servers including sbt via the Build Server Protocol (BSP). To use Metals on VS Code: Install Metals from Extensions tab: Metals Open a directory containing a build.sbt file. From the menubar, run View > Command Palette... (Cmd-Shift-P on macOS) \"Metals: Switch build server\", and select \"sbt\" Metals Once the import process is complete, open a Scala file to see that code completion works: Metals Use the following setting to opt-out some of the subprojects from BSP. bspEnabled := false When you make changes to the code and save them (Cmd-S on macOS), Metals will invoke sbt to do the actual building work. Interactive debugging on VS Code Metals supports interactive debugging by setting break points in the code: Metals Interactive debugging can be started by right-clicking on an unit test, and selecting \"Debug Test.\" When the test hits a break point, you can inspect the values of the variables: Metals See Debugging page on VS Code documentation for more details on how to navigate an interactive debugging session. Logging into sbt session While Metals uses sbt as the build server, we can also log into the same sbt session using a thin client. From Terminal section, type in sbt --client Metals This lets you log into the sbt session Metals has started. In there you can call testOnly and other tasks with the code already compiled.","breadcrumbs":"Getting Started » sbt with IDEs » Using sbt as Metals build server","id":"86","title":"Using sbt as Metals build server"},"87":{"body":"IntelliJ IDEA is an IDE created by JetBrains, and the Community Edition is open source under Apache v2 license. IntelliJ integrates with many build tools, including sbt, to import the project. This is a more traditional approach that might be more reliable than using BSP approach. To import a build to IntelliJ IDEA: Install Scala plugin on the Plugins tab: IntelliJ From Projects, open a directory containing a build.sbt file. IntelliJ Once the import process is complete, open a Scala file to see that code completion works. IntelliJ Scala plugin uses its own lightweight compilation engine to detect errors, which is fast but sometimes incorrect. Per compiler-based highlighting , IntelliJ can be configured to use the Scala compiler for error highlighting. Interactive debugging with IntelliJ IDEA IntelliJ supports interactive debugging by setting break points in the code: IntelliJ Interactive debugging can be started by right-clicking on an unit test, and selecting \"Debug ''.\" Alternatively, you can click the green \"run\" icon on the left part of the editor near the unit test. When the test hits a break point, you can inspect the values of the variables: IntelliJ See Debug Code page on IntelliJ documentation for more details on how to navigate an interactive debugging session.","breadcrumbs":"Getting Started » sbt with IDEs » Importing to IntelliJ IDEA","id":"87","title":"Importing to IntelliJ IDEA"},"88":{"body":"Importing the build to IntelliJ means that you're effectively using IntelliJ as the build tool and the compiler while you code (see also compiler-based highlighting ). While many users are happy with the experience, depending on the code base some of the compilation errors may be false, it may not work well with plugins that generate sources, and generally you might want to code with the identical build semantics as sbt. Thankfully, modern IntelliJ supports alternative build servers including sbt via the Build Server Protocol (BSP). The benefit of using BSP with IntelliJ is that you're using sbt to do the actual build work, so if you are the kind of programmer who had sbt session up on the side, this avoids double compilation. Import to IntelliJ BSP with IntelliJ Reliability ✅ Reliable behavior ⚠️ Less mature. Might encounter UX issues. Responsiveness ✅ ⚠️ Correctness ⚠️ Uses its own compiler for type checking, but can be configured to use scalac ✅ Uses Zinc + Scala compiler for type checking Generated source ❌ Generated source requires resync ✅ Build reuse ❌ Using sbt side-by-side requires double build ✅ To use sbt as build server on IntelliJ: Install Scala plugin on the Plugins tab. To use the BSP approach, do not use Open button on the Project tab: IntelliJ From menubar, click New > \"Project From Existing Sources\", or Find Action (Cmd-Shift-P on macOS) and type \"Existing\" to find \"Import Project From Existing Sources\": IntelliJ Open a build.sbt file. Select BSP when prompted: IntelliJ Select sbt (recommended) as the tool to import the BSP workspace: IntelliJ Once the import process is complete, open a Scala file to see that code completion works: IntelliJ Use the following setting to opt-out some of the subprojects from BSP. bspEnabled := false Open Preferences, search BSP and check \"build automatically on file save\", and uncheck \"export sbt projects to Bloop before import\": IntelliJ When you make changes to the code and save them (Cmd-S on macOS), IntelliJ will invoke sbt to do the actual building work. See also Igal Tabachnik's Using BSP effectively in IntelliJ and Scala for more details. Logging into sbt session We can also log into the existing sbt session using the thin client. From Terminal section, type in sbt --client IntelliJ This lets you log into the sbt session IntelliJ has started. In there you can call testOnly and other tasks with the code already compiled.","breadcrumbs":"Getting Started » sbt with IDEs » Using sbt as IntelliJ IDEA build server (advanced)","id":"88","title":"Using sbt as IntelliJ IDEA build server (advanced)"},"89":{"body":"Neovim is a modern fork of Vim that supports LSP out-of-box, which means it can be configured as a frontend for Metals. Chris Kipp, who is a maintainer of Metals, created nvim-metals plugin that provides comprehensive Metals support on Neovim. To install nvim-metals, create lsp.lua under \\$XDG_CONFIG_HOME/nvim/lua/ based on Chris's lsp.lua and adjust to your preference. For example, comment out its plugins section and load the listed plugins using the plugin manager of your choice such as vim-plug. In init.vim, the file can be loaded as: lua << END\nrequire('lsp')\nEND Per lsp.lua, g:metals_status should be displayed on the status line, which can be done using lualine.nvim etc. Next, open a Scala file in an sbt build using Neovim. Run :MetalsInstall when prompted. Run :MetalsStartServer. If the status line is set up, you should see something like \"Connecting to sbt\" or \"Indexing.\" Code completion works when you're in Insert mode, and you can tab through the candidates: A build is triggered upon saving changes, and compilation errors are displayed inline: Go to definition You can jump to definition of the symbol under cursor by using gD (exact keybinding can be customized): Use Ctrl-O to return to the old buffer. Hover To display the type information of the symbol under cursor, like hovering, use K in Normal mode: Listing diagnostics To list all compilation errors and warnings, use aa: Since this is in the standard quickfix list, you can use the command such as :cnext and :cprev to nagivate through the errors and warnings. To list just the errors, use ae. Interactive debugging with Neovim Thanks to nvim-dap, Neovim supports interactive debugging. Set break points in the code using dt: Nagivate to a unit test, confirm that it's built by hovering (K), and then \"debug continue\" (dc) to start a debugger. Choose \"1: RunOrTest\" when prompted. When the test hits a break point, you can inspect the values of the variables by debug hovering (dK): \"debug continue\" (dc) again to end the session. See nvim-metals regarding further details. Logging into sbt session We can also log into the existing sbt session using the thin client. In a new vim window type :terminal to start the built-in terminal. Type in sbt --client Even though it's inside Neovim, tab completion etc works fine inside.","breadcrumbs":"Getting Started » sbt with IDEs » Using Neovim as Metals frontend (advanced)","id":"89","title":"Using Neovim as Metals frontend (advanced)"},"9":{"body":"To leave sbt shell, type exit or use Ctrl+D (Unix) or Ctrl+Z (Windows). sbt:foo-build> exit","breadcrumbs":"Quick Start » sbt by example » Exit sbt shell","id":"9","title":"Exit sbt shell"},"90":{"body":"See Installing sbt runner for the instruction on general setup. Using Coursier or SDKMAN has two advantages. They will install the official packaging by Eclipse Adoptium etc, as opposed to the \"mystery meat OpenJDK builds\" . They will install tgz packaging of sbt that contains all JAR files. (DEB and RPM packages do not to save bandwidth) This page describes alternative ways of installing the sbt runner. Note that some of the third-party packages may not provide the latest version.","breadcrumbs":"Appendix » Setup notes » Setup Notes","id":"90","title":"Setup Notes"},"91":{"body":"","breadcrumbs":"Appendix » Setup notes » OS specific setup","id":"91","title":"OS specific setup"},"92":{"body":"Homebrew $ brew install sbt Warning Homebrew maintainers have added a dependency to JDK 13 because they want to use more brew dependencies ( brew#50649 ). This causes sbt to use JDK 13 even when java available on PATH is JDK 8 or 11. To prevent sbt from running on JDK 13, install jEnv or switch to using SDKMAN .","breadcrumbs":"Appendix » Setup notes » macOS","id":"92","title":"macOS"},"93":{"body":"sbt-.msi Chocolatey > choco install sbt Scoop > scoop install sbt","breadcrumbs":"Appendix » Setup notes » Windows","id":"93","title":"Windows"},"94":{"body":"Ubuntu and other Debian-based distributions DEB package is officially supported by sbt, but it does not contain JAR files to save bandwidth. Ubuntu and other Debian-based distributions use the DEB format, but usually you don't install your software from a local DEB file. Instead they come with package managers both for the command line (e.g. apt-get, aptitude) or with a graphical user interface (e.g. Synaptic). Run the following from the terminal to install sbt (You'll need superuser privileges to do so, hence the sudo). sudo apt-get update\nsudo apt-get install apt-transport-https curl gnupg -yqq\necho \"deb https://repo.scala-sbt.org/scalasbt/debian all main\" | sudo tee /etc/apt/sources.list.d/sbt.list\necho \"deb https://repo.scala-sbt.org/scalasbt/debian /\" | sudo tee /etc/apt/sources.list.d/sbt_old.list\ncurl -sL \"https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x2EE0EA64E40A89B84B2DF73499E82A75642AC823\" | sudo -H gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/scalasbt-release.gpg --import\nsudo chmod 644 /etc/apt/trusted.gpg.d/scalasbt-release.gpg\nsudo apt-get update\nsudo apt-get install sbt Package managers will check a number of configured repositories for packages to offer for installation. You just have to add the repository to the places your package manager will check. Once sbt is installed, you'll be able to manage the package in aptitude or Synaptic after you updated their package cache. You should also be able to see the added repository at the bottom of the list in System Settings -> Software & Updates -> Other Software: Ubuntu Software & Updates Screenshot sudo apt-key adv --keyserver hkps://keyserver.ubuntu.com:443 --recv 2EE0EA64E40A89B84B2DF73499E82A75642AC823 may not work on Ubuntu Bionic LTS (18.04) since it's using a buggy GnuPG, so we are advising to use web API to download the public key in the above. Red Hat Enterprise Linux and other RPM-based distributions RPM package is officially supported by sbt, but it does not contain JAR files to save bandwidth. Red Hat Enterprise Linux and other RPM-based distributions use the RPM format. Run the following from the terminal to install sbt (You'll need superuser privileges to do so, hence the sudo). # remove old Bintray repo file\nsudo rm -f /etc/yum.repos.d/bintray-rpm.repo\ncurl -L https://www.scala-sbt.org/sbt-rpm.repo > sbt-rpm.repo\nsudo mv sbt-rpm.repo /etc/yum.repos.d/\nsudo yum install sbt On Fedora (31 and above), use sbt-rpm.repo: # remove old Bintray repo file\nsudo rm -f /etc/yum.repos.d/bintray-rpm.repo\ncurl -L https://www.scala-sbt.org/sbt-rpm.repo > sbt-rpm.repo\nsudo mv sbt-rpm.repo /etc/yum.repos.d/\nsudo dnf install sbt","breadcrumbs":"Appendix » Setup notes » Linux","id":"94","title":"Linux"}},"length":95,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{"0":{"4":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":2,"docs":{"35":{"tf":2.23606797749979},"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"1":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"7":{"0":{"4":{"5":{"4":{"0":{"2":{"5":{"2":{"6":{"8":{"5":{"5":{"4":{"7":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{":":{"1":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"26":{"tf":1.0}},"t":{"1":{"0":{":":{"0":{"0":{"\"":{"df":0,"docs":{},"}":{"df":0,"docs":{},"}":{",":{"2":{"0":{"0":{",":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":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":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":7,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":2.23606797749979}}},"1":{".":{"1":{"0":{".":{"0":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"4":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"4":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":1,"docs":{"5":{"tf":1.0}}},"1":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"5":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"_":{"3":{"5":{"2":{"df":5,"docs":{"2":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"8":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"0":{"tf":1.0}}}},"0":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"6":{"df":1,"docs":{"68":{"tf":1.0}}},":":{"0":{"9":{":":{"1":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":2,"docs":{"1":{"tf":1.0},"92":{"tf":1.0}}},"2":{"8":{"5":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},":":{"3":{"2":{":":{"3":{"5":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{":":{"5":{"5":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{":":{"3":{"1":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.7320508075688772}}},"6":{".":{"7":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"7":{".":{"0":{".":{"8":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1":{"tf":1.0},"26":{"tf":1.0}}},"8":{".":{"0":{"4":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"68":{"tf":1.0}}},"df":1,"docs":{"48":{"tf":1.0}}},"9":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"df":10,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"23":{"tf":1.7320508075688772},"26":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"89":{"tf":1.0}}},"2":{".":{"0":{".":{"0":{"df":2,"docs":{"59":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"/":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"12":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"45":{"tf":1.0}}},"3":{".":{"1":{"2":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"2":{".":{"1":{"3":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"35":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"df":3,"docs":{"45":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"0":{"0":{"df":1,"docs":{"26":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"47":{"tf":1.0}}},"3":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"26":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"48":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"1":{".":{"3":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"7":{"df":3,"docs":{"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0}}},":":{"3":{"8":{":":{"1":{"0":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"e":{"a":{"6":{"4":{"df":0,"docs":{},"e":{"4":{"0":{"a":{"8":{"9":{"b":{"8":{"4":{"b":{"2":{"d":{"df":0,"docs":{},"f":{"7":{"3":{"4":{"9":{"9":{"df":0,"docs":{},"e":{"8":{"2":{"a":{"7":{"5":{"6":{"4":{"2":{"a":{"c":{"8":{"2":{"3":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"3":{".":{"1":{".":{"3":{"/":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"79":{"tf":1.0}}},"3":{"df":7,"docs":{"0":{"tf":1.0},"38":{"tf":2.0},"56":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":2,"docs":{"45":{"tf":1.0},"77":{"tf":1.0}}}},"1":{"df":1,"docs":{"94":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"4":{"1":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0}}},"4":{"0":{".":{"7":{"1":{"0":{"3":{"3":{"5":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"73":{"tf":1.0}}},"df":3,"docs":{"23":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"16":{"tf":1.0}}},"1":{"df":2,"docs":{"26":{"tf":1.0},"66":{"tf":1.0}}},"8":{"df":1,"docs":{"68":{"tf":1.0}}},"df":1,"docs":{"23":{"tf":1.0}}},"6":{"4":{"4":{"df":1,"docs":{"94":{"tf":1.0}}},"df":1,"docs":{"26":{"tf":1.0}}},"df":1,"docs":{"64":{"tf":1.0}}},"7":{"3":{".":{"9":{"9":{"3":{"0":{"7":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"0":{"6":{"&":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"2":{"tf":1.0},"26":{"tf":1.0},"92":{"tf":1.0}}},"9":{"]":{"*":{"\\":{".":{"[":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"3":{"tf":1.0},"68":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"v":{"df":3,"docs":{"74":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"86":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"54":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"d":{"d":{"df":8,"docs":{"20":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"77":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"49":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"17":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"88":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"94":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"1":{"tf":1.0},"57":{"tf":1.0},"74":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.0},"65":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"0":{"a":{"c":{"1":{"4":{"0":{"9":{"c":{"0":{"1":{"1":{"7":{"a":{"9":{"4":{"9":{"d":{"4":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"52":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":4,"docs":{"35":{"tf":2.0},"56":{"tf":1.0},"65":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"p":{"df":5,"docs":{"15":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"48":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"65":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"41":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"94":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":2.449489742783178}}}}}}}},"m":{"df":1,"docs":{"1":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"y":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"33":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"13":{"tf":1.0},"59":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"52":{"tf":1.0},"65":{"tf":2.6457513110645907},"77":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"76":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"69":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"\"":{"df":0,"docs":{},"h":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"6":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"26":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0}}}},"df":1,"docs":{"84":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":3,"docs":{"14":{"tf":1.4142135623730951},"78":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"45":{"tf":1.0},"47":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0}}}}}},"b":{"8":{"\\":{".":{"[":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"d":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}},"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":{"90":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"48":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"42":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"94":{"tf":2.0}}},"i":{"c":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"70":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"40":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"69":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"48":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"78":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"48":{"tf":1.0},"63":{"tf":1.0}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"47":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"t":{"a":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":1.0},"45":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"0":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"74":{"tf":1.0},"94":{"tf":1.0}}}}}},"x":{"df":1,"docs":{"89":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":2,"docs":{"62":{"tf":1.0},"63":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"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":{},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"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":{"#":{"5":{"0":{"6":{"4":{"9":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.4142135623730951}}}},"o":{"a":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"57":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":3.0}},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"48":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}}}}}}},"s":{"b":{"df":0,"docs":{},"t":{"df":27,"docs":{"0":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.0},"48":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.0},"73":{"tf":1.0},"74":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"33":{"tf":1.0},"35":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"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":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{":":{"4":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":4,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"34":{"tf":1.0}}},"3":{"df":1,"docs":{"37":{"tf":1.0}}},"df":53,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":2.449489742783178},"15":{"tf":1.0},"16":{"tf":2.23606797749979},"17":{"tf":2.449489742783178},"19":{"tf":2.23606797749979},"23":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.0},"48":{"tf":2.23606797749979},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"86":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951},"88":{"tf":3.4641016151377544},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"52":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":12,"docs":{"39":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"64":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"86":{"tf":1.0},"88":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"73":{"tf":1.0},"74":{"tf":1.0}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"92":{"tf":1.0}}}}},"d":{"df":4,"docs":{"35":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}}},"df":4,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":22,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"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":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"16":{"tf":1.0},"38":{"tf":1.0},"88":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"1":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"93":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}},"s":{"'":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"14":{"tf":1.0},"23":{"tf":1.0},"65":{"tf":2.449489742783178},"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"81":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"40":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"48":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"m":{"d":{"df":2,"docs":{"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":10,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"40":{"tf":1.0},"53":{"tf":1.0},"83":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":2.8284271247461903},"87":{"tf":1.7320508075688772},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"2":{".":{"1":{"2":{"_":{"1":{".":{"0":{"/":{"0":{".":{"2":{".":{"1":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"3":{":":{"1":{".":{"0":{".":{"0":{"df":1,"docs":{"79":{"tf":1.0}}},"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":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"82":{"tf":1.0},"94":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":22,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":2.449489742783178},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"46":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"69":{"tf":1.7320508075688772},"86":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"47":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":29,"docs":{"0":{"tf":1.0},"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"23":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":2.6457513110645907},"69":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.6457513110645907},"89":{"tf":1.4142135623730951}},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"79":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}},"i":{"c":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"50":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"43":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"47":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"24":{"tf":1.0},"89":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"26":{"tf":1.0},"65":{"tf":1.0}},"e":{"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":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"17":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.4142135623730951},"74":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"22":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.0},"40":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"52":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"46":{"tf":1.0},"81":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"65":{"tf":1.0},"74":{"tf":1.0}}},"y":{"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":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{".":{"1":{"3":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"0":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"75":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":15,"docs":{"12":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"23":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"s":{"c":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"+":{"d":{"df":2,"docs":{"26":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"z":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":3,"docs":{"26":{"tf":1.0},"59":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":2.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":15,"docs":{"14":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"89":{"tf":1.0}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"89":{"tf":1.0}}},"t":{"a":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}},"y":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}}},"df":4,"docs":{"26":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0}},"e":{"b":{"df":2,"docs":{"90":{"tf":1.0},"94":{"tf":2.23606797749979}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"86":{"tf":2.449489742783178},"87":{"tf":2.449489742783178},"89":{"tf":2.23606797749979}},"g":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"72":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{"b":{"a":{"df":0,"docs":{},"r":{"_":{"3":{":":{"0":{".":{"1":{".":{"0":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"48":{"tf":1.7320508075688772},"65":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}}}},"df":5,"docs":{"12":{"tf":1.0},"33":{"tf":1.4142135623730951},"45":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"19":{"tf":1.0},"43":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"0":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.7320508075688772},"39":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"55":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":2.6457513110645907},"79":{"tf":1.7320508075688772},"88":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{},"i":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"62":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"0":{"tf":1.0},"16":{"tf":1.0},"43":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"17":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"47":{"tf":1.0},"56":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"12":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"40":{"tf":1.0},"45":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"12":{"tf":1.7320508075688772},"41":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}},"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":3,"docs":{"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"4":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":8,"docs":{"14":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"35":{"tf":1.0},"39":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"51":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"35":{"tf":1.0},"39":{"tf":1.0},"94":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"81":{"tf":1.0}}}}},"m":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.0}}}},"o":{"c":{"df":2,"docs":{"0":{"tf":1.0},"65":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"36":{"tf":2.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"35":{"tf":2.0},"43":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":1.7320508075688772},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"89":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"26":{"tf":2.0},"77":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"48":{"tf":1.0},"61":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"l":{"df":4,"docs":{"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"72":{"tf":2.0},"73":{"tf":1.0}}}},"v":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"40":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"62":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"7":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":3,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"90":{"tf":1.0}}}}}},"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":{"45":{"tf":1.7320508075688772},"46":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"87":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"12":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":1,"docs":{"48":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"26":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"78":{"tf":1.0},"89":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"46":{"tf":1.0},"77":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"23":{"tf":2.23606797749979},"47":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"t":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"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":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"d":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"d":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"d":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"57":{"tf":1.0},"75":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"89":{"tf":1.0},"92":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":22,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"37":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"69":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.4142135623730951},"80":{"tf":1.0},"89":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"15":{"tf":1.0},"33":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"2":{"1":{"3":{"df":2,"docs":{"16":{"tf":1.4142135623730951},"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"44":{"tf":1.0},"62":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.0}}}},"t":{"df":8,"docs":{"12":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"63":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"6":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"26":{"tf":1.0},"73":{"tf":2.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"47":{"tf":1.0},"86":{"tf":1.0}}},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"23":{"tf":2.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.0},"87":{"tf":1.0}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"df":2,"docs":{"48":{"tf":1.0},"94":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"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":{"68":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":2,"docs":{"48":{"tf":1.0},"68":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"49":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"/":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":5,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"28":{"tf":1.0},"38":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":25,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.0},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"23":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":2.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":2.23606797749979}}}},"n":{"d":{"df":4,"docs":{"13":{"tf":1.0},"26":{"tf":1.0},"39":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":1,"docs":{"89":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"62":{"tf":1.0},"65":{"tf":1.0},"82":{"tf":1.0}}}}},"x":{"df":1,"docs":{"74":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":20,"docs":{"12":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"o":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"r":{"c":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"89":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}}},"v":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"g":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":1,"docs":{"48":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":6,"docs":{"0":{"tf":1.0},"65":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"88":{"tf":2.0},"90":{"tf":1.0}}}}},"t":{"df":4,"docs":{"14":{"tf":1.0},"43":{"tf":1.7320508075688772},"45":{"tf":1.0},"77":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"8":{"df":1,"docs":{"49":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"49":{"tf":1.0},"62":{"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":{"84":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"t":{")":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{")":{",":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"g":{"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":{":":{"/":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":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":{"26":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.7320508075688772}}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":3,"docs":{"38":{"tf":1.0},"74":{"tf":1.0},"89":{"tf":1.0}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}}}},"r":{"a":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"87":{"tf":1.0}}}},"p":{"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"76":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"w":{"df":2,"docs":{"47":{"tf":1.0},"72":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"73":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}},"t":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"23":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"12":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"83":{"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},":":{"0":{".":{"1":{".":{"0":{"df":1,"docs":{"36":{"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":5,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"38":{"tf":1.0}},"e":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":14,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":2.23606797749979},"45":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"40":{"tf":1.0}},"e":{".":{"\\":{"$":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"\\":{"$":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"\\":{"$":{"1":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{":":{"4":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"p":{"df":5,"docs":{"14":{"tf":2.23606797749979},"26":{"tf":1.0},"39":{"tf":1.4142135623730951},"47":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"n":{"c":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":4,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0}}},"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"45":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"48":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"4":{"4":{"3":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":{},"g":{"8":{"df":1,"docs":{"48":{"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":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":2.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"94":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"/":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"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":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"87":{"tf":1.0}}}}},"d":{"df":5,"docs":{"0":{"tf":1.0},"57":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"77":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.0},"88":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"68":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"36":{"tf":1.0},"53":{"tf":1.0}}}},"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":1,"docs":{"75":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"26":{"tf":2.0},"33":{"tf":1.7320508075688772},"51":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":2.449489742783178},"94":{"tf":1.0}}}}}}},"n":{"c":{"df":4,"docs":{"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"u":{"d":{"df":6,"docs":{"64":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"22":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":23,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":2.449489742783178},"17":{"tf":1.4142135623730951},"19":{"tf":2.0},"23":{"tf":2.0},"26":{"tf":1.0},"28":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"35":{"tf":2.6457513110645907},"36":{"tf":1.0},"38":{"tf":2.6457513110645907},"39":{"tf":1.4142135623730951},"48":{"tf":3.3166247903554},"59":{"tf":3.0},"63":{"tf":3.0},"64":{"tf":2.6457513110645907},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":3.3166247903554},"79":{"tf":2.6457513110645907},"8":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"14":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"[":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"a":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"[":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}},"i":{"d":{"df":3,"docs":{"48":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"39":{"tf":2.449489742783178},"65":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"1":{"tf":1.7320508075688772},"3":{"tf":2.0},"52":{"tf":1.0},"6":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":2.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":3.0}}},"n":{"c":{"df":5,"docs":{"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"1":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"49":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":5,"docs":{"0":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":3.605551275463989},"88":{"tf":4.242640687119285}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"86":{"tf":2.0},"87":{"tf":2.0},"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"23":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":6,"docs":{"1":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"s":{"_":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"88":{"tf":1.0}}}}},"t":{"'":{"df":6,"docs":{"51":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"0":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":2.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"v":{"a":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"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":{},"i":{"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":14,"docs":{"0":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"59":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":2.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.7320508075688772},"2":{"tf":1.0},"3":{"tf":1.0},"92":{"tf":2.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"92":{"tf":1.0}}}},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"o":{"b":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"45":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"(":{"\"":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{")":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"33":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"49":{"tf":1.0},"89":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":4,"docs":{"0":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}}}},"k":{"df":1,"docs":{"89":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"47":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"y":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"48":{"tf":1.0},"71":{"tf":1.7320508075688772},"73":{"tf":2.23606797749979},"76":{"tf":1.0},"94":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"3":{"df":1,"docs":{"79":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"3":{":":{"0":{".":{"2":{".":{"0":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":4,"docs":{"48":{"tf":1.4142135623730951},"74":{"tf":2.449489742783178},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"72":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"73":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"i":{"df":4,"docs":{"71":{"tf":1.0},"74":{"tf":2.8284271247461903},"78":{"tf":1.0},"80":{"tf":1.7320508075688772}}}}},"df":1,"docs":{"94":{"tf":1.4142135623730951}},"e":{"a":{"d":{"df":1,"docs":{"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{">":{"a":{"a":{"df":1,"docs":{"89":{"tf":1.0}}},"df":1,"docs":{"89":{"tf":1.0}}},"d":{"c":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":1,"docs":{"89":{"tf":1.0}}},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":4,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"59":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}},"t":{"'":{"df":7,"docs":{"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"48":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0}}},"df":3,"docs":{"46":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"45":{"tf":1.0},"74":{"tf":1.0}}}}}},"i":{"b":{"_":{"3":{":":{"0":{".":{"9":{".":{"1":{"df":1,"docs":{"79":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"0":{"tf":1.0},"25":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.4142135623730951},"66":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.4142135623730951}}},"y":{"_":{"3":{":":{"3":{".":{"1":{".":{"3":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"20":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"94":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"14":{"tf":1.7320508075688772},"28":{"tf":1.0},"3":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"71":{"tf":1.0},"89":{"tf":2.23606797749979},"94":{"tf":1.0}}}}},"o":{"a":{"d":{"df":5,"docs":{"19":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"74":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{":":{"/":{"/":{"/":{"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":{},"e":{"d":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"9":{"df":0,"docs":{},"n":{"/":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"/":{"1":{".":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"0":{"a":{"c":{"1":{"4":{"0":{"9":{"c":{"0":{"1":{"1":{"7":{"a":{"9":{"4":{"9":{"d":{"4":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"9":{"8":{"2":{"df":0,"docs":{},"e":{"0":{"7":{"df":0,"docs":{},"e":{"8":{"5":{"c":{"7":{"d":{"df":0,"docs":{},"e":{"1":{"b":{"6":{"1":{"8":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":3,"docs":{"86":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"48":{"tf":1.0},"58":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"89":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":1,"docs":{"94":{"tf":1.0}}},"u":{"a":{"df":1,"docs":{"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0}}}}},"o":{"df":4,"docs":{"1":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"12":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":9,"docs":{"14":{"tf":1.0},"35":{"tf":2.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"65":{"tf":2.6457513110645907},"67":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"83":{"tf":2.23606797749979},"94":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"43":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"0":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"12":{"tf":1.0},"75":{"tf":1.7320508075688772},"81":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":2.0}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"43":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"71":{"tf":1.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"77":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"df":3,"docs":{"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":1,"docs":{"48":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"10":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"u":{"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"57":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":4.0},"89":{"tf":2.6457513110645907}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"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":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"?":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{".":{"7":{"1":{"4":{"3":{"&":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"o":{"d":{"df":2,"docs":{"65":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":2.449489742783178}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"48":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"26":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"69":{"tf":1.0},"89":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"56":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"23":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":18,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"92":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"32":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"40":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"80":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"67":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{":":{"1":{"1":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":1,"docs":{"94":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"14":{"tf":1.0},"18":{"tf":1.4142135623730951},"23":{"tf":1.0},"41":{"tf":1.7320508075688772},"45":{"tf":1.0},"71":{"tf":2.0},"73":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"34":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.7320508075688772},"64":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"86":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":1,"docs":{"48":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":10,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":2.6457513110645907}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}},"w":{"df":13,"docs":{"12":{"tf":1.0},"14":{"tf":2.0},"16":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":2.0},"48":{"tf":2.23606797749979},"49":{"tf":2.0},"81":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"34":{"tf":1.0},"89":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"83":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"19":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"51":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"w":{"df":4,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"75":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"43":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":2.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"33":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"3":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"89":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"90":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"k":{"df":1,"docs":{"83":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"89":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"c":{"df":5,"docs":{"62":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":11,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"49":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":2.0},"89":{"tf":1.0}},"j":{"d":{"df":0,"docs":{},"k":{"df":3,"docs":{"2":{"tf":1.0},"26":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"2":{"tf":1.0},"73":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"47":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"23":{"tf":1.0},"65":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":5,"docs":{"48":{"tf":1.4142135623730951},"74":{"tf":2.449489742783178},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"47":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"s":{"df":1,"docs":{"91":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"26":{"tf":1.0},"39":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"39":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"75":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":2.0},"94":{"tf":2.8284271247461903}},"e":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"65":{"tf":1.0},"80":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":9,"docs":{"42":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0}}}}},"s":{"df":1,"docs":{"33":{"tf":1.0}}},"t":{"df":3,"docs":{"73":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":10,"docs":{"14":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"35":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"t":{"df":2,"docs":{"26":{"tf":1.7320508075688772},"74":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"83":{"tf":1.0},"92":{"tf":1.0}}}}},"df":3,"docs":{"48":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}}}},"r":{"df":2,"docs":{"87":{"tf":1.0},"89":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"12":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"75":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"78":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"94":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"45":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"14":{"tf":1.0},"34":{"tf":1.4142135623730951},"47":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":2.0}},"s":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":3,"docs":{"63":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"m":{"df":1,"docs":{"48":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"81":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"46":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"88":{"tf":1.0},"89":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"11":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"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":{"2":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"12":{"tf":1.0},"45":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"33":{"tf":1.0},"48":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"/":{"b":{"a":{"df":0,"docs":{},"r":{"/":{"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":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"45":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"65":{"tf":2.6457513110645907}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"80":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":2,"docs":{"85":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":3,"docs":{"77":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}},"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"46":{"tf":1.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}},"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":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":30,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":2.449489742783178},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.7320508075688772},"28":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":2.0},"48":{"tf":3.3166247903554},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"7":{"tf":1.0},"71":{"tf":2.0},"74":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.6457513110645907},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":2.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"53":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"14":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"56":{"tf":1.0},"65":{"tf":2.23606797749979},"89":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"0":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":2.0}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"2":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"q":{"df":2,"docs":{"26":{"tf":1.0},"48":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"89":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"48":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"j":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{")":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"d":{"df":4,"docs":{"19":{"tf":1.0},"43":{"tf":1.4142135623730951},"52":{"tf":1.0},"62":{"tf":1.0}},"i":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"38":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"1":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"11":{"tf":1.0},"69":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}},"v":{"df":1,"docs":{"94":{"tf":1.0}}}},"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"74":{"tf":1.7320508075688772},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"l":{"df":1,"docs":{"83":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"83":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"1":{"tf":1.0}}},"o":{"a":{"d":{"df":10,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":2.0},"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"38":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":1,"docs":{"26":{"tf":1.0}}},"o":{"df":1,"docs":{"94":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"46":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"40":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"(":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":5,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"65":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"26":{"tf":1.4142135623730951},"33":{"tf":1.0},"88":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"\"":{":":{"4":{"0":{".":{"7":{"1":{"0":{"3":{"3":{"5":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"48":{"tf":1.0},"89":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"76":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"73":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{":":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"d":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"64":{"tf":1.4142135623730951},"71":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"94":{"tf":3.0}}}}}}},"df":2,"docs":{"90":{"tf":1.0},"94":{"tf":2.0}}}},"u":{"df":0,"docs":{},"n":{"df":34,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"46":{"tf":1.0},"48":{"tf":2.0},"51":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":2.23606797749979},"67":{"tf":2.23606797749979},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"76":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"1":{"tf":1.7320508075688772},"5":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"6":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"47":{"tf":1.0},"52":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"17":{"tf":2.0},"69":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"81":{"tf":1.0}}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"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":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"2":{".":{"0":{".":{"0":{"df":2,"docs":{"52":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"48":{"tf":1.0}}}}}}}}}},"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{"b":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":6,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":13,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772}}}}}}}},"df":62,"docs":{"0":{"tf":2.449489742783178},"1":{"tf":2.449489742783178},"10":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"16":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.4142135623730951},"34":{"tf":1.0},"4":{"tf":1.7320508075688772},"40":{"tf":2.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":2.0},"44":{"tf":1.0},"46":{"tf":2.23606797749979},"47":{"tf":1.4142135623730951},"48":{"tf":3.605551275463989},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":2.449489742783178},"52":{"tf":2.6457513110645907},"53":{"tf":2.449489742783178},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":3.4641016151377544},"6":{"tf":1.7320508075688772},"60":{"tf":2.0},"61":{"tf":2.0},"62":{"tf":1.7320508075688772},"63":{"tf":2.6457513110645907},"65":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"7":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":2.0},"80":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.23606797749979},"86":{"tf":3.0},"87":{"tf":1.0},"88":{"tf":3.7416573867739413},"89":{"tf":2.23606797749979},"9":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"94":{"tf":3.605551275463989}},"n":{"df":5,"docs":{"53":{"tf":2.0},"54":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.0}}}},"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"3":{".":{"df":0,"docs":{},"g":{"8":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"41":{"tf":1.0},"48":{"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":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"c":{"df":2,"docs":{"45":{"tf":2.0},"88":{"tf":1.0}}},"df":31,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"35":{"tf":2.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":2.8284271247461903},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":3.605551275463989},"49":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":2.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":3.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":2.0},"89":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":14,"docs":{"0":{"tf":1.0},"16":{"tf":2.23606797749979},"17":{"tf":1.0},"38":{"tf":2.23606797749979},"47":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"48":{"tf":1.0}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"65":{"tf":1.0},"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.7320508075688772}},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":8,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"8":{"df":2,"docs":{"41":{"tf":1.0},"48":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":1,"docs":{"48":{"tf":1.4142135623730951}}},"df":10,"docs":{"33":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.0}},"m":{"df":1,"docs":{"83":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"48":{"tf":2.0},"65":{"tf":1.0},"67":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"d":{"df":3,"docs":{"26":{"tf":1.0},"33":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"26":{"tf":1.0},"48":{"tf":2.449489742783178},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.23606797749979},"61":{"tf":1.4142135623730951},"63":{"tf":2.0},"8":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":2.449489742783178},"88":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"14":{"tf":1.0},"17":{"tf":1.7320508075688772},"86":{"tf":2.0},"87":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.7320508075688772}}}}}}},"t":{"df":20,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":2.23606797749979},"17":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"31":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.7320508075688772},"73":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"[":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"41":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":15,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"59":{"tf":2.23606797749979},"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":1,"docs":{"85":{"tf":1.0}}}},"w":{"df":3,"docs":{"64":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":4,"docs":{"48":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0}}}}}},"df":2,"docs":{"48":{"tf":1.0},"61":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"73":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"0":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"80":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"56":{"tf":1.0},"80":{"tf":1.0}}}}}},"l":{"df":1,"docs":{"94":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"45":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"43":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"4":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}},"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"36":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":12,"docs":{"18":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"37":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":2.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"41":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":16,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":3.1622776601683795},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.23606797749979}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":5,"docs":{"14":{"tf":1.0},"46":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.4142135623730951},"91":{"tf":1.0}},"i":{"df":2,"docs":{"52":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"48":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"46":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"0":{"tf":1.0},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"43":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":2.6457513110645907},"49":{"tf":1.0},"59":{"tf":2.0},"6":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"65":{"tf":2.23606797749979},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"1":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"69":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"48":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"4":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{".":{"_":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"33":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"u":{"b":{"1":{"df":1,"docs":{"27":{"tf":1.0}}},"2":{"df":1,"docs":{"30":{"tf":1.0}}},"3":{"df":1,"docs":{"31":{"tf":1.0}}},"4":{"df":1,"docs":{"32":{"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":3,"docs":{"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"80":{"tf":1.0}}},"df":17,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"71":{"tf":2.0},"72":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":2.23606797749979},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"35":{"tf":1.7320508075688772},"48":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"65":{"tf":2.23606797749979},"76":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"94":{"tf":4.123105625617661}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"43":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"38":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":10,"docs":{"2":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":5,"docs":{"59":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":1,"docs":{"36":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"48":{"tf":1.0},"57":{"tf":1.0},"81":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"[":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":11,"docs":{"14":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"65":{"tf":3.4641016151377544},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"[":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"49":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"m":{"df":1,"docs":{"3":{"tf":1.0}},"p":{"df":1,"docs":{"33":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"41":{"tf":1.0},"48":{"tf":2.6457513110645907},"49":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"n":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"71":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"40":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"60":{"tf":1.0}}},"df":22,"docs":{"0":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":2.23606797749979},"24":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.7320508075688772},"65":{"tf":2.23606797749979},"68":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"74":{"tf":2.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"83":{"tf":2.23606797749979},"84":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":2.0},"89":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"40":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"40":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"90":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"89":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}},"g":{"df":2,"docs":{"46":{"tf":1.0},"83":{"tf":1.0}}},"k":{"df":1,"docs":{"74":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"s":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"16":{"tf":1.7320508075688772},"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"65":{"tf":1.0},"74":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"83":{"tf":1.0},"89":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"58":{"tf":1.0},"73":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":7,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"26":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.0}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}},"e":{"_":{"a":{"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":7,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"35":{"tf":2.23606797749979},"48":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}}}}}}}},"df":1,"docs":{"49":{"tf":1.0}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":7,"docs":{"0":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"54":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"3":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"20":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":2.6457513110645907},"74":{"tf":3.1622776601683795},"77":{"tf":1.4142135623730951},"78":{"tf":2.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"74":{"tf":2.0},"78":{"tf":1.4142135623730951}}}}}},"v":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"74":{"tf":3.1622776601683795},"78":{"tf":1.7320508075688772}}}}}}}},"p":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"46":{"tf":1.0},"52":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"n":{"df":1,"docs":{"68":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":3,"docs":{"26":{"tf":1.0},"39":{"tf":1.0},"69":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"89":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"86":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":2,"docs":{"85":{"tf":1.0},"90":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":14,"docs":{"26":{"tf":1.4142135623730951},"41":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"59":{"tf":1.4142135623730951},"67":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":2.23606797749979},"79":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.7320508075688772},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"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":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"i":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":2.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"41":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"df":6,"docs":{"12":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"39":{"tf":1.0},"4":{"tf":1.0}}}}}},"x":{"df":2,"docs":{"59":{"tf":1.0},"9":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"48":{"tf":1.0},"65":{"tf":1.0},"94":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":8,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"74":{"tf":1.0},"89":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":51,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":2.0},"69":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":2.23606797749979},"87":{"tf":1.7320508075688772},"88":{"tf":3.7416573867739413},"89":{"tf":3.4641016151377544},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"9":{"df":0,"docs":{},"n":{"/":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"/":{"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":1,"docs":{"63":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}}},"x":{"df":1,"docs":{"88":{"tf":1.0}}}},"v":{"2":{"df":1,"docs":{"87":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"26":{"tf":2.449489742783178},"33":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"71":{"tf":1.0},"74":{"tf":4.0},"78":{"tf":2.0},"80":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":10,"docs":{"16":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"76":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"47":{"tf":1.0},"74":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"b":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"1":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.23606797749979},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":2.23606797749979},"78":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}}},"i":{"a":{"df":4,"docs":{"0":{"tf":1.0},"47":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"65":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0}}}},"m":{"df":1,"docs":{"89":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}},"z":{"df":1,"docs":{"64":{"tf":1.0}}}},"m":{"df":1,"docs":{"26":{"tf":1.0}}},"s":{"df":2,"docs":{"0":{"tf":1.0},"86":{"tf":2.0}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"88":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"17":{"tf":2.6457513110645907},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":3,"docs":{"58":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"37":{"tf":1.0}}}}}}},"b":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":6,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"11":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"48":{"tf":1.0},"63":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"54":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"n":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"59":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":13,"docs":{"33":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":3,"docs":{"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"23":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"42":{"tf":1.0},"48":{"tf":1.0},"81":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"73":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}}},"x":{"d":{"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":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"23":{"tf":1.0}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":4,"docs":{"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0}}}},"u":{"'":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"r":{"df":3,"docs":{"75":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"v":{"df":2,"docs":{"6":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"q":{"df":1,"docs":{"94":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}}},"z":{"df":1,"docs":{"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"46":{"tf":1.0},"56":{"tf":2.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"35":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{"0":{"4":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":2,"docs":{"35":{"tf":2.23606797749979},"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"1":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"7":{"0":{"4":{"5":{"4":{"0":{"2":{"5":{"2":{"6":{"8":{"5":{"5":{"4":{"7":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{":":{"1":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"26":{"tf":1.0}},"t":{"1":{"0":{":":{"0":{"0":{"\"":{"df":0,"docs":{},"}":{"df":0,"docs":{},"}":{",":{"2":{"0":{"0":{",":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":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":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":7,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":2.23606797749979}}},"1":{".":{"1":{"0":{".":{"0":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"4":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"4":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":1,"docs":{"5":{"tf":1.0}}},"1":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"5":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"_":{"3":{"5":{"2":{"df":5,"docs":{"2":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"8":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"0":{"tf":1.0}}}},"0":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"6":{"df":1,"docs":{"68":{"tf":1.0}}},":":{"0":{"9":{":":{"1":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":2,"docs":{"1":{"tf":1.0},"92":{"tf":1.0}}},"2":{"8":{"5":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},":":{"3":{"2":{":":{"3":{"5":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{":":{"5":{"5":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{":":{"3":{"1":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.7320508075688772}}},"6":{".":{"7":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"7":{".":{"0":{".":{"8":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1":{"tf":1.0},"26":{"tf":1.0}}},"8":{".":{"0":{"4":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"68":{"tf":1.0}}},"df":1,"docs":{"48":{"tf":1.0}}},"9":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"df":10,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"23":{"tf":1.7320508075688772},"26":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"89":{"tf":1.0}}},"2":{".":{"0":{".":{"0":{"df":2,"docs":{"59":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"/":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"12":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"45":{"tf":1.0}}},"3":{".":{"1":{"2":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"2":{".":{"1":{"3":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"35":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"df":3,"docs":{"45":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"0":{"0":{"df":1,"docs":{"26":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"47":{"tf":1.0}}},"3":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"26":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"48":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"1":{".":{"3":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"7":{"df":3,"docs":{"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0}}},":":{"3":{"8":{":":{"1":{"0":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"e":{"a":{"6":{"4":{"df":0,"docs":{},"e":{"4":{"0":{"a":{"8":{"9":{"b":{"8":{"4":{"b":{"2":{"d":{"df":0,"docs":{},"f":{"7":{"3":{"4":{"9":{"9":{"df":0,"docs":{},"e":{"8":{"2":{"a":{"7":{"5":{"6":{"4":{"2":{"a":{"c":{"8":{"2":{"3":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"3":{".":{"1":{".":{"3":{"/":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"79":{"tf":1.0}}},"3":{"df":7,"docs":{"0":{"tf":1.0},"38":{"tf":2.0},"56":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":2,"docs":{"45":{"tf":1.0},"77":{"tf":1.0}}}},"1":{"df":1,"docs":{"94":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"4":{"1":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0}}},"4":{"0":{".":{"7":{"1":{"0":{"3":{"3":{"5":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"73":{"tf":1.0}}},"df":3,"docs":{"23":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"16":{"tf":1.0}}},"1":{"df":2,"docs":{"26":{"tf":1.0},"66":{"tf":1.0}}},"8":{"df":1,"docs":{"68":{"tf":1.0}}},"df":1,"docs":{"23":{"tf":1.0}}},"6":{"4":{"4":{"df":1,"docs":{"94":{"tf":1.0}}},"df":1,"docs":{"26":{"tf":1.0}}},"df":1,"docs":{"64":{"tf":1.0}}},"7":{"3":{".":{"9":{"9":{"3":{"0":{"7":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"0":{"6":{"&":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"2":{"tf":1.0},"26":{"tf":1.0},"92":{"tf":1.0}}},"9":{"]":{"*":{"\\":{".":{"[":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"3":{"tf":1.0},"68":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"v":{"df":3,"docs":{"74":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"86":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"54":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"d":{"d":{"df":8,"docs":{"20":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"77":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"49":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"17":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"94":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"1":{"tf":1.0},"57":{"tf":1.0},"74":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.0},"65":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"0":{"a":{"c":{"1":{"4":{"0":{"9":{"c":{"0":{"1":{"1":{"7":{"a":{"9":{"4":{"9":{"d":{"4":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"52":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":4,"docs":{"35":{"tf":2.0},"56":{"tf":1.0},"65":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"p":{"df":5,"docs":{"15":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"48":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":5,"docs":{"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"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":1,"docs":{"65":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"41":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"94":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":2.449489742783178}}}}}}}},"m":{"df":1,"docs":{"1":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"y":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"33":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"13":{"tf":1.0},"59":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"52":{"tf":1.0},"65":{"tf":2.6457513110645907},"77":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"76":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"69":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"\"":{"df":0,"docs":{},"h":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"6":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"26":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0}}}},"df":1,"docs":{"84":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":3,"docs":{"14":{"tf":1.4142135623730951},"78":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"45":{"tf":1.0},"47":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0}}}}}},"b":{"8":{"\\":{".":{"[":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"d":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}},"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":{"90":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"48":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"42":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"94":{"tf":2.0}}},"i":{"c":{"df":12,"docs":{"14":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"40":{"tf":2.0},"60":{"tf":1.7320508075688772},"69":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"48":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"78":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"48":{"tf":1.0},"63":{"tf":1.0}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"47":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"t":{"a":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"0":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"74":{"tf":1.0},"94":{"tf":1.0}}}}}},"x":{"df":1,"docs":{"89":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":2,"docs":{"62":{"tf":1.0},"63":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"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":{},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"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":{"#":{"5":{"0":{"6":{"4":{"9":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.4142135623730951}}}},"o":{"a":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"57":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":3.0}},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"48":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}}}}}}},"s":{"b":{"df":0,"docs":{},"t":{"df":27,"docs":{"0":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"48":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.23606797749979},"73":{"tf":1.0},"74":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"33":{"tf":1.0},"35":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"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":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{":":{"4":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":4,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"34":{"tf":1.0}}},"3":{"df":1,"docs":{"37":{"tf":1.0}}},"df":58,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":2.449489742783178},"15":{"tf":1.0},"16":{"tf":2.23606797749979},"17":{"tf":2.449489742783178},"19":{"tf":2.449489742783178},"23":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.0},"48":{"tf":2.6457513110645907},"49":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":2.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":2.0},"71":{"tf":2.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":2.449489742783178},"82":{"tf":2.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"86":{"tf":2.6457513110645907},"87":{"tf":1.4142135623730951},"88":{"tf":3.605551275463989},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"52":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":12,"docs":{"39":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"64":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"86":{"tf":1.0},"88":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"73":{"tf":1.0},"74":{"tf":1.0}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"92":{"tf":1.0}}}}},"d":{"df":4,"docs":{"35":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}}},"df":4,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":22,"docs":{"0":{"tf":1.0},"11":{"tf":1.4142135623730951},"14":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"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":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"16":{"tf":1.0},"38":{"tf":1.0},"88":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"1":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"93":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}},"s":{"'":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"14":{"tf":1.0},"23":{"tf":1.0},"65":{"tf":2.449489742783178},"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"81":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"40":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"48":{"tf":1.7320508075688772},"53":{"tf":2.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"m":{"d":{"df":2,"docs":{"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":10,"docs":{"0":{"tf":1.0},"11":{"tf":1.4142135623730951},"40":{"tf":1.0},"53":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":2.8284271247461903},"87":{"tf":1.7320508075688772},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"2":{".":{"1":{"2":{"_":{"1":{".":{"0":{"/":{"0":{".":{"2":{".":{"1":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"3":{":":{"1":{".":{"0":{".":{"0":{"df":1,"docs":{"79":{"tf":1.0}}},"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":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"82":{"tf":1.0},"94":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":22,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"14":{"tf":2.449489742783178},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.7320508075688772},"46":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":2.449489742783178},"69":{"tf":2.0},"86":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"47":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":29,"docs":{"0":{"tf":1.0},"10":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"23":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":2.8284271247461903},"69":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.6457513110645907},"89":{"tf":1.4142135623730951}},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"79":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}},"i":{"c":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"50":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"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.0},"63":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"43":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"47":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"24":{"tf":1.0},"89":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"26":{"tf":1.0},"65":{"tf":1.0}},"e":{"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":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"17":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.4142135623730951},"74":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"31":{"tf":1.0},"40":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"52":{"tf":1.0},"84":{"tf":1.7320508075688772}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"46":{"tf":1.0},"81":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"65":{"tf":1.0},"74":{"tf":1.0}}},"y":{"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":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{".":{"1":{"3":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"0":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"75":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":15,"docs":{"12":{"tf":2.0},"14":{"tf":1.4142135623730951},"23":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"78":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"s":{"c":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"+":{"d":{"df":2,"docs":{"26":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"z":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":3,"docs":{"26":{"tf":1.0},"59":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":2.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":15,"docs":{"14":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"89":{"tf":1.0}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"89":{"tf":1.0}}},"t":{"a":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}},"y":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}}},"df":4,"docs":{"26":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0}},"e":{"b":{"df":2,"docs":{"90":{"tf":1.0},"94":{"tf":2.23606797749979}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"86":{"tf":2.449489742783178},"87":{"tf":2.449489742783178},"89":{"tf":2.23606797749979}},"g":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"72":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{"b":{"a":{"df":0,"docs":{},"r":{"_":{"3":{":":{"0":{".":{"1":{".":{"0":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"48":{"tf":1.7320508075688772},"65":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}}}},"df":5,"docs":{"12":{"tf":1.0},"33":{"tf":1.4142135623730951},"45":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"19":{"tf":1.0},"43":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":2.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"78":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"0":{"tf":1.0},"25":{"tf":1.4142135623730951},"32":{"tf":2.0},"39":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"55":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.0},"75":{"tf":2.23606797749979},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"78":{"tf":3.0},"79":{"tf":2.23606797749979},"88":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{},"i":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"62":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"0":{"tf":1.0},"16":{"tf":1.0},"43":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"17":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"47":{"tf":1.0},"56":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"12":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"40":{"tf":1.0},"45":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"12":{"tf":1.7320508075688772},"41":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}},"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":3,"docs":{"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"4":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":8,"docs":{"14":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"35":{"tf":1.0},"39":{"tf":2.8284271247461903}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"51":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"94":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"81":{"tf":1.0}}}}},"m":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.0}}}},"o":{"c":{"df":2,"docs":{"0":{"tf":1.0},"65":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"36":{"tf":2.23606797749979}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"35":{"tf":2.0},"43":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":1.7320508075688772},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"89":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"26":{"tf":2.0},"77":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"48":{"tf":1.0},"61":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"l":{"df":4,"docs":{"46":{"tf":1.4142135623730951},"47":{"tf":2.0},"72":{"tf":2.23606797749979},"73":{"tf":1.0}}}},"v":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"40":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"62":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"7":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":3,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"90":{"tf":1.0}}}}}},"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":{"45":{"tf":1.7320508075688772},"46":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"87":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"12":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":1,"docs":{"48":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"26":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"78":{"tf":1.0},"89":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"46":{"tf":1.0},"77":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"23":{"tf":2.23606797749979},"47":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"t":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"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":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"d":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"d":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"d":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"57":{"tf":1.0},"75":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"89":{"tf":1.0},"92":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":45,"docs":{"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":2.0},"69":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"15":{"tf":1.0},"33":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"2":{"1":{"3":{"df":2,"docs":{"16":{"tf":1.4142135623730951},"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":14,"docs":{"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.0}}}},"t":{"df":8,"docs":{"12":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"9":{"tf":2.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"63":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"6":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"26":{"tf":1.0},"73":{"tf":2.23606797749979}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"47":{"tf":1.0},"86":{"tf":1.0}}},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"23":{"tf":2.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.0},"87":{"tf":1.0}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"df":2,"docs":{"48":{"tf":1.0},"94":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"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":{"68":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":2,"docs":{"48":{"tf":1.0},"68":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"49":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"/":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":5,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"28":{"tf":1.0},"38":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":25,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.23606797749979},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"23":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":2.23606797749979},"83":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":2.23606797749979}}}},"n":{"d":{"df":4,"docs":{"13":{"tf":1.0},"26":{"tf":1.0},"39":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":1,"docs":{"89":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"62":{"tf":1.0},"65":{"tf":1.0},"82":{"tf":1.0}}}}},"x":{"df":1,"docs":{"74":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":20,"docs":{"12":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"o":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"r":{"c":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"89":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}}},"v":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"g":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":1,"docs":{"48":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":6,"docs":{"0":{"tf":1.0},"65":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"88":{"tf":2.0},"90":{"tf":1.0}}}}},"t":{"df":48,"docs":{"14":{"tf":1.4142135623730951},"43":{"tf":2.23606797749979},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":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.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"8":{"df":1,"docs":{"49":{"tf":2.0}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"49":{"tf":1.0},"62":{"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":{"84":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"t":{")":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{")":{",":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"g":{"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":{":":{"/":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":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":{"26":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.7320508075688772}}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":3,"docs":{"38":{"tf":1.0},"74":{"tf":1.0},"89":{"tf":1.0}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}}}},"r":{"a":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"87":{"tf":1.0}}}},"p":{"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"76":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"w":{"df":2,"docs":{"47":{"tf":1.0},"72":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"73":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}},"t":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"23":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"12":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"83":{"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},":":{"0":{".":{"1":{".":{"0":{"df":1,"docs":{"36":{"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":5,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"38":{"tf":1.0}},"e":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":14,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":2.23606797749979},"45":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"40":{"tf":1.0}},"e":{".":{"\\":{"$":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"\\":{"$":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"\\":{"$":{"1":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{":":{"4":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"p":{"df":5,"docs":{"14":{"tf":2.449489742783178},"26":{"tf":1.0},"39":{"tf":1.4142135623730951},"47":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"n":{"c":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":4,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0}}},"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"45":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"48":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"4":{"4":{"3":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":{},"g":{"8":{"df":1,"docs":{"48":{"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":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":2.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"94":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"/":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"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":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"87":{"tf":1.0}}}}},"d":{"df":8,"docs":{"0":{"tf":1.0},"57":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"77":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"68":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"36":{"tf":1.0},"53":{"tf":1.0}}}},"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":1,"docs":{"75":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"26":{"tf":2.0},"33":{"tf":1.7320508075688772},"51":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":2.23606797749979},"88":{"tf":2.449489742783178},"94":{"tf":1.0}}}}}}},"n":{"c":{"df":4,"docs":{"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"u":{"d":{"df":6,"docs":{"64":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"22":{"tf":1.4142135623730951},"46":{"tf":1.0},"56":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":23,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":2.449489742783178},"17":{"tf":1.4142135623730951},"19":{"tf":2.0},"23":{"tf":2.0},"26":{"tf":1.0},"28":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"35":{"tf":2.6457513110645907},"36":{"tf":1.0},"38":{"tf":2.6457513110645907},"39":{"tf":1.4142135623730951},"48":{"tf":3.3166247903554},"59":{"tf":3.0},"63":{"tf":3.0},"64":{"tf":2.6457513110645907},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":3.3166247903554},"79":{"tf":2.6457513110645907},"8":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"14":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"[":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"a":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"[":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}},"i":{"d":{"df":3,"docs":{"48":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"39":{"tf":2.6457513110645907},"65":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"1":{"tf":2.23606797749979},"2":{"tf":1.0},"3":{"tf":2.449489742783178},"4":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":2.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":3.0}}},"n":{"c":{"df":5,"docs":{"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"1":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"49":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":5,"docs":{"0":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":3.7416573867739413},"88":{"tf":4.358898943540674}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"86":{"tf":2.0},"87":{"tf":2.0},"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"23":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"45":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":6,"docs":{"1":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"s":{"_":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"88":{"tf":1.0}}}}},"t":{"'":{"df":6,"docs":{"51":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"0":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":2.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"v":{"a":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"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":{},"i":{"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":14,"docs":{"0":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"59":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":2.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.7320508075688772},"2":{"tf":1.0},"3":{"tf":1.0},"92":{"tf":2.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"92":{"tf":1.0}}}},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"o":{"b":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"45":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"(":{"\"":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{")":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"33":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"49":{"tf":1.0},"89":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":4,"docs":{"0":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}}}},"k":{"df":1,"docs":{"89":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"47":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"y":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"48":{"tf":1.0},"71":{"tf":1.7320508075688772},"73":{"tf":2.23606797749979},"76":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"3":{"df":1,"docs":{"79":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"3":{":":{"0":{".":{"2":{".":{"0":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":4,"docs":{"48":{"tf":1.4142135623730951},"74":{"tf":2.449489742783178},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"72":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"73":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"i":{"df":4,"docs":{"71":{"tf":1.0},"74":{"tf":3.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772}}}}},"df":1,"docs":{"94":{"tf":1.4142135623730951}},"e":{"a":{"d":{"df":1,"docs":{"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{">":{"a":{"a":{"df":1,"docs":{"89":{"tf":1.0}}},"df":1,"docs":{"89":{"tf":1.0}}},"d":{"c":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":1,"docs":{"89":{"tf":1.0}}},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":4,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"59":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}},"t":{"'":{"df":7,"docs":{"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"48":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0}}},"df":3,"docs":{"46":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"45":{"tf":1.0},"74":{"tf":1.0}}}}}},"i":{"b":{"_":{"3":{":":{"0":{".":{"9":{".":{"1":{"df":1,"docs":{"79":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"0":{"tf":1.0},"25":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.4142135623730951},"66":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":2.0}}},"y":{"_":{"3":{":":{"3":{".":{"1":{".":{"3":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"20":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"76":{"tf":2.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"94":{"tf":2.0}}}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"14":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"3":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"71":{"tf":1.0},"89":{"tf":2.23606797749979},"94":{"tf":1.0}}}}},"o":{"a":{"d":{"df":5,"docs":{"19":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"74":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{":":{"/":{"/":{"/":{"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":{},"e":{"d":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"9":{"df":0,"docs":{},"n":{"/":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"/":{"1":{".":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"0":{"a":{"c":{"1":{"4":{"0":{"9":{"c":{"0":{"1":{"1":{"7":{"a":{"9":{"4":{"9":{"d":{"4":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"9":{"8":{"2":{"df":0,"docs":{},"e":{"0":{"7":{"df":0,"docs":{},"e":{"8":{"5":{"c":{"7":{"d":{"df":0,"docs":{},"e":{"1":{"b":{"6":{"1":{"8":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":3,"docs":{"86":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"48":{"tf":1.0},"58":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"89":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":1,"docs":{"94":{"tf":1.0}}},"u":{"a":{"df":1,"docs":{"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0}}}}},"o":{"df":4,"docs":{"1":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"12":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":9,"docs":{"14":{"tf":1.0},"35":{"tf":2.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"65":{"tf":2.6457513110645907},"67":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"83":{"tf":2.23606797749979},"94":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"43":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"0":{"tf":1.0},"24":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"47":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"12":{"tf":1.0},"75":{"tf":1.7320508075688772},"81":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":2.0}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"43":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"71":{"tf":1.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"77":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"df":3,"docs":{"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":1,"docs":{"48":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"10":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"u":{"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"57":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":4.123105625617661},"89":{"tf":2.8284271247461903}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"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":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"?":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{".":{"7":{"1":{"4":{"3":{"&":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"o":{"d":{"df":2,"docs":{"65":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":2.449489742783178}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"48":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"26":{"tf":1.4142135623730951},"40":{"tf":2.0},"60":{"tf":1.7320508075688772},"69":{"tf":1.0},"89":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"56":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"23":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":18,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"92":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"32":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"40":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"80":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"67":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{":":{"1":{"1":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":1,"docs":{"94":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"14":{"tf":1.0},"18":{"tf":1.7320508075688772},"23":{"tf":1.0},"41":{"tf":1.7320508075688772},"45":{"tf":1.0},"71":{"tf":2.0},"73":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"53":{"tf":1.7320508075688772},"64":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"86":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":1,"docs":{"48":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":10,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":2.8284271247461903}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}},"w":{"df":13,"docs":{"12":{"tf":1.0},"14":{"tf":2.0},"16":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":2.23606797749979},"48":{"tf":2.6457513110645907},"49":{"tf":2.23606797749979},"81":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"34":{"tf":1.0},"89":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"83":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":12,"docs":{"19":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"51":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"90":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}},"w":{"df":4,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"75":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"43":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":2.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"33":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"3":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"89":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"90":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"k":{"df":1,"docs":{"83":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"89":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"c":{"df":5,"docs":{"62":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":11,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"49":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":2.0},"89":{"tf":1.0}},"j":{"d":{"df":0,"docs":{},"k":{"df":3,"docs":{"2":{"tf":1.0},"26":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"2":{"tf":1.0},"73":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"47":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"23":{"tf":1.0},"65":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":5,"docs":{"48":{"tf":1.4142135623730951},"74":{"tf":2.449489742783178},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"47":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"s":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"26":{"tf":1.0},"39":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"75":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":2.0},"94":{"tf":2.8284271247461903}},"e":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"65":{"tf":1.0},"80":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":9,"docs":{"42":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0}}}}},"s":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"73":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":10,"docs":{"14":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"35":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"t":{"df":2,"docs":{"26":{"tf":1.7320508075688772},"74":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"83":{"tf":1.0},"92":{"tf":1.0}}}}},"df":3,"docs":{"48":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}}}},"r":{"df":2,"docs":{"87":{"tf":1.0},"89":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"12":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"75":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"78":{"tf":2.0},"83":{"tf":1.4142135623730951},"94":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"45":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"14":{"tf":1.0},"34":{"tf":1.7320508075688772},"47":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":2.0}},"s":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":3,"docs":{"63":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"m":{"df":1,"docs":{"48":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"81":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"46":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"88":{"tf":1.0},"89":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"11":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}},"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":{"2":{"tf":1.4142135623730951}}}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"23":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"12":{"tf":1.0},"45":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"33":{"tf":1.0},"48":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"/":{"b":{"a":{"df":0,"docs":{},"r":{"/":{"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":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"45":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"65":{"tf":2.6457513110645907}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"80":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":2,"docs":{"85":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":3,"docs":{"77":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}},"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"46":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}},"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":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":30,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"14":{"tf":2.449489742783178},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"28":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":2.0},"48":{"tf":3.3166247903554},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":1.7320508075688772},"7":{"tf":1.0},"71":{"tf":2.0},"74":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":3.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":2.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"53":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"14":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"56":{"tf":1.0},"65":{"tf":2.23606797749979},"89":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"0":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":2.0}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"2":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"q":{"df":2,"docs":{"26":{"tf":1.0},"48":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":42,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"89":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"48":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"j":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{")":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"d":{"df":4,"docs":{"19":{"tf":1.0},"43":{"tf":1.4142135623730951},"52":{"tf":1.0},"62":{"tf":1.0}},"i":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"38":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"1":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}},"v":{"df":1,"docs":{"94":{"tf":1.0}}}},"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"74":{"tf":1.7320508075688772},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"l":{"df":1,"docs":{"83":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"83":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"1":{"tf":1.0}}},"o":{"a":{"d":{"df":10,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"o":{"df":1,"docs":{"94":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"46":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"40":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"(":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":5,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"65":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"26":{"tf":1.4142135623730951},"33":{"tf":1.0},"88":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"\"":{":":{"4":{"0":{".":{"7":{"1":{"0":{"3":{"3":{"5":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"48":{"tf":1.0},"89":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"76":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"73":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{":":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"d":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"64":{"tf":1.4142135623730951},"71":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"94":{"tf":3.0}}}}}}},"df":2,"docs":{"90":{"tf":1.0},"94":{"tf":2.0}}}},"u":{"df":0,"docs":{},"n":{"df":34,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"15":{"tf":2.0},"16":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"46":{"tf":1.0},"48":{"tf":2.0},"51":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":2.23606797749979},"67":{"tf":2.449489742783178},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"76":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"1":{"tf":2.23606797749979},"2":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.7320508075688772},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"6":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"47":{"tf":1.0},"52":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"17":{"tf":2.23606797749979},"69":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"81":{"tf":1.0}}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"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":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"2":{".":{"0":{".":{"0":{"df":2,"docs":{"52":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"48":{"tf":1.0}}}}}}}}}},"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{"b":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":6,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":13,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772}}}}}}}},"df":87,"docs":{"0":{"tf":2.6457513110645907},"1":{"tf":2.8284271247461903},"10":{"tf":2.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.0},"40":{"tf":2.23606797749979},"41":{"tf":2.23606797749979},"42":{"tf":1.4142135623730951},"43":{"tf":2.23606797749979},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":2.6457513110645907},"47":{"tf":1.7320508075688772},"48":{"tf":3.605551275463989},"49":{"tf":1.4142135623730951},"5":{"tf":2.0},"50":{"tf":1.7320508075688772},"51":{"tf":2.8284271247461903},"52":{"tf":3.0},"53":{"tf":2.8284271247461903},"54":{"tf":2.23606797749979},"55":{"tf":1.4142135623730951},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":2.0},"59":{"tf":3.7416573867739413},"6":{"tf":2.23606797749979},"60":{"tf":2.23606797749979},"61":{"tf":2.449489742783178},"62":{"tf":1.7320508075688772},"63":{"tf":2.8284271247461903},"65":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":2.449489742783178},"80":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.6457513110645907},"86":{"tf":3.3166247903554},"87":{"tf":1.4142135623730951},"88":{"tf":4.0},"89":{"tf":2.449489742783178},"9":{"tf":2.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"94":{"tf":3.605551275463989}},"n":{"df":5,"docs":{"53":{"tf":2.23606797749979},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.0}}}},"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"3":{".":{"df":0,"docs":{},"g":{"8":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"41":{"tf":1.0},"48":{"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":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"c":{"df":2,"docs":{"45":{"tf":2.0},"88":{"tf":1.0}}},"df":31,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":2.449489742783178},"33":{"tf":1.4142135623730951},"35":{"tf":2.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":2.8284271247461903},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":3.605551275463989},"49":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":2.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":2.0},"78":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":3.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":2.0},"89":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":14,"docs":{"0":{"tf":1.0},"16":{"tf":2.449489742783178},"17":{"tf":1.0},"38":{"tf":2.449489742783178},"47":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"48":{"tf":1.0}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"65":{"tf":1.0},"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.7320508075688772}},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.7320508075688772},"90":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":8,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"8":{"df":2,"docs":{"41":{"tf":1.0},"48":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":1,"docs":{"48":{"tf":1.4142135623730951}}},"df":10,"docs":{"33":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.0}},"m":{"df":1,"docs":{"83":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"48":{"tf":2.0},"65":{"tf":1.0},"67":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"d":{"df":3,"docs":{"26":{"tf":1.0},"33":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"26":{"tf":1.0},"48":{"tf":2.449489742783178},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"55":{"tf":1.0},"57":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"59":{"tf":2.23606797749979},"61":{"tf":1.7320508075688772},"63":{"tf":2.0},"8":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":2.6457513110645907},"88":{"tf":2.23606797749979}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"14":{"tf":1.0},"17":{"tf":2.0},"86":{"tf":2.0},"87":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.7320508075688772}}}}}}},"t":{"df":20,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":2.449489742783178},"17":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"31":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":2.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.7320508075688772},"73":{"tf":2.0},"80":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"[":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"41":{"tf":1.0},"90":{"tf":2.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":15,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.4142135623730951},"40":{"tf":1.0},"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"59":{"tf":2.449489742783178},"63":{"tf":1.7320508075688772},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":1,"docs":{"85":{"tf":1.0}}}},"w":{"df":3,"docs":{"64":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":4,"docs":{"48":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0}}}}}},"df":2,"docs":{"48":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"73":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"0":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"80":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"56":{"tf":1.0},"80":{"tf":1.0}}}}}},"l":{"df":1,"docs":{"94":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"45":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"43":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"4":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}},"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"36":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":12,"docs":{"18":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"37":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":2.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"41":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":16,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.0},"17":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":3.3166247903554},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.23606797749979}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":5,"docs":{"14":{"tf":1.0},"46":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"52":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"48":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"46":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":90,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.23606797749979},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.8284271247461903},"49":{"tf":1.4142135623730951},"5":{"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":2.23606797749979},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":2.449489742783178},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":2.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"9":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"1":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"69":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"48":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"4":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{".":{"_":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"33":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"u":{"b":{"1":{"df":1,"docs":{"27":{"tf":1.0}}},"2":{"df":1,"docs":{"30":{"tf":1.0}}},"3":{"df":1,"docs":{"31":{"tf":1.0}}},"4":{"df":1,"docs":{"32":{"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":3,"docs":{"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"80":{"tf":1.0}}},"df":17,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"71":{"tf":2.0},"72":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":2.23606797749979},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"35":{"tf":1.7320508075688772},"48":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"65":{"tf":2.23606797749979},"76":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"94":{"tf":4.123105625617661}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"43":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"38":{"tf":1.4142135623730951},"86":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":10,"docs":{"2":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":5,"docs":{"59":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":1,"docs":{"36":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"48":{"tf":1.0},"57":{"tf":1.0},"81":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"[":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":11,"docs":{"14":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"65":{"tf":3.605551275463989},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"[":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"49":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"m":{"df":1,"docs":{"3":{"tf":1.0}},"p":{"df":1,"docs":{"33":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"41":{"tf":1.0},"48":{"tf":2.6457513110645907},"49":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"n":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"71":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"40":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"60":{"tf":1.0}}},"df":22,"docs":{"0":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"23":{"tf":2.449489742783178},"24":{"tf":2.23606797749979},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.7320508075688772},"65":{"tf":2.23606797749979},"68":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"74":{"tf":2.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"83":{"tf":2.23606797749979},"84":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":2.0},"89":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"40":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"40":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"90":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"89":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}},"g":{"df":2,"docs":{"46":{"tf":1.0},"83":{"tf":1.0}}},"k":{"df":1,"docs":{"74":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"s":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"16":{"tf":2.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"65":{"tf":1.0},"74":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"83":{"tf":1.0},"89":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"58":{"tf":1.0},"73":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":7,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"26":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.0}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}},"e":{"_":{"a":{"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":7,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"35":{"tf":2.23606797749979},"48":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}}}}}}}},"df":1,"docs":{"49":{"tf":1.0}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":7,"docs":{"0":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"54":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"3":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"20":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":2.6457513110645907},"74":{"tf":3.1622776601683795},"77":{"tf":1.4142135623730951},"78":{"tf":2.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"74":{"tf":2.0},"78":{"tf":1.4142135623730951}}}}}},"v":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"74":{"tf":3.1622776601683795},"78":{"tf":1.7320508075688772}}}}}}}},"p":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"46":{"tf":1.0},"52":{"tf":1.0},"78":{"tf":1.7320508075688772},"81":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"n":{"df":1,"docs":{"68":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":3,"docs":{"26":{"tf":1.0},"39":{"tf":1.0},"69":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"89":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"86":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":2,"docs":{"85":{"tf":1.0},"90":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":14,"docs":{"26":{"tf":1.4142135623730951},"41":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"59":{"tf":1.4142135623730951},"67":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":2.449489742783178},"79":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.7320508075688772},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"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":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"i":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":2.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"33":{"tf":1.7320508075688772}}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"41":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"df":6,"docs":{"12":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"39":{"tf":1.0},"4":{"tf":1.4142135623730951}}}}}},"x":{"df":2,"docs":{"59":{"tf":1.0},"9":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"48":{"tf":1.0},"65":{"tf":1.0},"94":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":8,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"74":{"tf":1.0},"89":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":51,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"65":{"tf":2.0},"69":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":2.449489742783178},"87":{"tf":1.7320508075688772},"88":{"tf":3.872983346207417},"89":{"tf":3.605551275463989},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"9":{"df":0,"docs":{},"n":{"/":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"/":{"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":1,"docs":{"63":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}}},"x":{"df":1,"docs":{"88":{"tf":1.0}}}},"v":{"2":{"df":1,"docs":{"87":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"26":{"tf":2.449489742783178},"33":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"71":{"tf":1.0},"74":{"tf":4.242640687119285},"78":{"tf":2.0},"80":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":10,"docs":{"16":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"76":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"47":{"tf":1.0},"74":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"b":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"1":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.449489742783178},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":2.449489742783178},"78":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}}}}},"i":{"a":{"df":4,"docs":{"0":{"tf":1.0},"47":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"65":{"tf":1.0},"79":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"m":{"df":1,"docs":{"89":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}},"z":{"df":1,"docs":{"64":{"tf":1.0}}}},"m":{"df":1,"docs":{"26":{"tf":1.0}}},"s":{"df":2,"docs":{"0":{"tf":1.0},"86":{"tf":2.0}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"88":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"17":{"tf":2.6457513110645907},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"y":{"df":3,"docs":{"58":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"37":{"tf":1.0}}}}}}},"b":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":6,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"11":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"48":{"tf":1.0},"63":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"54":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"n":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"59":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":20,"docs":{"33":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":3,"docs":{"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"23":{"tf":1.4142135623730951},"56":{"tf":1.0},"77":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"42":{"tf":1.0},"48":{"tf":1.0},"81":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"73":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}}},"x":{"d":{"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":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"23":{"tf":1.0}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":4,"docs":{"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0}}}},"u":{"'":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"r":{"df":3,"docs":{"75":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"v":{"df":2,"docs":{"6":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"q":{"df":1,"docs":{"94":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}}},"z":{"df":1,"docs":{"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"46":{"tf":1.0},"56":{"tf":2.23606797749979},"88":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"title":{"root":{"a":{"d":{"d":{"df":4,"docs":{"20":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"88":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"15":{"tf":1.0},"36":{"tf":1.0}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"70":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"40":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"a":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"57":{"tf":1.0}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"47":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}},"df":10,"docs":{"19":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"13":{"tf":1.0},"31":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"29":{"tf":1.0},"66":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"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":1,"docs":{"84":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"22":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"7":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"25":{"tf":1.0},"32":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"44":{"tf":1.0},"62":{"tf":1.0}}}},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"82":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"43":{"tf":1.0},"77":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"8":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":1,"docs":{"32":{"tf":1.0}}}},"p":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}},"e":{"a":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.0}}}}}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"76":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"25":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0}}},"y":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"20":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"94":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"24":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}},"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":{"7":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"40":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"18":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"w":{"df":2,"docs":{"41":{"tf":1.0},"48":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}},"s":{"df":1,"docs":{"91":{"tf":1.0}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"34":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"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":{"2":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"10":{"tf":1.0},"18":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"19":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":5,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"67":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"t":{"df":25,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"16":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0}},"n":{"df":4,"docs":{"53":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"26":{"tf":1.0},"77":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"16":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"t":{"df":3,"docs":{"16":{"tf":1.0},"37":{"tf":1.0},"73":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"90":{"tf":1.0},"91":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"16":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"12":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"91":{"tf":1.0}},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"b":{"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":4,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"39":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"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":2,"docs":{"20":{"tf":1.0},"30":{"tf":1.0}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}}}}},"s":{"df":7,"docs":{"26":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"37":{"tf":1.0},"52":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"62":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"35":{"tf":1.0}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}});
\ No newline at end of file
+Object.assign(window.search, {"doc_urls":["index.html#the-book-of-sbt-draft","Setup.html#installing-sbt-runner","Setup.html#prerequisites","Setup.html#installing-from-sdkman","Setup.html#universal-packages","Setup.html#verify-the-sbt-runner","sbt-by-example.html#sbt-by-example","sbt-by-example.html#create-a-minimum-sbt-build","sbt-by-example.html#start-sbt-shell","sbt-by-example.html#exit-sbt-shell","sbt-by-example.html#compile-a-project","sbt-by-example.html#recompile-on-code-change","sbt-by-example.html#create-a-source-file","sbt-by-example.html#run-a-previous-command","sbt-by-example.html#getting-help","sbt-by-example.html#run-your-app","sbt-by-example.html#set-thisbuild--scalaversion-from-sbt-shell","sbt-by-example.html#save-the-session-to-buildsbt","sbt-by-example.html#name-your-project","sbt-by-example.html#reload-the-build","sbt-by-example.html#add-toolkit-test-to-librarydependencies","sbt-by-example.html#run-tests","sbt-by-example.html#run-incremental-tests-continuously","sbt-by-example.html#write-a-test","sbt-by-example.html#make-the-test-pass","sbt-by-example.html#add-a-library-dependency","sbt-by-example.html#use-scala-repl","sbt-by-example.html#make-a-subproject","sbt-by-example.html#list-all-subprojects","sbt-by-example.html#compile-the-subproject","sbt-by-example.html#add-toolkit-test-to-the-subproject","sbt-by-example.html#broadcast-commands","sbt-by-example.html#make-hello-depend-on-hellocore","sbt-by-example.html#parse-json-using-ujson","sbt-by-example.html#switch-scalaversion-temporarily","sbt-by-example.html#batch-mode","sbt-by-example.html#sbt-new-command","sbt-by-example.html#credits","guide/index.html#getting-started-with-sbt","guide/why-sbt-exists.html#why-sbt-exists","guide/why-sbt-exists.html#preliminaries","guide/why-sbt-exists.html#sbt","guide/why-sbt-exists.html#why-buildsbt-dsl","guide/sbt-new.html#creating-a-new-build","guide/sbt-new.html#giter8-templates","guide/sbt-components.html#sbt-components","guide/sbt-components.html#sbt-runner","guide/sbt-components.html#specifying-sbt-version-with-projectbuildproperties","guide/sbt-components.html#sbtn-sbt---client","guide/sbt-components.html#sbt-server","guide/sbt-components.html#coursier","guide/sbt-components.html#zinc","guide/sbt-components.html#bsp-server","guide/sbt-components.html#connecting-to-sbt-server","guide/sbt-components.html#sbt-shell-using-sbtn","guide/sbt-components.html#batch-mode-using-sbtn","guide/sbt-components.html#shutting-down-sbt-server","guide/running.html#working-with-an-existing-build","guide/running.html#sbt-shell-with-sbtn","guide/running.html#projects-command","guide/running.html#tasks-command","guide/running.html#compile","guide/running.html#run","guide/running.html#testquick","guide/running.html#watch-tilde-command","guide/build-definition-basics.html#build-definition-basics","guide/build-definition-basics.html#what-is-a-build-definition","guide/build-definition-basics.html#buildsbt-dsl","guide/build-definition-basics.html#typed-setting-expression","guide/build-definition-basics.html#vals-and-lazy-vals","guide/library-dependency-basics.html#library-dependency-basics","guide/library-dependency-basics.html#the-librarydependencies-key","guide/library-dependency-basics.html#getting-the-right-scala-version-with-","guide/library-dependency-basics.html#tracking-dependencies-in-one-place","guide/library-dependency-basics.html#viewing-library-dependencies","guide/multi-project-basics.html#multi-project-basics","guide/build-layout.html#build-layout","guide/build-layout.html#build-support-files","guide/build-layout.html#source-code","guide/build-layout.html#configuring-version-control","guide/IDE.html#sbt-with-ides","guide/IDE.html#using-sbt-as-metals-build-server","guide/IDE.html#importing-to-intellij-idea","guide/IDE.html#using-sbt-as-intellij-idea-build-server-advanced","guide/IDE.html#using-neovim-as-metals-frontend-advanced","setup-notes.html#setup-notes","setup-notes.html#os-specific-setup","setup-notes.html#macos","setup-notes.html#windows","setup-notes.html#linux"],"index":{"documentStore":{"docInfo":{"0":{"body":58,"breadcrumbs":4,"title":3},"1":{"body":48,"breadcrumbs":8,"title":3},"10":{"body":23,"breadcrumbs":6,"title":2},"11":{"body":44,"breadcrumbs":7,"title":3},"12":{"body":81,"breadcrumbs":7,"title":3},"13":{"body":14,"breadcrumbs":7,"title":3},"14":{"body":79,"breadcrumbs":6,"title":2},"15":{"body":20,"breadcrumbs":6,"title":2},"16":{"body":41,"breadcrumbs":9,"title":5},"17":{"body":63,"breadcrumbs":7,"title":3},"18":{"body":11,"breadcrumbs":6,"title":2},"19":{"body":50,"breadcrumbs":6,"title":2},"2":{"body":15,"breadcrumbs":6,"title":1},"20":{"body":26,"breadcrumbs":8,"title":4},"21":{"body":2,"breadcrumbs":6,"title":2},"22":{"body":2,"breadcrumbs":8,"title":4},"23":{"body":81,"breadcrumbs":6,"title":2},"24":{"body":24,"breadcrumbs":7,"title":3},"25":{"body":29,"breadcrumbs":7,"title":3},"26":{"body":118,"breadcrumbs":7,"title":3},"27":{"body":42,"breadcrumbs":6,"title":2},"28":{"body":9,"breadcrumbs":6,"title":2},"29":{"body":2,"breadcrumbs":6,"title":2},"3":{"body":24,"breadcrumbs":7,"title":2},"30":{"body":42,"breadcrumbs":8,"title":4},"31":{"body":60,"breadcrumbs":6,"title":2},"32":{"body":51,"breadcrumbs":8,"title":4},"33":{"body":87,"breadcrumbs":8,"title":4},"34":{"body":37,"breadcrumbs":7,"title":3},"35":{"body":37,"breadcrumbs":6,"title":2},"36":{"body":36,"breadcrumbs":7,"title":3},"37":{"body":10,"breadcrumbs":5,"title":1},"38":{"body":39,"breadcrumbs":5,"title":3},"39":{"body":0,"breadcrumbs":6,"title":2},"4":{"body":6,"breadcrumbs":7,"title":2},"40":{"body":76,"breadcrumbs":5,"title":1},"41":{"body":83,"breadcrumbs":5,"title":1},"42":{"body":102,"breadcrumbs":6,"title":2},"43":{"body":282,"breadcrumbs":8,"title":3},"44":{"body":39,"breadcrumbs":7,"title":2},"45":{"body":0,"breadcrumbs":6,"title":2},"46":{"body":21,"breadcrumbs":6,"title":2},"47":{"body":39,"breadcrumbs":8,"title":4},"48":{"body":39,"breadcrumbs":7,"title":3},"49":{"body":18,"breadcrumbs":6,"title":2},"5":{"body":4,"breadcrumbs":8,"title":3},"50":{"body":14,"breadcrumbs":5,"title":1},"51":{"body":37,"breadcrumbs":5,"title":1},"52":{"body":21,"breadcrumbs":6,"title":2},"53":{"body":7,"breadcrumbs":7,"title":3},"54":{"body":105,"breadcrumbs":8,"title":4},"55":{"body":15,"breadcrumbs":8,"title":4},"56":{"body":15,"breadcrumbs":8,"title":4},"57":{"body":31,"breadcrumbs":8,"title":3},"58":{"body":75,"breadcrumbs":8,"title":3},"59":{"body":34,"breadcrumbs":7,"title":2},"6":{"body":12,"breadcrumbs":6,"title":2},"60":{"body":211,"breadcrumbs":7,"title":2},"61":{"body":29,"breadcrumbs":6,"title":1},"62":{"body":49,"breadcrumbs":6,"title":1},"63":{"body":94,"breadcrumbs":6,"title":1},"64":{"body":42,"breadcrumbs":8,"title":3},"65":{"body":5,"breadcrumbs":8,"title":3},"66":{"body":60,"breadcrumbs":7,"title":2},"67":{"body":29,"breadcrumbs":7,"title":2},"68":{"body":77,"breadcrumbs":8,"title":3},"69":{"body":142,"breadcrumbs":8,"title":3},"7":{"body":14,"breadcrumbs":8,"title":4},"70":{"body":25,"breadcrumbs":8,"title":3},"71":{"body":31,"breadcrumbs":7,"title":2},"72":{"body":54,"breadcrumbs":9,"title":4},"73":{"body":69,"breadcrumbs":9,"title":4},"74":{"body":44,"breadcrumbs":8,"title":3},"75":{"body":65,"breadcrumbs":8,"title":3},"76":{"body":89,"breadcrumbs":6,"title":2},"77":{"body":40,"breadcrumbs":7,"title":3},"78":{"body":99,"breadcrumbs":6,"title":2},"79":{"body":28,"breadcrumbs":7,"title":3},"8":{"body":16,"breadcrumbs":7,"title":3},"80":{"body":43,"breadcrumbs":6,"title":2},"81":{"body":166,"breadcrumbs":9,"title":5},"82":{"body":136,"breadcrumbs":7,"title":3},"83":{"body":256,"breadcrumbs":11,"title":7},"84":{"body":250,"breadcrumbs":9,"title":5},"85":{"body":49,"breadcrumbs":5,"title":2},"86":{"body":0,"breadcrumbs":6,"title":3},"87":{"body":39,"breadcrumbs":4,"title":1},"88":{"body":10,"breadcrumbs":4,"title":1},"89":{"body":266,"breadcrumbs":4,"title":1},"9":{"body":13,"breadcrumbs":7,"title":3}},"docs":{"0":{"body":"Warning This is a draft documentation of sbt 2.x that is yet to be released. While the general concept translates to sbt 1.x, details of both 2.x and this doc are subject to change. sbt logo sbt is a simple build tool for Scala and Java. sbt downloads your library dependencies via Coursier, incrementally compiles and tests your projects, integrates with IDEs like IntelliJ and VS Code, makes JAR packages, and publishes them to Maven Central , JVM community's package registry. scalaVersion := \"3.3.3\" You just need one line of build.sbt to get started with Scala.","breadcrumbs":"Introduction » The Book of sbt (Draft)","id":"0","title":"The Book of sbt (Draft)"},"1":{"body":"To build an sbt project, you'll need to take these steps: Install JDK (We recommend Eclipse Adoptium Temurin JDK 8, 11, or 17, or Zulu JDK 8 for macOS with ARM chips). Install sbt runner. sbt runner is a script that invokes a declared version of sbt, downloading it beforehand if necessary. This allows build authors to precisely control the sbt version, instead of relying on users' machine environment.","breadcrumbs":"Quick Start » Installing sbt runner » Installing sbt runner","id":"1","title":"Installing sbt runner"},"10":{"body":"As a convention, we will use the sbt:...> or > prompt to mean that we're in the sbt interactive shell. $ sbt\nsbt:foo-build> compile\n[success] elapsed time: 0 s, cache 0%, 1 onsite task","breadcrumbs":"Quick Start » sbt by example » Compile a project","id":"10","title":"Compile a project"},"11":{"body":"Prefixing the compile command (or any other command) with ~ causes the command to be automatically re-executed whenever one of the source files within the project is modified. For example: sbt:foo-build> ~compile\n[success] elapsed time: 0 s, cache 100%, 1 disk cache hit\n[info] 1. Monitoring source files for foo-build/compile...\n[info] Press to interrupt or '?' for more options.","breadcrumbs":"Quick Start » sbt by example » Recompile on code change","id":"11","title":"Recompile on code change"},"12":{"body":"Leave the previous command running. From a different shell or in your file manager create in the foo-build directory the following nested directories: src/main/scala/example. Then, create Hello.scala in the example directory using your favorite editor as follows: package example @main def main(args: String*): Unit = println(s\"Hello ${args.mkString}\") This new file should be picked up by the running command: [info] Build triggered by /tmp/foo-build/src/main/scala/example/Hello.scala. Running 'compile'.\n[info] compiling 1 Scala source to /tmp/foo-build/target/out/jvm/scala-3.3.3/foo/backend ...\n[success] elapsed time: 1 s, cache 0%, 1 onsite task\n[info] 2. Monitoring source files for foo-build/compile...\n[info] Press to interrupt or '?' for more options. Press Enter to exit ~compile.","breadcrumbs":"Quick Start » sbt by example » Create a source file","id":"12","title":"Create a source file"},"13":{"body":"From sbt shell, press up-arrow twice to find the compile command that you executed at the beginning. sbt:foo-build> compile","breadcrumbs":"Quick Start » sbt by example » Run a previous command","id":"13","title":"Run a previous command"},"14":{"body":"Use the help command to get basic help about the available commands. sbt:foo-build> help (; )* Runs the provided semicolon-separated commands. about Displays basic information about sbt and the build. tasks Lists the tasks defined for the current project. settings Lists the settings defined for the current project. reload (Re)loads the current project or changes to plugins project or returns from it. new Creates a new sbt build. new Creates a new sbt build. projects Lists the names of available projects or temporarily adds/removes extra builds to the session. .... Display the description of a specific task: sbt:foo-build> help run\nRuns a main class, passing along arguments provided on the command line.","breadcrumbs":"Quick Start » sbt by example » Getting help","id":"14","title":"Getting help"},"15":{"body":"sbt:foo> run\n[info] running example.main\nHello\n[success] elapsed time: 0 s, cache 50%, 1 disk cache hit, 1 onsite task","breadcrumbs":"Quick Start » sbt by example » Run your app","id":"15","title":"Run your app"},"16":{"body":"sbt:foo-build> set scalaVersion := \"3.3.3\"\n[info] Defining scalaVersion\n[info] The new value will be used by Compile / bspBuildTarget, Compile / dependencyTreeCrossProjectId and 51 others.\n[info] Run `last` for details.\n[info] Reapplying settings...\n[info] set current project to foo (in build file:/tmp/foo-build/) Check the scalaVersion setting: sbt:foo-build> scalaVersion\n[info] 3.3.3","breadcrumbs":"Quick Start » sbt by example » Set ThisBuild / scalaVersion from sbt shell","id":"16","title":"Set ThisBuild / scalaVersion from sbt shell"},"17":{"body":"We can save the ad-hoc settings using session save. sbt:foo-build> session save\n[info] Reapplying settings...\n[info] set current project to foo-build (in build file:/tmp/foo-build/)\n[warn] build source files have changed\n[warn] modified files:\n[warn] /tmp/foo-build/build.sbt\n[warn] Apply these changes by running `reload`.\n[warn] Automatically reload the build when source changes are detected by setting `Global / onChangedBuildSource := ReloadOnSourceChanges`.\n[warn] Disable this warning by setting `Global / onChangedBuildSource := IgnoreSourceChanges`. build.sbt file should now contain: scalaVersion := \"3.3.3\"","breadcrumbs":"Quick Start » sbt by example » Save the session to build.sbt","id":"17","title":"Save the session to build.sbt"},"18":{"body":"Using an editor, change build.sbt as follows: scalaVersion := \"3.3.3\"\norganization := \"com.example\"\nname := \"Hello\"","breadcrumbs":"Quick Start » sbt by example » Name your project","id":"18","title":"Name your project"},"19":{"body":"Use the reload command to reload the build. The command causes the build.sbt file to be re-read, and its settings applied. sbt:foo-build> reload\n[info] welcome to sbt 2.x (Azul Systems, Inc. Java)\n[info] loading project definition from /tmp/foo-build/project\n[info] loading settings for project hello from build.sbt ...\n[info] set current project to Hello (in build file:/tmp/foo-build/)\nsbt:Hello> Note that the prompt has now changed to sbt:Hello>.","breadcrumbs":"Quick Start » sbt by example » Reload the build","id":"19","title":"Reload the build"},"2":{"body":"sbt runs on all major operating systems; however, it requires JDK 8 or higher to run. java -version\n# openjdk version \"1.8.0_352\"","breadcrumbs":"Quick Start » Installing sbt runner » Prerequisites","id":"2","title":"Prerequisites"},"20":{"body":"Using an editor, change build.sbt as follows: scalaVersion := \"3.3.3\"\norganization := \"com.example\"\nname := \"Hello\"\nlibraryDependencies += \"org.scala-lang\" %% \"toolkit-test\" % \"0.1.7\" % Test Use the reload command to reflect the change in build.sbt. sbt:Hello> reload","breadcrumbs":"Quick Start » sbt by example » Add toolkit-test to libraryDependencies","id":"20","title":"Add toolkit-test to libraryDependencies"},"21":{"body":"sbt:Hello> test","breadcrumbs":"Quick Start » sbt by example » Run tests","id":"21","title":"Run tests"},"22":{"body":"sbt:Hello> ~testQuick","breadcrumbs":"Quick Start » sbt by example » Run incremental tests continuously","id":"22","title":"Run incremental tests continuously"},"23":{"body":"Leaving the previous command running, create a file named src/test/scala/example/HelloSuite.scala using an editor: package example class HelloSuite extends munit.FunSuite: test(\"Hello should start with H\") { assert(\"hello\".startsWith(\"H\")) }\nend HelloSuite ~testQuick should pick up the change: example.HelloSuite:\n==> X example.HelloSuite.Hello should start with H 0.012s munit.FailException: /tmp/foo-build/src/test/scala/example/HelloSuite.scala:5 assertion failed\n4: test(\"Hello should start with H\") {\n5: assert(\"hello\".startsWith(\"H\"))\n6: } at munit.FunSuite.assert(FunSuite.scala:11) at example.HelloSuite.$init$$$anonfun$1(HelloSuite.scala:5)\n[error] Failed: Total 1, Failed 1, Errors 0, Passed 0\n[error] Failed tests:\n[error] example.HelloSuite\n[error] (Test / testQuick) sbt.TestsFailedException: Tests unsuccessful\n[error] elapsed time: 1 s, cache 50%, 3 disk cache hits, 3 onsite tasks","breadcrumbs":"Quick Start » sbt by example » Write a test","id":"23","title":"Write a test"},"24":{"body":"Using an editor, change src/test/scala/example/HelloSuite.scala to: package example class HelloSuite extends munit.FunSuite: test(\"Hello should start with H\") { assert(\"Hello\".startsWith(\"H\")) }\nend HelloSuite Confirm that the test passes, then press Enter to exit the continuous test.","breadcrumbs":"Quick Start » sbt by example » Make the test pass","id":"24","title":"Make the test pass"},"25":{"body":"Using an editor, change build.sbt as follows: scalaVersion := \"3.3.3\"\norganization := \"com.example\"\nname := \"Hello\"\nlibraryDependencies ++= Seq( \"org.scala-lang\" %% \"toolkit\" % \"0.1.7\", \"org.scala-lang\" %% \"toolkit-test\" % \"0.1.7\" % Test,\n) Use the reload command to reflect the change in build.sbt.","breadcrumbs":"Quick Start » sbt by example » Add a library dependency","id":"25","title":"Add a library dependency"},"26":{"body":"We can find out the current weather in New York. sbt:Hello> console\nWelcome to Scala 3.3.3 (1.8.0_402, Java OpenJDK 64-Bit Server VM).\nType in expressions for evaluation. Or try :help. scala>\nimport sttp.client4.quick.*\nimport sttp.client4.Response val newYorkLatitude: Double = 40.7143\nval newYorkLongitude: Double = -74.006\nval response: Response[String] = quickRequest .get( uri\"https://api.open-meteo.com/v1/forecast?latitude=\\$newYorkLatitude&longitude=\\$newYorkLongitude¤t_weather=true\" ) .send() println(ujson.read(response.body).render(indent = 2)) // press Ctrl+D // Exiting paste mode, now interpreting. { \"latitude\": 40.710335, \"longitude\": -73.99307, \"generationtime_ms\": 0.36704540252685547, \"utc_offset_seconds\": 0, \"timezone\": \"GMT\", \"timezone_abbreviation\": \"GMT\", \"elevation\": 51, \"current_weather\": { \"temperature\": 21.3, \"windspeed\": 16.7, \"winddirection\": 205, \"weathercode\": 3, \"is_day\": 1, \"time\": \"2023-08-04T10:00\" }\n}\nimport sttp.client4.quick._\nimport sttp.client4.Response\nval newYorkLatitude: Double = 40.7143\nval newYorkLongitude: Double = -74.006\nval response: sttp.client4.Response[String] = Response({\"latitude\":40.710335,\"longitude\":-73.99307,\"generationtime_ms\":0.36704540252685547,\"utc_offset_seconds\":0,\"timezone\":\"GMT\",\"timezone_abbreviation\":\"GMT\",\"elevation\":51.0,\"current_weather\":{\"temperature\":21.3,\"windspeed\":16.7,\"winddirection\":205.0,\"weathercode\":3,\"is_day\":1,\"time\":\"2023-08-04T10:00\"}},200,,List(:status: 200, content-encoding: deflate, content-type: application/json; charset=utf-8, date: Fri, 04 Aug 2023 10:09:11 GMT),List(),RequestMetadata(GET,https://api.open-meteo.com/v1/forecast?latitude=40.7143&longitude... scala> :q // to quit","breadcrumbs":"Quick Start » sbt by example » Use Scala REPL","id":"26","title":"Use Scala REPL"},"27":{"body":"Change build.sbt as follows: scalaVersion := \"3.3.3\"\norganization := \"com.example\" lazy val hello = project .in(file(\".\")) .settings( name := \"Hello\", libraryDependencies ++= Seq( \"org.scala-lang\" %% \"toolkit\" % \"0.1.7\", \"org.scala-lang\" %% \"toolkit-test\" % \"0.1.7\" % Test ) ) lazy val helloCore = project .in(file(\"core\")) .settings( name := \"Hello Core\" ) Use the reload command to reflect the change in build.sbt.","breadcrumbs":"Quick Start » sbt by example » Make a subproject","id":"27","title":"Make a subproject"},"28":{"body":"sbt:Hello> projects\n[info] In file:/tmp/foo-build/\n[info] * hello\n[info] helloCore","breadcrumbs":"Quick Start » sbt by example » List all subprojects","id":"28","title":"List all subprojects"},"29":{"body":"sbt:Hello> helloCore/compile","breadcrumbs":"Quick Start » sbt by example » Compile the subproject","id":"29","title":"Compile the subproject"},"3":{"body":"To install both JDK and sbt, consider using SDKMAN . sdk install java $(sdk list java | grep -o \"\\b8\\.[0-9]*\\.[0-9]*\\-tem\" | head -1)\nsdk install sbt","breadcrumbs":"Quick Start » Installing sbt runner » Installing from SDKMAN","id":"3","title":"Installing from SDKMAN"},"30":{"body":"Change build.sbt as follows: scalaVersion := \"3.3.3\"\norganization := \"com.example\" val toolkitTest = \"org.scala-lang\" %% \"toolkit-test\" % \"0.1.7\" lazy val hello = project .in(file(\".\")) .settings( name := \"Hello\", libraryDependencies ++= Seq( \"org.scala-lang\" %% \"toolkit\" % \"0.1.7\", toolkitTest % Test ) ) lazy val helloCore = project .in(file(\"core\")) .settings( name := \"Hello Core\", libraryDependencies += toolkitTest % Test )","breadcrumbs":"Quick Start » sbt by example » Add toolkit-test to the subproject","id":"30","title":"Add toolkit-test to the subproject"},"31":{"body":"Set aggregate so that the command sent to hello is broadcast to helloCore too: scalaVersion := \"3.3.3\"\norganization := \"com.example\" val toolkitTest = \"org.scala-lang\" %% \"toolkit-test\" % \"0.1.7\" lazy val hello = project .in(file(\".\")) .aggregate(helloCore) .settings( name := \"Hello\", libraryDependencies ++= Seq( \"org.scala-lang\" %% \"toolkit\" % \"0.1.7\", toolkitTest % Test ) ) lazy val helloCore = project .in(file(\"core\")) .settings( name := \"Hello Core\", libraryDependencies += toolkitTest % Test ) After reload, ~testQuick now runs on both subprojects: sbt:Hello> ~testQuick Press Enter to exit the continuous test.","breadcrumbs":"Quick Start » sbt by example » Broadcast commands","id":"31","title":"Broadcast commands"},"32":{"body":"Use .dependsOn(...) to add a dependency on other subprojects. Also let's move the toolkit dependency to helloCore. scalaVersion := \"3.3.3\"\norganization := \"com.example\" val toolkitTest = \"org.scala-lang\" %% \"toolkit-test\" % \"0.1.7\" lazy val hello = project .in(file(\".\")) .aggregate(helloCore) .dependsOn(helloCore) .settings( name := \"Hello\", libraryDependencies += toolkitTest % Test ) lazy val helloCore = project .in(file(\"core\")) .settings( name := \"Hello Core\", libraryDependencies += \"org.scala-lang\" %% \"toolkit\" % \"0.1.7\", libraryDependencies += toolkitTest % Test )","breadcrumbs":"Quick Start » sbt by example » Make hello depend on helloCore","id":"32","title":"Make hello depend on helloCore"},"33":{"body":"Let's use uJson from the toolkit in helloCore. Add core/src/main/scala/example/core/Weather.scala: package example.core import sttp.client4.quick._\nimport sttp.client4.Response object Weather: def temp() = val response: Response[String] = quickRequest .get( uri\"https://api.open-meteo.com/v1/forecast?latitude=40.7143&longitude=-74.006¤t_weather=true\" ) .send() val json = ujson.read(response.body) json.obj(\"current_weather\")(\"temperature\").num\nend Weather Next, change src/main/scala/example/Hello.scala as follows: package example import example.core.Weather @main def main(args: String*): Unit = val temp = Weather.temp() println(s\"Hello! The current temperature in New York is $temp C.\") Let's run the app to see if it worked: sbt:Hello> run\n[info] compiling 1 Scala source to /tmp/foo-build/core/target/scala-2.13/classes ...\n[info] compiling 1 Scala source to /tmp/foo-build/target/scala-2.13/classes ...\n[info] running example.Hello\nHello! The current temperature in New York is 22.7 C.","breadcrumbs":"Quick Start » sbt by example » Parse JSON using uJson","id":"33","title":"Parse JSON using uJson"},"34":{"body":"sbt:Hello> ++3.3.3!\n[info] Forcing Scala version to 3.3.3 on all projects.\n[info] Reapplying settings...\n[info] Set current project to Hello (in build file:/tmp/foo-build/) Check the scalaVersion setting: sbt:Hello> scalaVersion\n[info] helloCore / scalaVersion\n[info] 3.3.3\n[info] scalaVersion\n[info] 3.3.3 This setting will go away after reload.","breadcrumbs":"Quick Start » sbt by example » Switch scalaVersion temporarily","id":"34","title":"Switch scalaVersion temporarily"},"35":{"body":"You can also run sbt in batch mode, passing sbt commands directly from the terminal. $ sbt clean \"testOnly HelloSuite\" Note : Running in batch mode requires JVM spinup and JIT each time, so your build will run much slower . For day-to-day coding, we recommend using the sbt shell or a continuous test like ~testQuick.","breadcrumbs":"Quick Start » sbt by example » Batch mode","id":"35","title":"Batch mode"},"36":{"body":"You can use the sbt new command to quickly setup a simple \"Hello world\" build. $ sbt new scala/scala-seed.g8\n....\nA minimal Scala project. name [My Something Project]: hello Template applied in ./hello When prompted for the project name, type hello. This will create a new project under a directory named hello.","breadcrumbs":"Quick Start » sbt by example » sbt new command","id":"36","title":"sbt new command"},"37":{"body":"This page is based on the Essential sbt tutorial written by William \"Scala William\" Narmontas.","breadcrumbs":"Quick Start » sbt by example » Credits","id":"37","title":"Credits"},"38":{"body":"sbt uses a small number of concepts to support flexible and powerful build definitions. There are not that many concepts, but sbt is not exactly like other build systems and there are details you will stumble on if you haven't read the documentation. The Getting Started Guide covers the concepts you need to know to create and maintain an sbt build definition. It is highly recommended to read the Getting Started Guide!","breadcrumbs":"Getting Started » Getting Started with sbt","id":"38","title":"Getting Started with sbt"},"39":{"body":"","breadcrumbs":"Getting Started » Why sbt exists » Why sbt exists","id":"39","title":"Why sbt exists"},"4":{"body":"sbt-1.10.0.zip sbt-1.10.0.tgz sbt-1.10.0.msi","breadcrumbs":"Quick Start » Installing sbt runner » Universal packages","id":"4","title":"Universal packages"},"40":{"body":"In Scala, a library or a program is compiled using the Scala compiler, scalac, as documented in the Scala 3 Book : @main def hello() = println(\"Hello, World!\") $ scalac hello.scala\n$ scala hello\nHello, World! This process gets tedious and slow if we were to invoke scalac directly since we'd have to pass all the Scala source file names. Furthermore, most non-trivial programs will likely have library dependencies, and will therefore also depend transitively on their dependencies. This is doubly complicated for Scala ecosystem because we have Scala 2.12, 2.13 ecosystem, Scala 3.x ecosystem, JVM, JS, and Native platforms. Rather than working with JAR files and scalac, we can avoid manual toil by introducing a higher-level subproject abstraction and by using a build tool.","breadcrumbs":"Getting Started » Why sbt exists » Preliminaries","id":"40","title":"Preliminaries"},"41":{"body":"sbt is a simple build tool created for Scala and Java. It lets us declare subprojects and their various dependencies and custom tasks to ensure that we'll always get a fast, repeatable build. To accomplish this goal, sbt does several things: The version of sbt itself is tracked in project/build.properties. Defines a domain-specific language (DSL) called build.sbt DSL that can declare the Scala version and other subproject information in build.sbt. Uses Coursier to fetch subprojects dependencies and their dependencies. Invokes Zinc to incrementally compile Scala and Java sources. Automatically runs tasks in parallel whenever possible. Defines conventions on how packages are published to Maven repositories to interoperate with the wider JVM ecosystem. To a large extent, sbt standardizes the commands needed to build a given program or library.","breadcrumbs":"Getting Started » Why sbt exists » sbt","id":"41","title":"sbt"},"42":{"body":"build.sbt DSL makes sbt a unique build tool, as opposed to other tools that use configuration file formats like YAML, TOML, and XML. Originally developed beween 2010 and 2013, build.sbt can start almost like a YAML file, declaring just scalaVersion and libraryDependencies, but it can supports more features to keep the build definition organized as the build grows larger: To avoid repeating the same information, like the version number for a library, build.sbt can declare variables using val. Uses Scala language constructs like if to define settings and tasks, when needed. Statically typed settings and tasks, to catch typos and type errors before the build starts. The type also helps passing data from one task from another. Provides structured concurrency via Initialized[Task[A]]. The DSL uses direct style .value syntax to concisely define task graphs. Enpowers the community to extend sbt with plugins that provide custom tasks or language extensions like Scala.JS.","breadcrumbs":"Getting Started » Why sbt exists » Why build.sbt DSL?","id":"42","title":"Why build.sbt DSL?"},"43":{"body":"To start a new build with sbt, use sbt new. $ mkdir /tmp/foo\n$ cd /tmp/foo\n$ sbt new Welcome to sbt new!\nHere are some templates to get started: a) scala/toolkit.local - Scala Toolkit (beta) by Scala Center and VirtusLab b) typelevel/toolkit.local - Toolkit to start building Typelevel apps c) sbt/cross-platform.local - A cross-JVM/JS/Native project d) scala/scala3.g8 - Scala 3 seed template e) scala/scala-seed.g8 - Scala 2 seed template f) playframework/play-scala-seed.g8 - A Play project in Scala g) playframework/play-java-seed.g8 - A Play project in Java i) softwaremill/tapir.g8 - A tapir project using Netty m) scala-js/vite.g8 - A Scala.JS + Vite project n) holdenk/sparkProjectTemplate.g8 - A Scala Spark project o) spotify/scio.g8 - A Scio project p) disneystreaming/smithy4s.g8 - A Smithy4s project q) quit\nSelect a template: If you select \"a\", you will be prompted by more questions: Select a template: a\nScala version (default: 3.3.0):\nScala Toolkit version (default: 0.2.0): Hit return key to select the default values. [info] Updated file /private/tmp/bar/project/build.properties: set sbt.version to 1.9.8\n[info] welcome to sbt 1.9.8 (Azul Systems, Inc. Java 1.8.0_352)\n....\n[info] set current project to bar (in build file:/private/tmp/foo/)\n[info] sbt server started at local:///Users/eed3si9n/.sbt/1.0/server/d0ac1409c0117a949d47/sock\n[info] started sbt server\nsbt:bar> exit\n[info] shutting down sbt server Here are the files that are created by this template: .\n├── build.sbt\n├── project\n│ └── build.properties\n├── src\n│ ├── main\n│ │ └── scala\n│ │ └── example\n│ │ └── Main.scala\n│ └── test\n│ └── scala\n│ └── example\n│ └── ExampleSuite.scala\n└── target Let's take a look at the build.sbt file: val toolkitV = \"0.2.0\"\nval toolkit = \"org.scala-lang\" %% \"toolkit\" % toolkitV\nval toolkitTest = \"org.scala-lang\" %% \"toolkit-test\" % toolkitV scalaVersion := \"3.3.0\"\nlibraryDependencies += toolkit\nlibraryDependencies += (toolkitTest % Test) This is called a build definition , and it contains the information sbt needs to compile your project. This is written in .sbt format, a subset of Scala language. Here's what's in src/main/scala/example/Main.scala: package example @main def main(args: String*): Unit = println(s\"Hello ${args.mkString}\") This is a Hello world template. We can run it from the sbt shell by starting sbt --client and typing run inside the shell: $ sbt --client\n[info] entering *experimental* thin client - BEEP WHIRR\n[info] server was not detected. starting an instance\n....\ninfo] terminate the server with `shutdown`\n[info] disconnect from the server with `exit`\nsbt:bar> run Raj\n[info] running example.main Raj\nHello Raj\n[success] Total time: 0 s, completed Feb 18, 2024 2:38:10 PM","breadcrumbs":"Getting Started » Creating a new build » Creating a new build","id":"43","title":"Creating a new build"},"44":{"body":"In addition to a few .local templates, sbt new integrates with Giter8 , and open templating system that uses GitHub to host templates. For example, scala/scala3.g8 is maintained by the Scala team to create a new Scala 3 build: $ /tmp\n$ sbt new scala/scala3.g8 Giter8 wiki lists over 100 templates that can jump start your new build.","breadcrumbs":"Getting Started » Creating a new build » Giter8 templates","id":"44","title":"Giter8 templates"},"45":{"body":"","breadcrumbs":"Getting Started » sbt components » sbt components","id":"45","title":"sbt components"},"46":{"body":"An sbt build is executed using the sbt runner, also called \"sbt-the-shell-script\" to distinguish from other components. It's important to note is that sbt runner is designed to run any version of sbt.","breadcrumbs":"Getting Started » sbt components » sbt runner","id":"46","title":"sbt runner"},"47":{"body":"The sbt runner executes a subcomponent called sbt launcher, which reads project/build.properties to determine the sbt version for the build, and downloads the artifacts if they haven't been cached: sbt.version=2.0.0-alpha7 This means that: Anyone who checkouts your build would get the same sbt version, regardless of sbt runner they may have installed on their machines. The change of sbt version can be tracked in a version control system, like git.","breadcrumbs":"Getting Started » sbt components » Specifying sbt version with project/build.properties","id":"47","title":"Specifying sbt version with project/build.properties"},"48":{"body":"sbtn (native thin client) is a subcomponent of the sbt runner, called when you pass --client flag to the sbt runner, and is used to send commands to the sbt server. It is called sbtn because it is compiled to native code using GraalVM native-image. The protocol between sbtn and sbt server is stable enough that it should work between most recent versions of sbt.","breadcrumbs":"Getting Started » sbt components » sbtn (sbt --client)","id":"48","title":"sbtn (sbt --client)"},"49":{"body":"The sbt server is the actual build tool whose version is specified using project/build.properties. The sbt server acts as a cashier to take commands from sbtn and editors.","breadcrumbs":"Getting Started » sbt components » sbt server","id":"49","title":"sbt server"},"5":{"body":"sbt --script-version\n# 1.10.0","breadcrumbs":"Quick Start » Installing sbt runner » Verify the sbt runner","id":"5","title":"Verify the sbt runner"},"50":{"body":"The sbt server runs Couriser as a subcomponent to resolve Scala library, Scala compiler, and any other library dependencies your build needs.","breadcrumbs":"Getting Started » sbt components » Coursier","id":"50","title":"Coursier"},"51":{"body":"Zinc is the incremental compiler for Scala, developed and maintained by sbt project. An often overlooked aspect of Zinc is that Zinc provides a stable API to invoke any modern versions of Scala compiler. Combined with the fact that Coursier can resolve any Scala version, with sbt we can invoke any modern versions of Scala just by writing a single line build.sbt: scalaVersion := \"3.3.3\"","breadcrumbs":"Getting Started » sbt components » Zinc","id":"51","title":"Zinc"},"52":{"body":"The sbt server supports Build Server Protocol (BSP) to list build targets, build them, etc. This allows IDEs like IntelliJ and Metals to communicate with a running sbt server programmatically.","breadcrumbs":"Getting Started » sbt components » BSP server","id":"52","title":"BSP server"},"53":{"body":"Let's look at three ways of connecting to the sbt server.","breadcrumbs":"Getting Started » sbt components » Connecting to sbt server","id":"53","title":"Connecting to sbt server"},"54":{"body":"Run sbt --client in the working directory of your build: sbt --client This should display something like the following: $ sbt --client\n[info] server was not detected. starting an instance\n[info] welcome to sbt 2.0.0-alpha7 (Azul Systems, Inc. Java 1.8.0_352)\n[info] loading project definition from /private/tmp/bar/project\n[info] loading settings for project bar from build.sbt ...\n[info] set current project to bar (in build file:/private/tmp/bar/)\n[info] sbt server started at local:///Users/eed3si9n/.sbt/2.0.0-alpha7/server/d0ac1409c0117a949d47/sock\n[info] started sbt server\n[info] terminate the server with `shutdown`\n[info] disconnect from the server with `exit`\nsbt:bar> Running sbt with no command line arguments starts sbt shell. sbt shell has a command prompt (with tab completion and history!). For example, you could type compile at the sbt shell: sbt:bar> compile To compile again, press up arrow and then enter. To leave sbt shell, type exit or use Ctrl-D (Unix) or Ctrl-Z (Windows).","breadcrumbs":"Getting Started » sbt components » sbt shell using sbtn","id":"54","title":"sbt shell using sbtn"},"55":{"body":"You can also run sbt in batch mode: sbt --client compile\nsbt --client testOnly TestA $ sbt --client compile\n> compile","breadcrumbs":"Getting Started » sbt components » Batch mode using sbtn","id":"55","title":"Batch mode using sbtn"},"56":{"body":"Run the following to shutdown all sbt servers on your machine: sbt shutdownall Or the following to shutdown just the current one: sbt --client shutdown","breadcrumbs":"Getting Started » sbt components » Shutting down sbt server","id":"56","title":"Shutting down sbt server"},"57":{"body":"This page describes how to use sbt once you have set up your project. This page assumes you've read sbt components . If you pull a repository that uses sbt, it's fairly easy to get started. First, get the package from GitHub, or some other repository. $ git clone https://github.com/scalanlp/breeze.git\n$ cd breeze","breadcrumbs":"Getting Started » Working with an existing build » Working with an existing build","id":"57","title":"Working with an existing build"},"58":{"body":"As mentioned in sbt components , start an sbt shell: $ sbt --client This should display something like the following: $ sbt --client\n[info] entering *experimental* thin client - BEEP WHIRR\n[info] server was not detected. starting an instance\n[info] welcome to sbt 1.5.5 (Azul Systems, Inc. Java 1.8.0_352)\n[info] loading global plugins from /Users/eed3si9n/.sbt/1.0/plugins\n[info] loading settings for project breeze-build from plugins.sbt ...\n[info] loading project definition from /private/tmp/breeze/project\nDownloading https://repo1.maven.org/maven2/org/scalanlp/sbt-breeze-expand-codegen_2.12_1.0/0.2.1/sbt-breeze-expand-codegen-0.2.1.pom\n....\n[info] sbt server started at local:///Users/eed3si9n/.sbt/1.0/server/dd982e07e85c7de1b618/sock\n[info] terminate the server with `shutdown`\n[info] disconnect from the server with `exit`\nsbt:breeze-parent>","breadcrumbs":"Getting Started » Working with an existing build » sbt shell with sbtn","id":"58","title":"sbt shell with sbtn"},"59":{"body":"Let's explore the build by listing out the subprojects with projects command: sbt:breeze-parent> projects\n[info] In file:/private/tmp/breeze/\n[info] benchmark\n[info] macros\n[info] math\n[info] natives\n[info] * root\n[info] viz This shows that this build has 6 subprojects, including the current subproject called root.","breadcrumbs":"Getting Started » Working with an existing build » projects command","id":"59","title":"projects command"},"6":{"body":"This page assumes you've installed sbt runner . Let's start with examples rather than explaining how sbt works or why.","breadcrumbs":"Quick Start » sbt by example » sbt by example","id":"6","title":"sbt by example"},"60":{"body":"Similarly, we can list the tasks availble to this build using tasks command: sbt:breeze-parent> tasks This is a list of tasks defined for the current project.\nIt does not list the scopes the tasks are defined in; use the 'inspect' command for that.\nTasks produce values. Use the 'show' command to run the task and print the resulting value. bgRun Start an application's default main class as a background job bgRunMain Start a provided main class as a background job clean Deletes files produced by the build, such as generated sources, compiled classes, and task caches. compile Compiles sources. console Starts the Scala interpreter with the project classes on the classpath. consoleProject Starts the Scala interpreter with the sbt and the build definition on the classpath and useful imports. consoleQuick Starts the Scala interpreter with the project dependencies on the classpath. copyResources Copies resources to the output directory. doc Generates API documentation. package Produces the main artifact, such as a binary jar. This is typically an alias for the task that actually does the packaging. packageBin Produces a main artifact, such as a binary jar. packageDoc Produces a documentation artifact, such as a jar containing API documentation. packageSrc Produces a source artifact, such as a jar containing sources and resources. publish Publishes artifacts to a repository. publishLocal Publishes artifacts to the local Ivy repository. publishM2 Publishes artifacts to the local Maven repository. run Runs a main class, passing along arguments provided on the command line. runMain Runs the main class selected by the first argument, passing the remaining arguments to the main method. test Executes all tests. testOnly Executes the tests provided as arguments or all tests if no arguments are provided. testQuick Executes the tests that either failed before, were not run or whose transitive dependencies changed, among those provided as arguments. update Resolves and optionally retrieves dependencies, producing a report. More tasks may be viewed by increasing verbosity. See 'help tasks'","breadcrumbs":"Getting Started » Working with an existing build » tasks command","id":"60","title":"tasks command"},"61":{"body":"The compile tasks compiles the sources, after resolving and downloading the library dependendies. > compile This should display something like the following: sbt:breeze-parent> compile\n[info] compiling 341 Scala sources and 1 Java source to /private/tmp/breeze/math/target/scala-3.1.3/classes ... | => math / Compile / compileIncremental 51s","breadcrumbs":"Getting Started » Working with an existing build » compile","id":"61","title":"compile"},"62":{"body":"The run task runs the main class for the subproject. In the sbt shell, type math/run: > math/run math/run means run task, scoped to math subproject. This should display something like the following: sbt:breeze-parent> math/run\n[info] Scala version: 3.1.3 true\n.... Multiple main classes detected. Select one to run: [1] breeze.optimize.linear.NNLS [2] breeze.optimize.proximal.NonlinearMinimizer [3] breeze.optimize.proximal.QuadraticMinimizer [4] breeze.util.UpdateSerializedObjects Enter number: Enter 1 at the prompt.","breadcrumbs":"Getting Started » Working with an existing build » run","id":"62","title":"run"},"63":{"body":"The testQuick task tests either the tests that failed before, were not run, or whose transitive dependencies changed. > math/testQuick This should display something like the following: sbt:breeze-parent> math/testQuick\n[info] FeatureVectorTest:\n[info] - axpy fv dv (1 second, 106 milliseconds)\n[info] - axpy fv vb (9 milliseconds)\n[info] - DM mult (19 milliseconds)\n[info] - CSC mult (32 milliseconds)\n[info] - DM trans mult (4 milliseconds)\n....\n[info] Run completed in 58 seconds, 183 milliseconds.\n[info] Total number of tests run: 1285\n[info] Suites: completed 168, aborted 0\n[info] Tests: succeeded 1285, failed 0, canceled 0, ignored 0, pending 0\n[info] All tests passed.\n[success] Total time: 130 s (02:10), completed Feb 19, 2024","breadcrumbs":"Getting Started » Working with an existing build » testQuick","id":"63","title":"testQuick"},"64":{"body":"To speed up your edit-compile-test cycle, you can ask sbt to automatically recompile or run tests whenever you save a source file. Make a command run when one or more source files change by prefixing the command with ~. For example, in sbt shell try: > ~testQuick Press enter to stop watching for changes. You can use the ~ prefix with either sbt shell or batch mode.","breadcrumbs":"Getting Started » Working with an existing build » Watch (tilde) command","id":"64","title":"Watch (tilde) command"},"65":{"body":"This page discusses the build.sbt build definition.","breadcrumbs":"Getting Started » Build definition basics » Build definition basics","id":"65","title":"Build definition basics"},"66":{"body":"A build definition is defined in build.sbt, and it consists of a set of projects (of type Project ). Because the term project can be ambiguous, we often call it a subproject in this guide. For instance, in build.sbt you define the subproject located in the current directory like this: scalaVersion := \"3.3.3\"\nname := \"Hello\" or more explicitly: lazy val root = (project in file(\".\")) .settings( scalaVersion := \"3.3.3\", name := \"Hello\", ) Each subproject is configured by key-value pairs. For example, one key is name and it maps to a string value, the name of your subproject. The key-value pairs are listed under the .settings(...) method.","breadcrumbs":"Getting Started » Build definition basics » What is a build definition?","id":"66","title":"What is a build definition?"},"67":{"body":"build.sbt defines subprojects using a DSL called build.sbt DSL, which is based on Scala. Initially you can use build.sbt DSL, like a YAML file, declaring just scalaVersion and libraryDependencies, but it can supports more features to keep the build definition organized as the build grows larger.","breadcrumbs":"Getting Started » Build definition basics » build.sbt DSL","id":"67","title":"build.sbt DSL"},"68":{"body":"Let's take a closer look at the build.sbt DSL: organization := \"com.example\"\n^^^^^^^^^^^^ ^^^^^^^^ ^^^^^^^^^^^^^\nkey operator (setting/task) body Each entry is called a setting expression . Some among them are also called task expressions. We will see more on the difference later in this page. A setting expression consists of three parts: Left-hand side is a key . Operator , which in this case is := Right-hand side is called the body , or the setting/task body . On the left-hand side, name, version, and scalaVersion are keys . A key is an instance of SettingKey[A] , TaskKey[A] , or InputKey[A] where A is the expected value type. Because key name is typed to SettingKey[String], the := operator on name is also typed specifically to String. If you use the wrong value type, the build definition will not compile: name := 42 // will not compile","breadcrumbs":"Getting Started » Build definition basics » Typed setting expression","id":"68","title":"Typed setting expression"},"69":{"body":"To avoid repeating the same information, like the version number for a library, build.sbt may be interspersed with vals, lazy vals, and defs. val toolkitV = \"0.2.0\"\nval toolkit = \"org.scala-lang\" %% \"toolkit\" % toolkitV\nval toolkitTest = \"org.scala-lang\" %% \"toolkit-test\" % toolkitV scalaVersion := \"3.3.3\"\nlibraryDependencies += toolkit\nlibraryDependencies += (toolkitTest % Test) In the above, val defines a variable, which are initialized from the top to bottom. This means that toolkitV must be defined before it is referenced. Here's a bad example: // bad example\nval toolkit = \"org.scala-lang\" %% \"toolkit\" % toolkitV // uninitialized reference!\nval toolkitTest = \"org.scala-lang\" %% \"toolkit-test\" % toolkitV // uninitialized reference!\nval toolkitV = \"0.2.0\" sbt will fail to load with java.lang.ExceptionInInitializerError cased by a NullPointerException if your build.sbt contains an uninitialized forward reference. One way to let the compiler fix this is to define the variables as lazy: lazy val toolkit = \"org.scala-lang\" %% \"toolkit\" % toolkitV\nlazy val toolkitTest = \"org.scala-lang\" %% \"toolkit-test\" % toolkitV\nlazy val toolkitV = \"0.2.0\" Some frown upon gratuitous lazy vals, but Scala 3 lazy vals are efficient, and we think it makes the build definition more robust for copy-pasting. Note Top-level objects and classes are not allowed in build.sbt. Those should go in the project/ directory as Scala source files.","breadcrumbs":"Getting Started » Build definition basics » vals and lazy vals","id":"69","title":"vals and lazy vals"},"7":{"body":"mkdir foo-build\ncd foo-build\ntouch build.sbt\nmkdir project\necho \"sbt.version=2.0.0-alpha7\" > project/build.properties","breadcrumbs":"Quick Start » sbt by example » Create a minimum sbt build","id":"7","title":"Create a minimum sbt build"},"70":{"body":"This page explains the basics of library dependency management using sbt. sbt uses Coursier to implement managed dependencies, so if you're familiar with package managers like Coursier, npm, PIP, etc you won't have much trouble.","breadcrumbs":"Getting Started » Library dependency basics » Library dependency basics","id":"70","title":"Library dependency basics"},"71":{"body":"Declaring a dependency looks like this, where groupId, artifactId, and revision are strings: libraryDependencies += groupID % artifactID % revision or like this, where configuration can be a string or a Configuration value (such as Test): libraryDependencies += groupID % artifactID % revision % configuration When you run: > compile sbt will automatically resolve the dependencies and download the JAR files.","breadcrumbs":"Getting Started » Library dependency basics » The libraryDependencies key","id":"71","title":"The libraryDependencies key"},"72":{"body":"If you use organization %% moduleName % version rather than organization % moduleName % version (the difference is the double %% after the organization), sbt will add your project's binary Scala version to the artifact name. This is just a shortcut. You could write this without the %%: libraryDependencies += \"org.scala-lang\" % \"toolkit_3\" % \"0.2.0\" Assuming the scalaVersion for your build is 3.x, the following is identical (note the double %% after \"toolkit\"): libraryDependencies += \"org.scala-lang\" %% \"toolkit\" % \"0.2.0\" The idea is that many dependencies are compiled for multiple Scala versions, and you'd like to get the one that matches your project to ensure binary compatibility.","breadcrumbs":"Getting Started » Library dependency basics » Getting the right Scala version with %%","id":"72","title":"Getting the right Scala version with %%"},"73":{"body":".scala files under project becomes part of the build definition, which we can use to track dependencies in one place by creating a file named project/Dependencies.scala. // place this file at project/Dependencies.scala import sbt.* object Dependencies: // versions lazy val toolkitV = \"0.2.0\" // libraries val toolkit = \"org.scala-lang\" %% \"toolkit\" % toolkitV val toolkitTest = \"org.scala-lang\" %% \"toolkit-test\" % toolkitV\nend Dependencies The Dependencies object will be available in build.sbt. To make it easier to use the vals defined in it, import Dependencies.* in your build.sbt file. import Dependencies.* scalaVersion := \"3.3.3\"\nname := \"something\"\nlibraryDependencies += toolkit\nlibraryDependencies += toolkitTest % Test","breadcrumbs":"Getting Started » Library dependency basics » Tracking dependencies in one place","id":"73","title":"Tracking dependencies in one place"},"74":{"body":"Type in Compile/dependencyTree in the sbt shell to show the library dependency tree, including the transitive dependencies: > Compile/dependencyTree This should display something like the following: sbt:bar> Compile/dependencyTree\n[info] default:bar_3:0.1.0-SNAPSHOT\n[info] +-org.scala-lang:scala3-library_3:3.3.1 [S]\n[info] +-org.scala-lang:toolkit_3:0.2.0\n[info] +-com.lihaoyi:os-lib_3:0.9.1\n[info] | +-com.lihaoyi:geny_3:1.0.0\n[info] | | +-org.scala-lang:scala3-library_3:3.1.3 (evicted by: 3.3.1)\n[info] | | +-org.scala-lang:scala3-library_3:3.3.1 [S]\n....","breadcrumbs":"Getting Started » Library dependency basics » Viewing library dependencies","id":"74","title":"Viewing library dependencies"},"75":{"body":"While a simple program can start out as a single-project build, it's more common for a build to split into smaller, multiple subprojects. Each subproject in a build has its own source directories, generates its own JAR file when you run packageBin, and in general works like any other project. A project is defined by declaring a lazy val of type Project . For example, : scalaVersion := \"3.3.3\" lazy val core = (project in file(\"core\")) .settings( name := \"core\", ) lazy val util = (project in file(\"util\")) .dependsOn(core) .settings( name := \"util\", ) The name of the val is used as the subproject's ID, which is used to refer to the subproject at the sbt shell.","breadcrumbs":"Getting Started » Multi project basics » Multi project basics","id":"75","title":"Multi project basics"},"76":{"body":"sbt uses conventions for file placement to make it easy to dive into a new sbt build: .\n├── build.sbt\n├── project/\n│ ├── build.properties\n│ ├── Dependencies.scala\n│ └── plugins.sbt\n├── src/\n│ ├── main/\n│ │ ├── java/\n│ │ ├── resources/\n│ │ ├── scala/\n│ │ └── scala-2.13/\n│ └── test/\n│ ├── java/\n│ ├── resources/\n│ ├── scala/\n│ └── scala-2.13/\n├── subproject-core/\n│ └── src/\n│ ├── main/\n│ └── test/\n├─── subproject-util/\n│ └── src/\n│ ├── main/\n│ └── test/\n└── target/ The local root directory . is the starting point of your build. In sbt's terminology, the base directory is the directory containing the subproject. In the above, ., subproject-core, and subproject-util are base directories. The build definition is described in build.sbt (actually any files named *.sbt) in the local root directory. The sbt version is tracked in project/build.properties. Generated files (compiled classes, packaged jars, managed files, caches, and documentation) will be written to the target directory by default.","breadcrumbs":"Getting Started » Build layout » Build layout","id":"76","title":"Build layout"},"77":{"body":"In addition to build.sbt, project directory can contain .scala files that define helper objects and one-off plugins. See organizing the build for more. .\n├── build.sbt\n├── project/\n│ ├── build.properties\n│ ├── Dependencies.scala\n│ └── plugins.sbt\n.... You may see .sbt files inside project/ but they are not equivalent to .sbt files in the project's base directory. Explaining this will come later , since you'll need some background information first.","breadcrumbs":"Getting Started » Build layout » Build support files","id":"77","title":"Build support files"},"78":{"body":"sbt uses the same directory structure as Maven for source files by default (all paths are relative to the base directory): ....\n├── src/\n│ ├── main/\n│ │ ├── java/ \n│ │ ├── resources/ \n│ │ ├── scala/ \n│ │ └── scala-2.13/ \n│ └── test/\n│ ├── java/ \n│ ├── resources/ \n│ ├── scala/ \n│ └── scala-2.13/ \n.... Other directories in src/ will be ignored. Additionally, all hidden directories will be ignored. Source code can be placed in the project's base directory as hello/app.scala, which may be OK for small projects, though for normal projects people tend to keep the projects in the src/main/ directory to keep things neat. The fact that you can place *.scala source code in the base directory might seem like an odd trick, but this fact becomes relevant later .","breadcrumbs":"Getting Started » Build layout » Source code","id":"78","title":"Source code"},"79":{"body":"Your .gitignore (or equivalent for other version control systems) should contain: target/ Note that this deliberately has a trailing / (to match only directories) and it deliberately has no leading / (to match project/target/ in addition to plain target/). sbt automates building, testing, and deployment of your subprojects from information in the build definition.","breadcrumbs":"Getting Started » Build layout » Configuring version control","id":"79","title":"Configuring version control"},"8":{"body":"$ sbt\n[info] welcome to sbt 2.0.0-alpha7 (Azul Systems, Inc. Java)\n....\n[info] started sbt server\nsbt:foo-build>","breadcrumbs":"Quick Start » sbt by example » Start sbt shell","id":"8","title":"Start sbt shell"},"80":{"body":"While it's possible to code Scala with just an editor and sbt, most programmers today use an Integrated Development Environment, or IDE for short. Two of the popular IDEs in Scala are Metals and IntelliJ IDEA , and they both integrate with sbt builds. Using sbt as Metals build server Importing to IntelliJ IDEA Using sbt as IntelliJ IDEA build server Using Neovim as Metals frontend","breadcrumbs":"Getting Started » sbt with IDEs » sbt with IDEs","id":"80","title":"sbt with IDEs"},"81":{"body":"Metals is an open source language server for Scala, which can act as the backend for VS Code and other editors that support LSP . Metals in turn supports different build servers including sbt via the Build Server Protocol (BSP). To use Metals on VS Code: Install Metals from Extensions tab: Metals Open a directory containing a build.sbt file. From the menubar, run View > Command Palette... (Cmd-Shift-P on macOS) \"Metals: Switch build server\", and select \"sbt\" Metals Once the import process is complete, open a Scala file to see that code completion works: Metals Use the following setting to opt-out some of the subprojects from BSP. bspEnabled := false When you make changes to the code and save them (Cmd-S on macOS), Metals will invoke sbt to do the actual building work. Interactive debugging on VS Code Metals supports interactive debugging by setting break points in the code: Metals Interactive debugging can be started by right-clicking on an unit test, and selecting \"Debug Test.\" When the test hits a break point, you can inspect the values of the variables: Metals See Debugging page on VS Code documentation for more details on how to navigate an interactive debugging session. Logging into sbt session While Metals uses sbt as the build server, we can also log into the same sbt session using a thin client. From Terminal section, type in sbt --client Metals This lets you log into the sbt session Metals has started. In there you can call testOnly and other tasks with the code already compiled.","breadcrumbs":"Getting Started » sbt with IDEs » Using sbt as Metals build server","id":"81","title":"Using sbt as Metals build server"},"82":{"body":"IntelliJ IDEA is an IDE created by JetBrains, and the Community Edition is open source under Apache v2 license. IntelliJ integrates with many build tools, including sbt, to import the project. This is a more traditional approach that might be more reliable than using BSP approach. To import a build to IntelliJ IDEA: Install Scala plugin on the Plugins tab: IntelliJ From Projects, open a directory containing a build.sbt file. IntelliJ Once the import process is complete, open a Scala file to see that code completion works. IntelliJ Scala plugin uses its own lightweight compilation engine to detect errors, which is fast but sometimes incorrect. Per compiler-based highlighting , IntelliJ can be configured to use the Scala compiler for error highlighting. Interactive debugging with IntelliJ IDEA IntelliJ supports interactive debugging by setting break points in the code: IntelliJ Interactive debugging can be started by right-clicking on an unit test, and selecting \"Debug ''.\" Alternatively, you can click the green \"run\" icon on the left part of the editor near the unit test. When the test hits a break point, you can inspect the values of the variables: IntelliJ See Debug Code page on IntelliJ documentation for more details on how to navigate an interactive debugging session.","breadcrumbs":"Getting Started » sbt with IDEs » Importing to IntelliJ IDEA","id":"82","title":"Importing to IntelliJ IDEA"},"83":{"body":"Importing the build to IntelliJ means that you're effectively using IntelliJ as the build tool and the compiler while you code (see also compiler-based highlighting ). While many users are happy with the experience, depending on the code base some of the compilation errors may be false, it may not work well with plugins that generate sources, and generally you might want to code with the identical build semantics as sbt. Thankfully, modern IntelliJ supports alternative build servers including sbt via the Build Server Protocol (BSP). The benefit of using BSP with IntelliJ is that you're using sbt to do the actual build work, so if you are the kind of programmer who had sbt session up on the side, this avoids double compilation. Import to IntelliJ BSP with IntelliJ Reliability ✅ Reliable behavior ⚠️ Less mature. Might encounter UX issues. Responsiveness ✅ ⚠️ Correctness ⚠️ Uses its own compiler for type checking, but can be configured to use scalac ✅ Uses Zinc + Scala compiler for type checking Generated source ❌ Generated source requires resync ✅ Build reuse ❌ Using sbt side-by-side requires double build ✅ To use sbt as build server on IntelliJ: Install Scala plugin on the Plugins tab. To use the BSP approach, do not use Open button on the Project tab: IntelliJ From menubar, click New > \"Project From Existing Sources\", or Find Action (Cmd-Shift-P on macOS) and type \"Existing\" to find \"Import Project From Existing Sources\": IntelliJ Open a build.sbt file. Select BSP when prompted: IntelliJ Select sbt (recommended) as the tool to import the BSP workspace: IntelliJ Once the import process is complete, open a Scala file to see that code completion works: IntelliJ Use the following setting to opt-out some of the subprojects from BSP. bspEnabled := false Open Preferences, search BSP and check \"build automatically on file save\", and uncheck \"export sbt projects to Bloop before import\": IntelliJ When you make changes to the code and save them (Cmd-S on macOS), IntelliJ will invoke sbt to do the actual building work. See also Igal Tabachnik's Using BSP effectively in IntelliJ and Scala for more details. Logging into sbt session We can also log into the existing sbt session using the thin client. From Terminal section, type in sbt --client IntelliJ This lets you log into the sbt session IntelliJ has started. In there you can call testOnly and other tasks with the code already compiled.","breadcrumbs":"Getting Started » sbt with IDEs » Using sbt as IntelliJ IDEA build server (advanced)","id":"83","title":"Using sbt as IntelliJ IDEA build server (advanced)"},"84":{"body":"Neovim is a modern fork of Vim that supports LSP out-of-box, which means it can be configured as a frontend for Metals. Chris Kipp, who is a maintainer of Metals, created nvim-metals plugin that provides comprehensive Metals support on Neovim. To install nvim-metals, create lsp.lua under \\$XDG_CONFIG_HOME/nvim/lua/ based on Chris's lsp.lua and adjust to your preference. For example, comment out its plugins section and load the listed plugins using the plugin manager of your choice such as vim-plug. In init.vim, the file can be loaded as: lua << END\nrequire('lsp')\nEND Per lsp.lua, g:metals_status should be displayed on the status line, which can be done using lualine.nvim etc. Next, open a Scala file in an sbt build using Neovim. Run :MetalsInstall when prompted. Run :MetalsStartServer. If the status line is set up, you should see something like \"Connecting to sbt\" or \"Indexing.\" Code completion works when you're in Insert mode, and you can tab through the candidates: A build is triggered upon saving changes, and compilation errors are displayed inline: Go to definition You can jump to definition of the symbol under cursor by using gD (exact keybinding can be customized): Use Ctrl-O to return to the old buffer. Hover To display the type information of the symbol under cursor, like hovering, use K in Normal mode: Listing diagnostics To list all compilation errors and warnings, use aa: Since this is in the standard quickfix list, you can use the command such as :cnext and :cprev to nagivate through the errors and warnings. To list just the errors, use ae. Interactive debugging with Neovim Thanks to nvim-dap, Neovim supports interactive debugging. Set break points in the code using dt: Nagivate to a unit test, confirm that it's built by hovering (K), and then \"debug continue\" (dc) to start a debugger. Choose \"1: RunOrTest\" when prompted. When the test hits a break point, you can inspect the values of the variables by debug hovering (dK): \"debug continue\" (dc) again to end the session. See nvim-metals regarding further details. Logging into sbt session We can also log into the existing sbt session using the thin client. In a new vim window type :terminal to start the built-in terminal. Type in sbt --client Even though it's inside Neovim, tab completion etc works fine inside.","breadcrumbs":"Getting Started » sbt with IDEs » Using Neovim as Metals frontend (advanced)","id":"84","title":"Using Neovim as Metals frontend (advanced)"},"85":{"body":"See Installing sbt runner for the instruction on general setup. Using Coursier or SDKMAN has two advantages. They will install the official packaging by Eclipse Adoptium etc, as opposed to the \"mystery meat OpenJDK builds\" . They will install tgz packaging of sbt that contains all JAR files. (DEB and RPM packages do not to save bandwidth) This page describes alternative ways of installing the sbt runner. Note that some of the third-party packages may not provide the latest version.","breadcrumbs":"Appendix » Setup notes » Setup Notes","id":"85","title":"Setup Notes"},"86":{"body":"","breadcrumbs":"Appendix » Setup notes » OS specific setup","id":"86","title":"OS specific setup"},"87":{"body":"Homebrew $ brew install sbt Warning Homebrew maintainers have added a dependency to JDK 13 because they want to use more brew dependencies ( brew#50649 ). This causes sbt to use JDK 13 even when java available on PATH is JDK 8 or 11. To prevent sbt from running on JDK 13, install jEnv or switch to using SDKMAN .","breadcrumbs":"Appendix » Setup notes » macOS","id":"87","title":"macOS"},"88":{"body":"sbt-.msi Chocolatey > choco install sbt Scoop > scoop install sbt","breadcrumbs":"Appendix » Setup notes » Windows","id":"88","title":"Windows"},"89":{"body":"Ubuntu and other Debian-based distributions DEB package is officially supported by sbt, but it does not contain JAR files to save bandwidth. Ubuntu and other Debian-based distributions use the DEB format, but usually you don't install your software from a local DEB file. Instead they come with package managers both for the command line (e.g. apt-get, aptitude) or with a graphical user interface (e.g. Synaptic). Run the following from the terminal to install sbt (You'll need superuser privileges to do so, hence the sudo). sudo apt-get update\nsudo apt-get install apt-transport-https curl gnupg -yqq\necho \"deb https://repo.scala-sbt.org/scalasbt/debian all main\" | sudo tee /etc/apt/sources.list.d/sbt.list\necho \"deb https://repo.scala-sbt.org/scalasbt/debian /\" | sudo tee /etc/apt/sources.list.d/sbt_old.list\ncurl -sL \"https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x2EE0EA64E40A89B84B2DF73499E82A75642AC823\" | sudo -H gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/scalasbt-release.gpg --import\nsudo chmod 644 /etc/apt/trusted.gpg.d/scalasbt-release.gpg\nsudo apt-get update\nsudo apt-get install sbt Package managers will check a number of configured repositories for packages to offer for installation. You just have to add the repository to the places your package manager will check. Once sbt is installed, you'll be able to manage the package in aptitude or Synaptic after you updated their package cache. You should also be able to see the added repository at the bottom of the list in System Settings -> Software & Updates -> Other Software: Ubuntu Software & Updates Screenshot sudo apt-key adv --keyserver hkps://keyserver.ubuntu.com:443 --recv 2EE0EA64E40A89B84B2DF73499E82A75642AC823 may not work on Ubuntu Bionic LTS (18.04) since it's using a buggy GnuPG, so we are advising to use web API to download the public key in the above. Red Hat Enterprise Linux and other RPM-based distributions RPM package is officially supported by sbt, but it does not contain JAR files to save bandwidth. Red Hat Enterprise Linux and other RPM-based distributions use the RPM format. Run the following from the terminal to install sbt (You'll need superuser privileges to do so, hence the sudo). # remove old Bintray repo file\nsudo rm -f /etc/yum.repos.d/bintray-rpm.repo\ncurl -L https://www.scala-sbt.org/sbt-rpm.repo > sbt-rpm.repo\nsudo mv sbt-rpm.repo /etc/yum.repos.d/\nsudo yum install sbt On Fedora (31 and above), use sbt-rpm.repo: # remove old Bintray repo file\nsudo rm -f /etc/yum.repos.d/bintray-rpm.repo\ncurl -L https://www.scala-sbt.org/sbt-rpm.repo > sbt-rpm.repo\nsudo mv sbt-rpm.repo /etc/yum.repos.d/\nsudo dnf install sbt","breadcrumbs":"Appendix » Setup notes » Linux","id":"89","title":"Linux"},"9":{"body":"To leave sbt shell, type exit or use Ctrl+D (Unix) or Ctrl+Z (Windows). sbt:foo-build> exit","breadcrumbs":"Quick Start » sbt by example » Exit sbt shell","id":"9","title":"Exit sbt shell"}},"length":90,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{"1":{"2":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"7":{"df":6,"docs":{"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":4,"docs":{"43":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"1":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"7":{"0":{"4":{"5":{"4":{"0":{"2":{"5":{"2":{"6":{"8":{"5":{"5":{"4":{"7":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{":":{"1":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"26":{"tf":1.0}},"t":{"1":{"0":{":":{"0":{"0":{"\"":{"df":0,"docs":{},"}":{"df":0,"docs":{},"}":{",":{"2":{"0":{"0":{",":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":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":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":8,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":2.23606797749979}}},"1":{".":{"1":{"0":{".":{"0":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"4":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"4":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"5":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"_":{"3":{"5":{"2":{"df":4,"docs":{"2":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"2":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"8":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"0":{"tf":1.0}}}},"0":{"0":{"df":2,"docs":{"11":{"tf":1.0},"44":{"tf":1.0}}},"6":{"df":1,"docs":{"63":{"tf":1.0}}},":":{"0":{"9":{":":{"1":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":2,"docs":{"1":{"tf":1.0},"87":{"tf":1.0}}},"2":{"8":{"5":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"df":1,"docs":{"87":{"tf":1.7320508075688772}}},"6":{".":{"7":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"1":{"tf":1.0}}},"8":{".":{"0":{"4":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"63":{"tf":1.0}}},"df":1,"docs":{"43":{"tf":1.0}}},"9":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}},"df":12,"docs":{"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"26":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"84":{"tf":1.0}}},"2":{".":{"0":{".":{"0":{"df":2,"docs":{"54":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"df":1,"docs":{"40":{"tf":1.0}}},"3":{"/":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"40":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"19":{"tf":1.0}}}},"0":{"0":{"df":1,"docs":{"26":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"3":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"43":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"1":{".":{"3":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"7":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"3":{"8":{":":{"1":{"0":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"26":{"tf":1.0},"43":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"e":{"a":{"6":{"4":{"df":0,"docs":{},"e":{"4":{"0":{"a":{"8":{"9":{"b":{"8":{"4":{"b":{"2":{"d":{"df":0,"docs":{},"f":{"7":{"3":{"4":{"9":{"9":{"df":0,"docs":{},"e":{"8":{"2":{"a":{"7":{"5":{"6":{"4":{"2":{"a":{"c":{"8":{"2":{"3":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"3":{".":{"1":{".":{"3":{"/":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"74":{"tf":1.0}}},"3":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":17,"docs":{"0":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":2.0},"51":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":2,"docs":{"40":{"tf":1.0},"72":{"tf":1.0}}}},"1":{"df":1,"docs":{"89":{"tf":1.0}}},"2":{"df":1,"docs":{"63":{"tf":1.0}}},"4":{"1":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0}}},"4":{"0":{".":{"7":{"1":{"0":{"3":{"3":{"5":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":3,"docs":{"23":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}},"5":{"0":{"df":2,"docs":{"15":{"tf":1.0},"23":{"tf":1.0}}},"1":{"df":3,"docs":{"16":{"tf":1.0},"26":{"tf":1.0},"61":{"tf":1.0}}},"8":{"df":1,"docs":{"63":{"tf":1.0}}},"df":1,"docs":{"23":{"tf":1.0}}},"6":{"4":{"4":{"df":1,"docs":{"89":{"tf":1.0}}},"df":1,"docs":{"26":{"tf":1.0}}},"df":2,"docs":{"23":{"tf":1.0},"59":{"tf":1.0}}},"7":{"3":{".":{"9":{"9":{"3":{"0":{"7":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"0":{"6":{"&":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"2":{"tf":1.0},"26":{"tf":1.0},"87":{"tf":1.0}}},"9":{"]":{"*":{"\\":{".":{"[":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"3":{"tf":1.0},"63":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}},"v":{"df":3,"docs":{"69":{"tf":1.0},"76":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"49":{"tf":1.0},"81":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"49":{"tf":1.0},"60":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"d":{"d":{"df":7,"docs":{"20":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"44":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"17":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"89":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"31":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"1":{"tf":1.0},"52":{"tf":1.0},"69":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"0":{"a":{"c":{"1":{"4":{"0":{"9":{"c":{"0":{"1":{"1":{"7":{"a":{"9":{"4":{"9":{"d":{"4":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"47":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"81":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":3,"docs":{"51":{"tf":1.0},"60":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"p":{"df":3,"docs":{"15":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"60":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"36":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"89":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":2.449489742783178}}}}}}}},"m":{"df":1,"docs":{"1":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"13":{"tf":1.0},"54":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"47":{"tf":1.0},"60":{"tf":2.6457513110645907},"72":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"\"":{"df":0,"docs":{},"h":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"57":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"26":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.0}}}},"df":1,"docs":{"79":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":3,"docs":{"14":{"tf":1.4142135623730951},"73":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"40":{"tf":1.0},"42":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":5,"docs":{"19":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0}}}}}},"b":{"8":{"\\":{".":{"[":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"60":{"tf":1.4142135623730951},"77":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"d":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"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":{"85":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"43":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"37":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":2.0}}},"i":{"c":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.4142135623730951},"75":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"35":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"43":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"73":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"43":{"tf":1.0},"58":{"tf":1.0}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"42":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"t":{"a":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":1.0},"40":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"0":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"69":{"tf":1.0},"89":{"tf":1.0}}}}}},"x":{"df":1,"docs":{"84":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"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":{},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"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":{"#":{"5":{"0":{"6":{"4":{"9":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.4142135623730951}}}},"o":{"a":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"52":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":3.0}},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"81":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"43":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}}}}}}},"s":{"b":{"df":0,"docs":{},"t":{"df":25,"docs":{"0":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":2.0},"43":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":2.0},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"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":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{":":{"5":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":50,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":2.449489742783178},"16":{"tf":2.0},"17":{"tf":2.449489742783178},"19":{"tf":2.23606797749979},"28":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":2.0},"43":{"tf":2.23606797749979},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":2.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951},"83":{"tf":3.4641016151377544},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"15":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"47":{"tf":1.0},"60":{"tf":1.0},"76":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"41":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"81":{"tf":1.0},"83":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"68":{"tf":1.0},"69":{"tf":1.0}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"87":{"tf":1.0}}}}},"d":{"df":3,"docs":{"43":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0}}},"df":2,"docs":{"33":{"tf":1.4142135623730951},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":20,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"r":{"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":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"16":{"tf":1.0},"34":{"tf":1.0},"83":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"1":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"88":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}},"s":{"'":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"14":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"60":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"69":{"tf":1.0},"76":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"35":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"43":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"54":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"58":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"57":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"m":{"d":{"df":2,"docs":{"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":10,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":2.8284271247461903},"82":{"tf":1.7320508075688772},"83":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"2":{".":{"1":{"2":{"_":{"1":{".":{"0":{"/":{"0":{".":{"2":{".":{"1":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"3":{":":{"1":{".":{"0":{".":{"0":{"df":1,"docs":{"74":{"tf":1.0}}},"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":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"77":{"tf":1.0},"89":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":22,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":2.449489742783178},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":2.23606797749979},"64":{"tf":1.7320508075688772},"81":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"42":{"tf":1.0},"52":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":28,"docs":{"0":{"tf":1.0},"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":2.6457513110645907},"64":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":2.6457513110645907},"84":{"tf":1.4142135623730951}},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"43":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"i":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"38":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"42":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.7320508075688772},"79":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"24":{"tf":1.0},"84":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"26":{"tf":1.0},"60":{"tf":1.0}},"e":{"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":{"60":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"17":{"tf":1.0},"43":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"22":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"47":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"41":{"tf":1.0},"76":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"y":{"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":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"50":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"0":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"70":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"12":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"23":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"s":{"c":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"+":{"d":{"df":2,"docs":{"26":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"z":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":2,"docs":{"54":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":2.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"14":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"84":{"tf":1.0}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}},"t":{"a":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}},"y":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}},"df":2,"docs":{"43":{"tf":1.0},"54":{"tf":1.0}},"e":{"b":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":2.23606797749979}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"81":{"tf":2.449489742783178},"82":{"tf":2.449489742783178},"84":{"tf":2.23606797749979}},"g":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"67":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{"b":{"a":{"df":0,"docs":{},"r":{"_":{"3":{":":{"0":{".":{"1":{".":{"0":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"43":{"tf":1.7320508075688772},"60":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.0}}}}}},"df":5,"docs":{"12":{"tf":1.0},"33":{"tf":1.4142135623730951},"40":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"19":{"tf":1.0},"38":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"0":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"50":{"tf":1.0},"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":2.6457513110645907},"74":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"76":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{},"i":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"57":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"0":{"tf":1.0},"16":{"tf":1.0},"38":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"17":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"42":{"tf":1.0},"51":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"12":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"35":{"tf":1.0},"40":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"12":{"tf":1.7320508075688772},"36":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.449489742783178},"77":{"tf":1.4142135623730951},"78":{"tf":2.6457513110645907},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}},"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":3,"docs":{"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":3,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"4":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":8,"docs":{"14":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}}}}},"m":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"89":{"tf":1.0}}}},"o":{"c":{"df":2,"docs":{"0":{"tf":1.0},"60":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"60":{"tf":1.7320508075688772},"76":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"84":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"26":{"tf":2.0},"72":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"43":{"tf":1.0},"56":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"l":{"df":4,"docs":{"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":1.0}}}},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"35":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"57":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"7":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":2,"docs":{"1":{"tf":1.0},"85":{"tf":1.0}}}}}},"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":{"40":{"tf":1.7320508075688772},"41":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"82":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":10,"docs":{"12":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"49":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}}}},"df":1,"docs":{"43":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":5,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"26":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"d":{"df":5,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"33":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"42":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"41":{"tf":1.0},"72":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"24":{"tf":1.0},"31":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"77":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"23":{"tf":2.449489742783178},"42":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}},"t":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"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":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"d":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"d":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"d":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"52":{"tf":1.0},"70":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"84":{"tf":1.0},"87":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":14,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"75":{"tf":1.0},"84":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"33":{"tf":1.0}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.4142135623730951}},"e":{".":{"$":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"$":{"$":{"$":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"$":{"1":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{":":{"5":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.0},"43":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"39":{"tf":1.0},"57":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.0}}}},"t":{"df":8,"docs":{"12":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"43":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"58":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"6":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"26":{"tf":1.0},"68":{"tf":2.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"42":{"tf":1.0},"81":{"tf":1.0}}},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"23":{"tf":2.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"81":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"41":{"tf":1.0},"82":{"tf":1.0}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"df":2,"docs":{"43":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"42":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"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":{"63":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":2,"docs":{"43":{"tf":1.0},"63":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"44":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"/":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":5,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":25,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.0},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"23":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"60":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":2.0},"75":{"tf":1.0},"76":{"tf":2.0},"77":{"tf":2.0},"78":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"89":{"tf":2.23606797749979}}}},"n":{"d":{"df":3,"docs":{"13":{"tf":1.0},"26":{"tf":1.0},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":1,"docs":{"84":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"57":{"tf":1.0},"60":{"tf":1.0},"77":{"tf":1.0}}}}},"x":{"df":1,"docs":{"69":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":18,"docs":{"12":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}},"o":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"r":{"c":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"84":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"42":{"tf":1.0},"43":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}}}}},"v":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}},"g":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":1,"docs":{"43":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":6,"docs":{"0":{"tf":1.0},"60":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":1.0}}}}},"t":{"df":4,"docs":{"14":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.0},"72":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"57":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"8":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"44":{"tf":1.0},"57":{"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":{"79":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"t":{")":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{")":{",":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"g":{"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":{":":{"/":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":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":{"26":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.7320508075688772}}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":3,"docs":{"34":{"tf":1.0},"69":{"tf":1.0},"84":{"tf":1.0}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}}}},"r":{"a":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}},"p":{"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"w":{"df":2,"docs":{"42":{"tf":1.0},"67":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"38":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}}},"t":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"38":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"89":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"12":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"78":{"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":7,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0}},"e":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":16,"docs":{"15":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":2.0},"32":{"tf":2.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":2.23606797749979},"40":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"35":{"tf":1.0}}}}}}}},"p":{"df":4,"docs":{"14":{"tf":2.23606797749979},"26":{"tf":1.0},"42":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"n":{"c":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"43":{"tf":1.0},"69":{"tf":1.0}}},"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"40":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"t":{"df":7,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"4":{"4":{"3":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":{},"g":{"8":{"df":1,"docs":{"43":{"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":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":2.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"/":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"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":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}},"d":{"df":5,"docs":{"0":{"tf":1.0},"52":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"72":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"83":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"72":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"63":{"tf":1.0},"78":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.0}}}},"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":1,"docs":{"70":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"26":{"tf":2.0},"33":{"tf":1.7320508075688772},"46":{"tf":1.0},"60":{"tf":1.0},"73":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":2.449489742783178},"89":{"tf":1.0}}}}}}},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0}},"e":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":5,"docs":{"19":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"u":{"d":{"df":6,"docs":{"59":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"22":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":18,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":2.449489742783178},"17":{"tf":1.4142135623730951},"19":{"tf":2.0},"28":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":2.6457513110645907},"43":{"tf":3.3166247903554},"54":{"tf":3.0},"58":{"tf":3.0},"59":{"tf":2.6457513110645907},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":3.3166247903554},"74":{"tf":2.6457513110645907},"8":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"14":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"[":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"a":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"67":{"tf":1.0},"69":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"[":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}},"i":{"d":{"df":3,"docs":{"43":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"60":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"1":{"tf":1.7320508075688772},"3":{"tf":2.0},"47":{"tf":1.0},"6":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":3.0}}},"n":{"c":{"df":5,"docs":{"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"1":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"44":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":5,"docs":{"0":{"tf":1.0},"52":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":3.605551275463989},"83":{"tf":4.242640687119285}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":2.0},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":6,"docs":{"1":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0}}}}}},"s":{"_":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"83":{"tf":1.0}}}}},"t":{"'":{"df":6,"docs":{"46":{"tf":1.0},"57":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"0":{"tf":1.0},"40":{"tf":1.0},"60":{"tf":2.0},"71":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"v":{"a":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"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":{},"i":{"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":14,"docs":{"0":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"54":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":2.0},"8":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.7320508075688772},"2":{"tf":1.0},"3":{"tf":1.0},"87":{"tf":2.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"87":{"tf":1.0}}}},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"o":{"b":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"40":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"(":{"\"":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{")":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"33":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"44":{"tf":1.0},"84":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":4,"docs":{"0":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0}}}}},"k":{"df":1,"docs":{"84":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"42":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"y":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"43":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":2.23606797749979},"71":{"tf":1.0},"89":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"3":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"3":{":":{"0":{".":{"2":{".":{"0":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":10,"docs":{"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"69":{"tf":2.449489742783178},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"41":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"42":{"tf":1.0},"67":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"68":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"i":{"df":8,"docs":{"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":2.8284271247461903},"73":{"tf":1.0},"75":{"tf":1.7320508075688772}}}}},"df":1,"docs":{"89":{"tf":1.4142135623730951}},"e":{"a":{"d":{"df":1,"docs":{"79":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{">":{"a":{"a":{"df":1,"docs":{"84":{"tf":1.0}}},"df":1,"docs":{"84":{"tf":1.0}}},"d":{"c":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":1,"docs":{"84":{"tf":1.0}}},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":4,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"54":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"68":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}},"t":{"'":{"df":7,"docs":{"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"43":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0}}},"df":3,"docs":{"41":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"40":{"tf":1.0},"69":{"tf":1.0}}}}}},"i":{"b":{"_":{"3":{":":{"0":{".":{"9":{".":{"1":{"df":1,"docs":{"74":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"0":{"tf":1.0},"25":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.4142135623730951},"61":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.4142135623730951}}},"y":{"_":{"3":{":":{"3":{".":{"1":{".":{"3":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"89":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"14":{"tf":1.7320508075688772},"28":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"66":{"tf":1.0},"84":{"tf":2.23606797749979},"89":{"tf":1.0}}}}},"o":{"a":{"d":{"df":5,"docs":{"19":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"69":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{":":{"/":{"/":{"/":{"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":{},"e":{"d":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"9":{"df":0,"docs":{},"n":{"/":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"/":{"1":{".":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"0":{"a":{"c":{"1":{"4":{"0":{"9":{"c":{"0":{"1":{"1":{"7":{"a":{"9":{"4":{"9":{"d":{"4":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"9":{"8":{"2":{"df":0,"docs":{},"e":{"0":{"7":{"df":0,"docs":{},"e":{"8":{"5":{"c":{"7":{"d":{"df":0,"docs":{},"e":{"1":{"b":{"6":{"1":{"8":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"44":{"tf":1.0},"60":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":3,"docs":{"81":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"43":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":2,"docs":{"81":{"tf":1.0},"84":{"tf":1.0}}}},"t":{"df":1,"docs":{"89":{"tf":1.0}}},"u":{"a":{"df":1,"docs":{"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1":{"tf":1.0},"47":{"tf":1.0},"56":{"tf":1.0}}}}},"o":{"df":4,"docs":{"1":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"87":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"12":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.4142135623730951},"60":{"tf":2.6457513110645907},"62":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"78":{"tf":2.23606797749979},"89":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"38":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"0":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"12":{"tf":1.0},"70":{"tf":1.7320508075688772},"76":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":2.0}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"38":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"66":{"tf":1.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"72":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"df":3,"docs":{"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"41":{"tf":1.0},"60":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":1,"docs":{"43":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"10":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"u":{"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"81":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"52":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":4.0},"84":{"tf":2.6457513110645907}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"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":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"?":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{".":{"7":{"1":{"4":{"3":{"&":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"o":{"d":{"df":2,"docs":{"60":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"63":{"tf":2.449489742783178}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"43":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"26":{"tf":1.0},"35":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"64":{"tf":1.0},"84":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"51":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":16,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"32":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"35":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"75":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"62":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{":":{"1":{"1":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":1,"docs":{"89":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"e":{"df":18,"docs":{"14":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"40":{"tf":1.0},"66":{"tf":2.0},"68":{"tf":2.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"40":{"tf":1.0},"48":{"tf":1.7320508075688772},"59":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":1,"docs":{"43":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":9,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":2.6457513110645907}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}},"w":{"df":11,"docs":{"12":{"tf":1.0},"14":{"tf":2.0},"16":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":2.0},"43":{"tf":2.23606797749979},"44":{"tf":2.0},"76":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"84":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"40":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"78":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"w":{"df":4,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"70":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":{"69":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"38":{"tf":1.0},"42":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":2.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"33":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"3":{"tf":1.0},"43":{"tf":1.0},"84":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"k":{"df":1,"docs":{"78":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"84":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"c":{"df":5,"docs":{"57":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":11,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"42":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"44":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.7320508075688772},"83":{"tf":2.0},"84":{"tf":1.0}},"j":{"d":{"df":0,"docs":{},"k":{"df":3,"docs":{"2":{"tf":1.0},"26":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"2":{"tf":1.0},"68":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"42":{"tf":1.0},"85":{"tf":1.0}}}}},"t":{"df":2,"docs":{"81":{"tf":1.0},"83":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"60":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":11,"docs":{"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"69":{"tf":2.449489742783178},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"74":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":12,"docs":{"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.7320508075688772},"77":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"s":{"df":1,"docs":{"86":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"26":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"51":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"33":{"tf":1.4142135623730951},"4":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.4142135623730951},"70":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":2.0},"89":{"tf":2.8284271247461903}},"e":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"60":{"tf":1.0},"75":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":9,"docs":{"37":{"tf":1.0},"57":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}}},"s":{"df":1,"docs":{"33":{"tf":1.0}}},"t":{"df":3,"docs":{"68":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"14":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"35":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0}}},"t":{"df":2,"docs":{"26":{"tf":1.0},"69":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"78":{"tf":1.0},"87":{"tf":1.0}}}}},"df":3,"docs":{"43":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"78":{"tf":1.0}}}}},"r":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"12":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"73":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"89":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"40":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"43":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"14":{"tf":1.0},"42":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":2.0}},"s":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":3,"docs":{"58":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"m":{"df":1,"docs":{"43":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"76":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"11":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"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":{"2":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"12":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"/":{"b":{"a":{"df":0,"docs":{},"r":{"/":{"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":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"58":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"40":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"60":{"tf":2.6457513110645907}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"75":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":2,"docs":{"80":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":3,"docs":{"72":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"41":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":34,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":2.449489742783178},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"36":{"tf":2.0},"43":{"tf":3.3166247903554},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"66":{"tf":2.0},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":2.6457513110645907},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"83":{"tf":2.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"48":{"tf":1.0},"52":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"14":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"51":{"tf":1.0},"60":{"tf":2.23606797749979},"84":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"0":{"tf":1.0},"41":{"tf":1.0},"60":{"tf":2.0}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"q":{"df":2,"docs":{"26":{"tf":1.0},"43":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"84":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"43":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"j":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{")":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"d":{"df":4,"docs":{"19":{"tf":1.0},"38":{"tf":1.4142135623730951},"47":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"34":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"1":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"11":{"tf":1.0},"64":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"89":{"tf":1.0}}}},"d":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"69":{"tf":1.7320508075688772},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"84":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"l":{"df":1,"docs":{"78":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"78":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"1":{"tf":1.0}}},"o":{"a":{"d":{"df":8,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":2.0},"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":1,"docs":{"26":{"tf":1.0}}},"o":{"df":1,"docs":{"89":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"41":{"tf":1.0},"57":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"35":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"(":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":5,"docs":{"50":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"60":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"26":{"tf":1.4142135623730951},"33":{"tf":1.0},"83":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"\"":{":":{"4":{"0":{".":{"7":{"1":{"0":{"3":{"3":{"5":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"43":{"tf":1.0},"84":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"68":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{":":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"d":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"59":{"tf":1.4142135623730951},"66":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":3.0}}}}}}},"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":2.0}}}},"u":{"df":0,"docs":{},"n":{"df":32,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"41":{"tf":1.0},"43":{"tf":2.0},"46":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":2.23606797749979},"62":{"tf":2.23606797749979},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"71":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"1":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"42":{"tf":1.0},"47":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"17":{"tf":2.0},"64":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"76":{"tf":1.0}}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"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":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"2":{".":{"0":{".":{"0":{"df":2,"docs":{"47":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"43":{"tf":1.0}}}}}}}}}},"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{"b":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"43":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":6,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":10,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951}}}}}}}},"df":61,"docs":{"0":{"tf":2.449489742783178},"1":{"tf":2.449489742783178},"10":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"16":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":2.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"41":{"tf":2.23606797749979},"42":{"tf":1.4142135623730951},"43":{"tf":3.605551275463989},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":2.449489742783178},"47":{"tf":2.6457513110645907},"48":{"tf":2.449489742783178},"49":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":3.4641016151377544},"55":{"tf":2.0},"56":{"tf":2.0},"57":{"tf":1.7320508075688772},"58":{"tf":2.6457513110645907},"6":{"tf":1.7320508075688772},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":2.0},"80":{"tf":2.23606797749979},"81":{"tf":3.0},"82":{"tf":1.0},"83":{"tf":3.7416573867739413},"84":{"tf":2.23606797749979},"85":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":3.605551275463989},"9":{"tf":1.4142135623730951}},"n":{"df":5,"docs":{"48":{"tf":2.0},"49":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}},"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"3":{".":{"df":0,"docs":{},"g":{"8":{"df":2,"docs":{"43":{"tf":1.0},"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"36":{"tf":1.0},"43":{"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":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"c":{"df":2,"docs":{"40":{"tf":2.0},"83":{"tf":1.0}}},"df":29,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":1.0},"26":{"tf":2.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":2.8284271247461903},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":3.605551275463989},"44":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"76":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":3.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":2.0},"83":{"tf":2.0},"84":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":21,"docs":{"0":{"tf":1.0},"16":{"tf":2.23606797749979},"17":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":2.23606797749979},"42":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"43":{"tf":1.0}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"60":{"tf":1.0},"62":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.7320508075688772}},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"8":{"df":2,"docs":{"36":{"tf":1.0},"43":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":10,"docs":{"33":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"89":{"tf":1.0}},"m":{"df":1,"docs":{"78":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"43":{"tf":2.0},"60":{"tf":1.0},"62":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"d":{"df":3,"docs":{"26":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":4,"docs":{"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"26":{"tf":1.0},"43":{"tf":2.449489742783178},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"52":{"tf":2.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951},"58":{"tf":2.0},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":2.449489742783178},"83":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"14":{"tf":1.0},"17":{"tf":1.7320508075688772},"81":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.7320508075688772}}}}}}},"t":{"df":22,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":2.23606797749979},"17":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"34":{"tf":2.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"[":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"36":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":15,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.4142135623730951},"46":{"tf":1.0},"54":{"tf":2.23606797749979},"58":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"81":{"tf":1.0},"83":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":1,"docs":{"80":{"tf":1.0}}}},"w":{"df":3,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":4,"docs":{"43":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"58":{"tf":1.0}}}}}},"df":2,"docs":{"43":{"tf":1.0},"56":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"68":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"0":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"75":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"51":{"tf":1.0},"75":{"tf":1.0}}}}}},"l":{"df":1,"docs":{"89":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"40":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"38":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"4":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":2.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"36":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":15,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":3.1622776601683795},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.23606797749979}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":5,"docs":{"14":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.4142135623730951},"86":{"tf":1.0}},"i":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"78":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"43":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"48":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"41":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"0":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"38":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":2.6457513110645907},"44":{"tf":1.0},"54":{"tf":2.0},"57":{"tf":1.0},"58":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":2.23606797749979},"75":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"1":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"64":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"12":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"42":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"4":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{".":{"_":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"33":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"75":{"tf":1.0}}},"df":17,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"66":{"tf":2.0},"67":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":2.23606797749979},"79":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"60":{"tf":2.23606797749979},"71":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":4.123105625617661}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"38":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"34":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":11,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":5,"docs":{"54":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"43":{"tf":1.0},"52":{"tf":1.0},"76":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"df":14,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":2.23606797749979},"60":{"tf":3.4641016151377544},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"[":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"44":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"m":{"df":1,"docs":{"3":{"tf":1.0}},"p":{"df":1,"docs":{"33":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"36":{"tf":1.0},"43":{"tf":2.6457513110645907},"44":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"n":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"35":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"24":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"55":{"tf":1.0}}},"df":25,"docs":{"0":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":2.0},"31":{"tf":2.0},"32":{"tf":1.7320508075688772},"35":{"tf":1.0},"43":{"tf":1.7320508075688772},"60":{"tf":2.23606797749979},"63":{"tf":2.23606797749979},"64":{"tf":1.4142135623730951},"69":{"tf":2.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"78":{"tf":2.23606797749979},"79":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":2.0},"84":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"35":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"35":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"85":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"84":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"43":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"g":{"df":2,"docs":{"41":{"tf":1.0},"78":{"tf":1.0}}},"k":{"df":1,"docs":{"69":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"s":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"78":{"tf":1.0},"84":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"68":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":9,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}},"e":{"_":{"a":{"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":6,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"44":{"tf":1.0}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"42":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":7,"docs":{"0":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"49":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"3":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"df":11,"docs":{"20":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"43":{"tf":2.6457513110645907},"69":{"tf":3.1622776601683795},"72":{"tf":1.4142135623730951},"73":{"tf":2.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"69":{"tf":2.0},"73":{"tf":1.4142135623730951}}}}}},"v":{"df":3,"docs":{"43":{"tf":1.7320508075688772},"69":{"tf":3.1622776601683795},"73":{"tf":1.7320508075688772}}}}}}}},"p":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"41":{"tf":1.0},"47":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"79":{"tf":1.0}}}},"n":{"df":1,"docs":{"63":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"40":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"74":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":2,"docs":{"26":{"tf":1.0},"64":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"84":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":2,"docs":{"80":{"tf":1.0},"85":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":14,"docs":{"26":{"tf":1.4142135623730951},"36":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":2.23606797749979},"74":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.7320508075688772},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"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":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"i":{"c":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"89":{"tf":2.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"36":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"69":{"tf":1.7320508075688772}}}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"42":{"tf":1.0}}}},"t":{"df":6,"docs":{"12":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"x":{"df":2,"docs":{"54":{"tf":1.0},"9":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"43":{"tf":1.0},"60":{"tf":1.0},"89":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":8,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.0},"84":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":49,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"60":{"tf":2.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":2.23606797749979},"82":{"tf":1.7320508075688772},"83":{"tf":3.7416573867739413},"84":{"tf":3.4641016151377544},"85":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":2.23606797749979},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"9":{"df":0,"docs":{},"n":{"/":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"/":{"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":1,"docs":{"58":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}},"x":{"df":1,"docs":{"83":{"tf":1.0}}}},"v":{"2":{"df":1,"docs":{"82":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"26":{"tf":2.449489742783178},"27":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"66":{"tf":1.0},"69":{"tf":4.0},"73":{"tf":2.0},"75":{"tf":2.0}},"u":{"df":10,"docs":{"16":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"60":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"42":{"tf":1.0},"69":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"b":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":20,"docs":{"1":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"34":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":2.23606797749979},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.7320508075688772},"62":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":2.23606797749979},"73":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}}},"i":{"a":{"df":4,"docs":{"0":{"tf":1.0},"42":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"60":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0}}}},"m":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"43":{"tf":1.0}}}},"z":{"df":1,"docs":{"59":{"tf":1.0}}}},"m":{"df":1,"docs":{"26":{"tf":1.0}}},"s":{"df":2,"docs":{"0":{"tf":1.0},"81":{"tf":2.0}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"83":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"17":{"tf":2.6457513110645907},"84":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":3,"docs":{"53":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.4142135623730951}}}}}}},"b":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":6,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"43":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"11":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"43":{"tf":1.0},"58":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"49":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"n":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"54":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":12,"docs":{"33":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":3,"docs":{"36":{"tf":1.0},"40":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"23":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"37":{"tf":1.0},"43":{"tf":1.0},"76":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"x":{"d":{"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":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"23":{"tf":1.0}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"42":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.4142135623730951}}}},"u":{"'":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.7320508075688772}}}},"r":{"df":3,"docs":{"70":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"v":{"df":2,"docs":{"57":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"q":{"df":1,"docs":{"89":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}},"z":{"df":1,"docs":{"54":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"41":{"tf":1.0},"51":{"tf":2.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{"1":{"2":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"7":{"df":6,"docs":{"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":4,"docs":{"43":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"1":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"7":{"0":{"4":{"5":{"4":{"0":{"2":{"5":{"2":{"6":{"8":{"5":{"5":{"4":{"7":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{":":{"1":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"26":{"tf":1.0}},"t":{"1":{"0":{":":{"0":{"0":{"\"":{"df":0,"docs":{},"}":{"df":0,"docs":{},"}":{",":{"2":{"0":{"0":{",":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":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":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":8,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":2.23606797749979}}},"1":{".":{"1":{"0":{".":{"0":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"4":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"4":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"5":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"_":{"3":{"5":{"2":{"df":4,"docs":{"2":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"2":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"8":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"0":{"tf":1.0}}}},"0":{"0":{"df":2,"docs":{"11":{"tf":1.0},"44":{"tf":1.0}}},"6":{"df":1,"docs":{"63":{"tf":1.0}}},":":{"0":{"9":{":":{"1":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":2,"docs":{"1":{"tf":1.0},"87":{"tf":1.0}}},"2":{"8":{"5":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"df":1,"docs":{"87":{"tf":1.7320508075688772}}},"6":{".":{"7":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"1":{"tf":1.0}}},"8":{".":{"0":{"4":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"63":{"tf":1.0}}},"df":1,"docs":{"43":{"tf":1.0}}},"9":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}},"df":12,"docs":{"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"26":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"84":{"tf":1.0}}},"2":{".":{"0":{".":{"0":{"df":2,"docs":{"54":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"df":1,"docs":{"40":{"tf":1.0}}},"3":{"/":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"40":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"19":{"tf":1.0}}}},"0":{"0":{"df":1,"docs":{"26":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"3":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"43":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"1":{".":{"3":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"7":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"3":{"8":{":":{"1":{"0":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"26":{"tf":1.0},"43":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"e":{"a":{"6":{"4":{"df":0,"docs":{},"e":{"4":{"0":{"a":{"8":{"9":{"b":{"8":{"4":{"b":{"2":{"d":{"df":0,"docs":{},"f":{"7":{"3":{"4":{"9":{"9":{"df":0,"docs":{},"e":{"8":{"2":{"a":{"7":{"5":{"6":{"4":{"2":{"a":{"c":{"8":{"2":{"3":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"3":{".":{"1":{".":{"3":{"/":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"74":{"tf":1.0}}},"3":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":17,"docs":{"0":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":2.0},"51":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":2,"docs":{"40":{"tf":1.0},"72":{"tf":1.0}}}},"1":{"df":1,"docs":{"89":{"tf":1.0}}},"2":{"df":1,"docs":{"63":{"tf":1.0}}},"4":{"1":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0}}},"4":{"0":{".":{"7":{"1":{"0":{"3":{"3":{"5":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":3,"docs":{"23":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}},"5":{"0":{"df":2,"docs":{"15":{"tf":1.0},"23":{"tf":1.0}}},"1":{"df":3,"docs":{"16":{"tf":1.0},"26":{"tf":1.0},"61":{"tf":1.0}}},"8":{"df":1,"docs":{"63":{"tf":1.0}}},"df":1,"docs":{"23":{"tf":1.0}}},"6":{"4":{"4":{"df":1,"docs":{"89":{"tf":1.0}}},"df":1,"docs":{"26":{"tf":1.0}}},"df":2,"docs":{"23":{"tf":1.0},"59":{"tf":1.0}}},"7":{"3":{".":{"9":{"9":{"3":{"0":{"7":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"0":{"6":{"&":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"2":{"tf":1.0},"26":{"tf":1.0},"87":{"tf":1.0}}},"9":{"]":{"*":{"\\":{".":{"[":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"3":{"tf":1.0},"63":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}},"v":{"df":3,"docs":{"69":{"tf":1.0},"76":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"49":{"tf":1.0},"81":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"49":{"tf":1.0},"60":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"d":{"d":{"df":7,"docs":{"20":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"44":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"17":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"89":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"31":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"1":{"tf":1.0},"52":{"tf":1.0},"69":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"0":{"a":{"c":{"1":{"4":{"0":{"9":{"c":{"0":{"1":{"1":{"7":{"a":{"9":{"4":{"9":{"d":{"4":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"47":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"81":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":3,"docs":{"51":{"tf":1.0},"60":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"p":{"df":3,"docs":{"15":{"tf":1.4142135623730951},"33":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":5,"docs":{"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}},"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":1,"docs":{"60":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"36":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"89":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":2.449489742783178}}}}}}}},"m":{"df":1,"docs":{"1":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"13":{"tf":1.0},"54":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"47":{"tf":1.0},"60":{"tf":2.6457513110645907},"72":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"\"":{"df":0,"docs":{},"h":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"57":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"26":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.0}}}},"df":1,"docs":{"79":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":3,"docs":{"14":{"tf":1.4142135623730951},"73":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"40":{"tf":1.0},"42":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":5,"docs":{"19":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0}}}}}},"b":{"8":{"\\":{".":{"[":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"60":{"tf":1.4142135623730951},"77":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"d":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"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":{"85":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"43":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"37":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":2.0}}},"i":{"c":{"df":12,"docs":{"14":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"35":{"tf":2.0},"55":{"tf":1.7320508075688772},"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"43":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"73":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"43":{"tf":1.0},"58":{"tf":1.0}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"42":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"t":{"a":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"40":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"0":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"69":{"tf":1.0},"89":{"tf":1.0}}}}}},"x":{"df":1,"docs":{"84":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"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":{},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"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":{"#":{"5":{"0":{"6":{"4":{"9":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.4142135623730951}}}},"o":{"a":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"52":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":3.0}},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"81":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"43":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}}}}}}},"s":{"b":{"df":0,"docs":{},"t":{"df":25,"docs":{"0":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":2.23606797749979},"43":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"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":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{":":{"5":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":55,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":2.449489742783178},"16":{"tf":2.0},"17":{"tf":2.449489742783178},"19":{"tf":2.449489742783178},"28":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":2.0},"43":{"tf":2.6457513110645907},"44":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":2.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":2.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":2.449489742783178},"77":{"tf":2.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":2.6457513110645907},"82":{"tf":1.4142135623730951},"83":{"tf":3.605551275463989},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"15":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"47":{"tf":1.0},"60":{"tf":1.0},"76":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"41":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"81":{"tf":1.0},"83":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"68":{"tf":1.0},"69":{"tf":1.0}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"87":{"tf":1.0}}}}},"d":{"df":3,"docs":{"43":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0}}},"df":2,"docs":{"33":{"tf":1.4142135623730951},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":20,"docs":{"0":{"tf":1.0},"11":{"tf":1.4142135623730951},"14":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"r":{"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":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"16":{"tf":1.0},"34":{"tf":1.0},"83":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"1":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"88":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}},"s":{"'":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"14":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"60":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"69":{"tf":1.0},"76":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"35":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"43":{"tf":1.7320508075688772},"48":{"tf":2.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"58":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"57":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"m":{"d":{"df":2,"docs":{"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":10,"docs":{"0":{"tf":1.0},"11":{"tf":1.4142135623730951},"35":{"tf":1.0},"48":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":1.0},"81":{"tf":2.8284271247461903},"82":{"tf":1.7320508075688772},"83":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"2":{".":{"1":{"2":{"_":{"1":{".":{"0":{"/":{"0":{".":{"2":{".":{"1":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"3":{":":{"1":{".":{"0":{".":{"0":{"df":1,"docs":{"74":{"tf":1.0}}},"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":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"77":{"tf":1.0},"89":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":22,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"14":{"tf":2.449489742783178},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":2.449489742783178},"64":{"tf":2.0},"81":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"42":{"tf":1.0},"52":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":28,"docs":{"0":{"tf":1.0},"10":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":2.8284271247461903},"64":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":2.6457513110645907},"84":{"tf":1.4142135623730951}},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"43":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"i":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"45":{"tf":1.7320508075688772},"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}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"38":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"42":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"24":{"tf":1.0},"84":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.7320508075688772},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"26":{"tf":1.0},"60":{"tf":1.0}},"e":{"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":{"60":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"17":{"tf":1.0},"43":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"47":{"tf":1.0},"79":{"tf":1.7320508075688772}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"41":{"tf":1.0},"76":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"y":{"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":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"50":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"0":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"70":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"12":{"tf":2.0},"14":{"tf":1.4142135623730951},"23":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":2.0},"44":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"73":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"s":{"c":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"+":{"d":{"df":2,"docs":{"26":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"z":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":2,"docs":{"54":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":2.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"14":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"84":{"tf":1.0}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}},"t":{"a":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}},"y":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}},"df":2,"docs":{"43":{"tf":1.0},"54":{"tf":1.0}},"e":{"b":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":2.23606797749979}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"81":{"tf":2.449489742783178},"82":{"tf":2.449489742783178},"84":{"tf":2.23606797749979}},"g":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"67":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{"b":{"a":{"df":0,"docs":{},"r":{"_":{"3":{":":{"0":{".":{"1":{".":{"0":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"43":{"tf":1.7320508075688772},"60":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.0}}}}}},"df":5,"docs":{"12":{"tf":1.0},"33":{"tf":1.4142135623730951},"40":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"19":{"tf":1.0},"38":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":2.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"0":{"tf":1.0},"25":{"tf":1.4142135623730951},"32":{"tf":2.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"50":{"tf":1.0},"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":3.0},"74":{"tf":2.23606797749979},"83":{"tf":1.0},"87":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"76":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{},"i":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"57":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"0":{"tf":1.0},"16":{"tf":1.0},"38":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"17":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"42":{"tf":1.0},"51":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"12":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"35":{"tf":1.0},"40":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"12":{"tf":1.7320508075688772},"36":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.449489742783178},"77":{"tf":1.4142135623730951},"78":{"tf":2.6457513110645907},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}},"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":3,"docs":{"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":3,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"4":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":8,"docs":{"14":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}}}}},"m":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"89":{"tf":1.0}}}},"o":{"c":{"df":2,"docs":{"0":{"tf":1.0},"60":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"60":{"tf":1.7320508075688772},"76":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"84":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"26":{"tf":2.0},"72":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"43":{"tf":1.0},"56":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"l":{"df":4,"docs":{"41":{"tf":1.4142135623730951},"42":{"tf":2.0},"67":{"tf":2.23606797749979},"68":{"tf":1.0}}}},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"35":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"57":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"7":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":2,"docs":{"1":{"tf":1.0},"85":{"tf":1.0}}}}}},"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":{"40":{"tf":1.7320508075688772},"41":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"82":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":10,"docs":{"12":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"49":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}}}},"df":1,"docs":{"43":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":5,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"26":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"d":{"df":5,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"33":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"42":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"41":{"tf":1.0},"72":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"24":{"tf":1.0},"31":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"77":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"23":{"tf":2.449489742783178},"42":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}},"t":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"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":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"d":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"d":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"d":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"52":{"tf":1.0},"70":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"84":{"tf":1.0},"87":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":40,"docs":{"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":2.0},"64":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"33":{"tf":1.0}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.4142135623730951}},"e":{".":{"$":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"$":{"$":{"$":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"$":{"1":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{":":{"5":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.0},"43":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":14,"docs":{"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.0}}}},"t":{"df":8,"docs":{"12":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"43":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"9":{"tf":2.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"58":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"6":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"26":{"tf":1.0},"68":{"tf":2.23606797749979}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"42":{"tf":1.0},"81":{"tf":1.0}}},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"23":{"tf":2.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"81":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"41":{"tf":1.0},"82":{"tf":1.0}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"df":2,"docs":{"43":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"42":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"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":{"63":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":2,"docs":{"43":{"tf":1.0},"63":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"44":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"/":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":5,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":25,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.23606797749979},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"23":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"60":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":2.0},"75":{"tf":1.0},"76":{"tf":2.0},"77":{"tf":2.23606797749979},"78":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"89":{"tf":2.23606797749979}}}},"n":{"d":{"df":3,"docs":{"13":{"tf":1.0},"26":{"tf":1.0},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":1,"docs":{"84":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"57":{"tf":1.0},"60":{"tf":1.0},"77":{"tf":1.0}}}}},"x":{"df":1,"docs":{"69":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":18,"docs":{"12":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}},"o":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"r":{"c":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"84":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"42":{"tf":1.0},"43":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}}}}},"v":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}},"g":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":1,"docs":{"43":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":6,"docs":{"0":{"tf":1.0},"60":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":1.0}}}}},"t":{"df":48,"docs":{"14":{"tf":1.4142135623730951},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"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.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"57":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"8":{"df":1,"docs":{"44":{"tf":2.0}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"44":{"tf":1.0},"57":{"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":{"79":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"t":{")":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{")":{",":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"g":{"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":{":":{"/":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":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":{"26":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.7320508075688772}}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":3,"docs":{"34":{"tf":1.0},"69":{"tf":1.0},"84":{"tf":1.0}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}}}},"r":{"a":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}},"p":{"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"w":{"df":2,"docs":{"42":{"tf":1.0},"67":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"38":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}}},"t":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"38":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"89":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"12":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"78":{"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":7,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":2.0},"33":{"tf":1.0},"34":{"tf":1.0}},"e":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":16,"docs":{"15":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":2.0},"32":{"tf":2.23606797749979},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":2.23606797749979},"40":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"35":{"tf":1.0}}}}}}}},"p":{"df":4,"docs":{"14":{"tf":2.449489742783178},"26":{"tf":1.0},"42":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"n":{"c":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"43":{"tf":1.0},"69":{"tf":1.0}}},"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"40":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"t":{"df":7,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"4":{"4":{"3":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":{},"g":{"8":{"df":1,"docs":{"43":{"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":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":2.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"/":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"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":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}},"d":{"df":8,"docs":{"0":{"tf":1.0},"52":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":2.23606797749979},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"72":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.23606797749979},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"72":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"63":{"tf":1.0},"78":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.0}}}},"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":1,"docs":{"70":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"26":{"tf":2.0},"33":{"tf":1.7320508075688772},"46":{"tf":1.0},"60":{"tf":1.0},"73":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.23606797749979},"83":{"tf":2.449489742783178},"89":{"tf":1.0}}}}}}},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0}},"e":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":5,"docs":{"19":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"u":{"d":{"df":6,"docs":{"59":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"22":{"tf":1.4142135623730951},"41":{"tf":1.0},"51":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":18,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":2.449489742783178},"17":{"tf":1.4142135623730951},"19":{"tf":2.0},"28":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":2.6457513110645907},"43":{"tf":3.3166247903554},"54":{"tf":3.0},"58":{"tf":3.0},"59":{"tf":2.6457513110645907},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":3.3166247903554},"74":{"tf":2.6457513110645907},"8":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"14":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"[":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"a":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"67":{"tf":1.0},"69":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"[":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}},"i":{"d":{"df":3,"docs":{"43":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"60":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"1":{"tf":2.23606797749979},"2":{"tf":1.0},"3":{"tf":2.449489742783178},"4":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":3.0}}},"n":{"c":{"df":5,"docs":{"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"1":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"44":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":5,"docs":{"0":{"tf":1.0},"52":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":3.7416573867739413},"83":{"tf":4.358898943540674}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":2.0},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"40":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":6,"docs":{"1":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0}}}}}},"s":{"_":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"83":{"tf":1.0}}}}},"t":{"'":{"df":6,"docs":{"46":{"tf":1.0},"57":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"0":{"tf":1.0},"40":{"tf":1.0},"60":{"tf":2.0},"71":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"v":{"a":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"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":{},"i":{"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":14,"docs":{"0":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"54":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":2.0},"8":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.7320508075688772},"2":{"tf":1.0},"3":{"tf":1.0},"87":{"tf":2.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"87":{"tf":1.0}}}},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"o":{"b":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"40":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"(":{"\"":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{")":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"33":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"44":{"tf":1.0},"84":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":4,"docs":{"0":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0}}}}},"k":{"df":1,"docs":{"84":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"42":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"y":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"43":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":2.23606797749979},"71":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"3":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"3":{":":{"0":{".":{"2":{".":{"0":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":10,"docs":{"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"69":{"tf":2.449489742783178},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"41":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"42":{"tf":1.0},"67":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"68":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"76":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"i":{"df":8,"docs":{"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":3.0},"73":{"tf":1.0},"75":{"tf":1.7320508075688772}}}}},"df":1,"docs":{"89":{"tf":1.4142135623730951}},"e":{"a":{"d":{"df":1,"docs":{"79":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{">":{"a":{"a":{"df":1,"docs":{"84":{"tf":1.0}}},"df":1,"docs":{"84":{"tf":1.0}}},"d":{"c":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":1,"docs":{"84":{"tf":1.0}}},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":4,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"54":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"68":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}},"t":{"'":{"df":7,"docs":{"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"43":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0}}},"df":3,"docs":{"41":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"40":{"tf":1.0},"69":{"tf":1.0}}}}}},"i":{"b":{"_":{"3":{":":{"0":{".":{"9":{".":{"1":{"df":1,"docs":{"74":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"0":{"tf":1.0},"25":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.4142135623730951},"61":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":2.0}}},"y":{"_":{"3":{":":{"3":{".":{"1":{".":{"3":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"20":{"tf":1.7320508075688772},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":2.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"89":{"tf":2.0}}}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"14":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"3":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"66":{"tf":1.0},"84":{"tf":2.23606797749979},"89":{"tf":1.0}}}}},"o":{"a":{"d":{"df":5,"docs":{"19":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"69":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{":":{"/":{"/":{"/":{"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":{},"e":{"d":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"9":{"df":0,"docs":{},"n":{"/":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"/":{"1":{".":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"0":{"a":{"c":{"1":{"4":{"0":{"9":{"c":{"0":{"1":{"1":{"7":{"a":{"9":{"4":{"9":{"d":{"4":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"9":{"8":{"2":{"df":0,"docs":{},"e":{"0":{"7":{"df":0,"docs":{},"e":{"8":{"5":{"c":{"7":{"d":{"df":0,"docs":{},"e":{"1":{"b":{"6":{"1":{"8":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"44":{"tf":1.0},"60":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":3,"docs":{"81":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"43":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":2,"docs":{"81":{"tf":1.0},"84":{"tf":1.0}}}},"t":{"df":1,"docs":{"89":{"tf":1.0}}},"u":{"a":{"df":1,"docs":{"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1":{"tf":1.0},"47":{"tf":1.0},"56":{"tf":1.0}}}}},"o":{"df":4,"docs":{"1":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"12":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.4142135623730951},"60":{"tf":2.6457513110645907},"62":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"78":{"tf":2.23606797749979},"89":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"38":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"0":{"tf":1.0},"24":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"42":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"12":{"tf":1.0},"70":{"tf":1.7320508075688772},"76":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":2.0}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"38":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"66":{"tf":1.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"72":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"df":3,"docs":{"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"41":{"tf":1.0},"60":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":1,"docs":{"43":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"10":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"u":{"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"81":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"52":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":4.123105625617661},"84":{"tf":2.8284271247461903}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"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":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"?":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{".":{"7":{"1":{"4":{"3":{"&":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"o":{"d":{"df":2,"docs":{"60":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"63":{"tf":2.449489742783178}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"43":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"26":{"tf":1.0},"35":{"tf":2.0},"55":{"tf":1.7320508075688772},"64":{"tf":1.0},"84":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"51":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":16,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"32":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"35":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"75":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"62":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{":":{"1":{"1":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":1,"docs":{"89":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"e":{"df":18,"docs":{"14":{"tf":1.0},"18":{"tf":1.7320508075688772},"20":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"40":{"tf":1.0},"66":{"tf":2.0},"68":{"tf":2.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"40":{"tf":1.0},"48":{"tf":1.7320508075688772},"59":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":1,"docs":{"43":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":9,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":2.8284271247461903}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}},"w":{"df":11,"docs":{"12":{"tf":1.0},"14":{"tf":2.0},"16":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":2.23606797749979},"43":{"tf":2.6457513110645907},"44":{"tf":2.23606797749979},"76":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"84":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"40":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"78":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"w":{"df":4,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"70":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":{"69":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"38":{"tf":1.0},"42":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":2.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"33":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"3":{"tf":1.0},"43":{"tf":1.0},"84":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"k":{"df":1,"docs":{"78":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"84":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"c":{"df":5,"docs":{"57":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":11,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"42":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"77":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"44":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.7320508075688772},"83":{"tf":2.0},"84":{"tf":1.0}},"j":{"d":{"df":0,"docs":{},"k":{"df":3,"docs":{"2":{"tf":1.0},"26":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"2":{"tf":1.0},"68":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"42":{"tf":1.0},"85":{"tf":1.0}}}}},"t":{"df":2,"docs":{"81":{"tf":1.0},"83":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"60":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":11,"docs":{"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"69":{"tf":2.449489742783178},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"74":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":12,"docs":{"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.7320508075688772},"77":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"s":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"26":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"51":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"33":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.4142135623730951},"70":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":2.0},"89":{"tf":2.8284271247461903}},"e":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"60":{"tf":1.0},"75":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":9,"docs":{"37":{"tf":1.0},"57":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}}},"s":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"68":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"14":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"35":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0}}},"t":{"df":2,"docs":{"26":{"tf":1.0},"69":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"78":{"tf":1.0},"87":{"tf":1.0}}}}},"df":3,"docs":{"43":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"78":{"tf":1.0}}}}},"r":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"12":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"73":{"tf":2.0},"78":{"tf":1.4142135623730951},"89":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"40":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"43":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"14":{"tf":1.0},"42":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":2.0}},"s":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":3,"docs":{"58":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"m":{"df":1,"docs":{"43":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"76":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"11":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}}}},"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":{"2":{"tf":1.4142135623730951}}}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"23":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"12":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"/":{"b":{"a":{"df":0,"docs":{},"r":{"/":{"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":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"58":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"40":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"60":{"tf":2.6457513110645907}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"75":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":2,"docs":{"80":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":3,"docs":{"72":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"41":{"tf":1.0},"47":{"tf":1.7320508075688772},"49":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":34,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"14":{"tf":2.449489742783178},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"36":{"tf":2.0},"43":{"tf":3.3166247903554},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"60":{"tf":1.7320508075688772},"66":{"tf":2.0},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":3.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"83":{"tf":2.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"48":{"tf":1.0},"52":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"14":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"51":{"tf":1.0},"60":{"tf":2.23606797749979},"84":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"0":{"tf":1.0},"41":{"tf":1.0},"60":{"tf":2.0}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"q":{"df":2,"docs":{"26":{"tf":1.0},"43":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":37,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"84":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"43":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"j":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{")":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"d":{"df":4,"docs":{"19":{"tf":1.0},"38":{"tf":1.4142135623730951},"47":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"34":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"1":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"89":{"tf":1.0}}}},"d":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"69":{"tf":1.7320508075688772},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"84":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"l":{"df":1,"docs":{"78":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"78":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"1":{"tf":1.0}}},"o":{"a":{"d":{"df":8,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"o":{"df":1,"docs":{"89":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"41":{"tf":1.0},"57":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"35":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"(":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":5,"docs":{"50":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"60":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"26":{"tf":1.4142135623730951},"33":{"tf":1.0},"83":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"\"":{":":{"4":{"0":{".":{"7":{"1":{"0":{"3":{"3":{"5":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"43":{"tf":1.0},"84":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"68":{"tf":1.0},"72":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{":":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"d":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"59":{"tf":1.4142135623730951},"66":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":3.0}}}}}}},"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":2.0}}}},"u":{"df":0,"docs":{},"n":{"df":32,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"15":{"tf":2.0},"16":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"41":{"tf":1.0},"43":{"tf":2.0},"46":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":2.23606797749979},"62":{"tf":2.449489742783178},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"71":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"1":{"tf":2.23606797749979},"2":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"6":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"42":{"tf":1.0},"47":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"17":{"tf":2.23606797749979},"64":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"76":{"tf":1.0}}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"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":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"2":{".":{"0":{".":{"0":{"df":2,"docs":{"47":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"43":{"tf":1.0}}}}}}}}}},"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{"b":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"43":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":6,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":10,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951}}}}}}}},"df":82,"docs":{"0":{"tf":2.6457513110645907},"1":{"tf":2.8284271247461903},"10":{"tf":2.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":2.23606797749979},"36":{"tf":2.23606797749979},"37":{"tf":1.4142135623730951},"38":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"4":{"tf":2.0},"40":{"tf":1.0},"41":{"tf":2.6457513110645907},"42":{"tf":1.7320508075688772},"43":{"tf":3.605551275463989},"44":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"46":{"tf":2.8284271247461903},"47":{"tf":3.0},"48":{"tf":2.8284271247461903},"49":{"tf":2.23606797749979},"5":{"tf":2.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"53":{"tf":2.0},"54":{"tf":3.7416573867739413},"55":{"tf":2.23606797749979},"56":{"tf":2.449489742783178},"57":{"tf":1.7320508075688772},"58":{"tf":2.8284271247461903},"6":{"tf":2.23606797749979},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":2.449489742783178},"80":{"tf":2.6457513110645907},"81":{"tf":3.3166247903554},"82":{"tf":1.4142135623730951},"83":{"tf":4.0},"84":{"tf":2.449489742783178},"85":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":3.605551275463989},"9":{"tf":2.0}},"n":{"df":5,"docs":{"48":{"tf":2.23606797749979},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}},"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"3":{".":{"df":0,"docs":{},"g":{"8":{"df":2,"docs":{"43":{"tf":1.0},"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"36":{"tf":1.0},"43":{"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":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"c":{"df":2,"docs":{"40":{"tf":2.0},"83":{"tf":1.0}}},"df":29,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":1.0},"26":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":2.8284271247461903},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":3.605551275463989},"44":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":2.0},"73":{"tf":1.0},"76":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":3.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":2.0},"83":{"tf":2.0},"84":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":21,"docs":{"0":{"tf":1.0},"16":{"tf":2.449489742783178},"17":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":2.449489742783178},"42":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"43":{"tf":1.0}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"60":{"tf":1.0},"62":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.7320508075688772}},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"8":{"df":2,"docs":{"36":{"tf":1.0},"43":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":10,"docs":{"33":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"89":{"tf":1.0}},"m":{"df":1,"docs":{"78":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"43":{"tf":2.0},"60":{"tf":1.0},"62":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"d":{"df":3,"docs":{"26":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":4,"docs":{"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"26":{"tf":1.0},"43":{"tf":2.449489742783178},"48":{"tf":1.4142135623730951},"49":{"tf":2.0},"50":{"tf":1.0},"52":{"tf":2.23606797749979},"53":{"tf":1.7320508075688772},"54":{"tf":2.23606797749979},"56":{"tf":1.7320508075688772},"58":{"tf":2.0},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":2.6457513110645907},"83":{"tf":2.23606797749979}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"14":{"tf":1.0},"17":{"tf":2.0},"81":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.7320508075688772}}}}}}},"t":{"df":22,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":2.449489742783178},"17":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"34":{"tf":2.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":2.0},"75":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"[":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"36":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":15,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.4142135623730951},"35":{"tf":1.0},"43":{"tf":1.4142135623730951},"46":{"tf":1.0},"54":{"tf":2.449489742783178},"58":{"tf":1.7320508075688772},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"81":{"tf":1.0},"83":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":1,"docs":{"80":{"tf":1.0}}}},"w":{"df":3,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":4,"docs":{"43":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"58":{"tf":1.0}}}}}},"df":2,"docs":{"43":{"tf":1.0},"56":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"68":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"0":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"75":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"51":{"tf":1.0},"75":{"tf":1.0}}}}}},"l":{"df":1,"docs":{"89":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"40":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"38":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"4":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":2.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"36":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":15,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.0},"17":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":3.3166247903554},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.23606797749979}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":5,"docs":{"14":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"78":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"43":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"48":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"41":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":85,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":2.8284271247461903},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":2.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":2.0},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"9":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"1":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"64":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"12":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"42":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"4":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{".":{"_":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"33":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"75":{"tf":1.0}}},"df":17,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"66":{"tf":2.0},"67":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":2.23606797749979},"79":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"60":{"tf":2.23606797749979},"71":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":4.123105625617661}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"38":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"81":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":11,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":5,"docs":{"54":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"43":{"tf":1.0},"52":{"tf":1.0},"76":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"df":14,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":2.23606797749979},"60":{"tf":3.605551275463989},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"[":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"44":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"m":{"df":1,"docs":{"3":{"tf":1.0}},"p":{"df":1,"docs":{"33":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"36":{"tf":1.0},"43":{"tf":2.6457513110645907},"44":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"34":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"n":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"35":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"24":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"55":{"tf":1.0}}},"df":25,"docs":{"0":{"tf":1.0},"20":{"tf":2.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"24":{"tf":2.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":2.23606797749979},"31":{"tf":2.0},"32":{"tf":1.7320508075688772},"35":{"tf":1.0},"43":{"tf":1.7320508075688772},"60":{"tf":2.23606797749979},"63":{"tf":2.23606797749979},"64":{"tf":1.4142135623730951},"69":{"tf":2.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"78":{"tf":2.23606797749979},"79":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":2.0},"84":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"35":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"35":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"85":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"84":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"43":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"g":{"df":2,"docs":{"41":{"tf":1.0},"78":{"tf":1.0}}},"k":{"df":1,"docs":{"69":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"s":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"78":{"tf":1.0},"84":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"68":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":9,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}},"e":{"_":{"a":{"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":6,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"44":{"tf":1.0}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"42":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":7,"docs":{"0":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"49":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"3":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"df":11,"docs":{"20":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":2.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"43":{"tf":2.6457513110645907},"69":{"tf":3.1622776601683795},"72":{"tf":1.4142135623730951},"73":{"tf":2.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"69":{"tf":2.0},"73":{"tf":1.4142135623730951}}}}}},"v":{"df":3,"docs":{"43":{"tf":1.7320508075688772},"69":{"tf":3.1622776601683795},"73":{"tf":1.7320508075688772}}}}}}}},"p":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"41":{"tf":1.0},"47":{"tf":1.0},"73":{"tf":1.7320508075688772},"76":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"79":{"tf":1.0}}}},"n":{"df":1,"docs":{"63":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"40":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"74":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":2,"docs":{"26":{"tf":1.0},"64":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"84":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":2,"docs":{"80":{"tf":1.0},"85":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":14,"docs":{"26":{"tf":1.4142135623730951},"36":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":2.449489742783178},"74":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.7320508075688772},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"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":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"i":{"c":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"89":{"tf":2.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"33":{"tf":1.7320508075688772}}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"36":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"69":{"tf":1.7320508075688772}}}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"42":{"tf":1.0}}}},"t":{"df":6,"docs":{"12":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.4142135623730951}}}}}},"x":{"df":2,"docs":{"54":{"tf":1.0},"9":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"43":{"tf":1.0},"60":{"tf":1.0},"89":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":8,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.0},"84":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":49,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"60":{"tf":2.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"83":{"tf":3.872983346207417},"84":{"tf":3.605551275463989},"85":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":2.23606797749979},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"9":{"df":0,"docs":{},"n":{"/":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"/":{"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":1,"docs":{"58":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}},"x":{"df":1,"docs":{"83":{"tf":1.0}}}},"v":{"2":{"df":1,"docs":{"82":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"26":{"tf":2.449489742783178},"27":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"66":{"tf":1.0},"69":{"tf":4.242640687119285},"73":{"tf":2.0},"75":{"tf":2.0}},"u":{"df":10,"docs":{"16":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"60":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"42":{"tf":1.0},"69":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"b":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":20,"docs":{"1":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"34":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":2.449489742783178},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.7320508075688772},"62":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":2.449489742783178},"73":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.7320508075688772},"85":{"tf":1.0}}}}}}}},"i":{"a":{"df":4,"docs":{"0":{"tf":1.0},"42":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"60":{"tf":1.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"m":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"43":{"tf":1.0}}}},"z":{"df":1,"docs":{"59":{"tf":1.0}}}},"m":{"df":1,"docs":{"26":{"tf":1.0}}},"s":{"df":2,"docs":{"0":{"tf":1.0},"81":{"tf":2.0}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"83":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"17":{"tf":2.6457513110645907},"84":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"y":{"df":3,"docs":{"53":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.4142135623730951}}}}}}},"b":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":6,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"43":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"11":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"43":{"tf":1.0},"58":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"49":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"n":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"54":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":19,"docs":{"33":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":3,"docs":{"36":{"tf":1.0},"40":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"23":{"tf":1.4142135623730951},"51":{"tf":1.0},"72":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"37":{"tf":1.0},"43":{"tf":1.0},"76":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"x":{"d":{"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":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"23":{"tf":1.0}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"42":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.4142135623730951}}}},"u":{"'":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.7320508075688772}}}},"r":{"df":3,"docs":{"70":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"v":{"df":2,"docs":{"57":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"q":{"df":1,"docs":{"89":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}},"z":{"df":1,"docs":{"54":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"41":{"tf":1.0},"51":{"tf":2.23606797749979},"83":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"title":{"root":{"a":{"d":{"d":{"df":3,"docs":{"20":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"15":{"tf":1.0}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"65":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"35":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"a":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":10,"docs":{"19":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"13":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"29":{"tf":1.0},"61":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"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":1,"docs":{"79":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"22":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"12":{"tf":1.0},"43":{"tf":1.0},"7":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.0},"66":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"25":{"tf":1.0},"32":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"57":{"tf":1.0}}}},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"38":{"tf":1.0},"72":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"8":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":1,"docs":{"32":{"tf":1.0}}}},"p":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"80":{"tf":1.0}},"e":{"a":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}}}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"71":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"25":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}}},"y":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"20":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"89":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"24":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"81":{"tf":1.0},"84":{"tf":1.0}}}},"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":{"7":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"35":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"18":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"w":{"df":2,"docs":{"36":{"tf":1.0},"43":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}},"s":{"df":1,"docs":{"86":{"tf":1.0}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"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":{"2":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"10":{"tf":1.0},"18":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":5,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"62":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"t":{"df":24,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"16":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0}},"n":{"df":4,"docs":{"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"26":{"tf":1.0},"72":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"16":{"tf":1.0},"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"49":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"t":{"df":2,"docs":{"16":{"tf":1.0},"68":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"85":{"tf":1.0},"86":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"16":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"12":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"86":{"tf":1.0}},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"38":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"b":{"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":4,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"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":2,"docs":{"20":{"tf":1.0},"30":{"tf":1.0}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}}}}},"s":{"df":7,"docs":{"26":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"47":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"51":{"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/2.x/docs/en/searchindex.json b/2.x/docs/en/searchindex.json
index 2104853d0..ca97e499b 100644
--- a/2.x/docs/en/searchindex.json
+++ b/2.x/docs/en/searchindex.json
@@ -1 +1 @@
-{"doc_urls":["index.html#the-book-of-sbt-draft","Setup.html#installing-sbt-runner","Setup.html#prerequisites","Setup.html#installing-from-sdkman","Setup.html#universal-packages","Setup.html#verify-the-sbt-runner","sbt-by-example.html#sbt-by-example","sbt-by-example.html#create-a-minimum-sbt-build","sbt-by-example.html#start-sbt-shell","sbt-by-example.html#exit-sbt-shell","sbt-by-example.html#compile-a-project","sbt-by-example.html#recompile-on-code-change","sbt-by-example.html#create-a-source-file","sbt-by-example.html#run-a-previous-command","sbt-by-example.html#getting-help","sbt-by-example.html#run-your-app","sbt-by-example.html#set-thisbuild--scalaversion-from-sbt-shell","sbt-by-example.html#save-the-session-to-buildsbt","sbt-by-example.html#name-your-project","sbt-by-example.html#reload-the-build","sbt-by-example.html#add-toolkit-test-to-librarydependencies","sbt-by-example.html#run-tests","sbt-by-example.html#run-incremental-tests-continuously","sbt-by-example.html#write-a-test","sbt-by-example.html#make-the-test-pass","sbt-by-example.html#add-a-library-dependency","sbt-by-example.html#use-scala-repl","sbt-by-example.html#make-a-subproject","sbt-by-example.html#list-all-subprojects","sbt-by-example.html#compile-the-subproject","sbt-by-example.html#add-toolkit-test-to-the-subproject","sbt-by-example.html#broadcast-commands","sbt-by-example.html#make-hello-depend-on-hellocore","sbt-by-example.html#parse-json-using-ujson","sbt-by-example.html#add-sbt-native-packager-plugin","sbt-by-example.html#reload-and-create-a-zip-distribution","sbt-by-example.html#dockerize-your-app","sbt-by-example.html#set-the-version","sbt-by-example.html#switch-scalaversion-temporarily","sbt-by-example.html#inspect-the-dist-task","sbt-by-example.html#batch-mode","sbt-by-example.html#sbt-new-command","sbt-by-example.html#credits","guide/index.html#getting-started-with-sbt","guide/why-sbt-exists.html#why-sbt-exists","guide/why-sbt-exists.html#preliminaries","guide/why-sbt-exists.html#sbt","guide/why-sbt-exists.html#why-buildsbt-dsl","guide/sbt-new.html#creating-a-new-build","guide/sbt-new.html#giter8-templates","guide/sbt-components.html#sbt-components","guide/sbt-components.html#sbt-runner","guide/sbt-components.html#specifying-sbt-version-with-projectbuildproperties","guide/sbt-components.html#sbtn-sbt---client","guide/sbt-components.html#sbt-server","guide/sbt-components.html#coursier","guide/sbt-components.html#zinc","guide/sbt-components.html#bsp-server","guide/sbt-components.html#connecting-to-sbt-server","guide/sbt-components.html#sbt-shell-using-sbtn","guide/sbt-components.html#batch-mode-using-sbtn","guide/sbt-components.html#shutting-down-sbt-server","guide/running.html#working-with-an-existing-build","guide/running.html#sbt-shell-with-sbtn","guide/running.html#projects-command","guide/running.html#tasks-command","guide/running.html#compile","guide/running.html#run","guide/running.html#testquick","guide/running.html#watch-tilde-command","guide/build-definition-basics.html#build-definition-basics","guide/build-definition-basics.html#what-is-a-build-definition","guide/build-definition-basics.html#buildsbt-dsl","guide/build-definition-basics.html#typed-setting-expression","guide/build-definition-basics.html#vals-and-lazy-vals","guide/library-dependency-basics.html#library-dependency-basics","guide/library-dependency-basics.html#the-librarydependencies-key","guide/library-dependency-basics.html#getting-the-right-scala-version-with-","guide/library-dependency-basics.html#tracking-dependencies-in-one-place","guide/library-dependency-basics.html#viewing-library-dependencies","guide/multi-project-basics.html#multi-project-basics","guide/build-layout.html#build-layout","guide/build-layout.html#build-support-files","guide/build-layout.html#source-code","guide/build-layout.html#configuring-version-control","guide/IDE.html#sbt-with-ides","guide/IDE.html#using-sbt-as-metals-build-server","guide/IDE.html#importing-to-intellij-idea","guide/IDE.html#using-sbt-as-intellij-idea-build-server-advanced","guide/IDE.html#using-neovim-as-metals-frontend-advanced","setup-notes.html#setup-notes","setup-notes.html#os-specific-setup","setup-notes.html#macos","setup-notes.html#windows","setup-notes.html#linux"],"index":{"documentStore":{"docInfo":{"0":{"body":58,"breadcrumbs":4,"title":3},"1":{"body":48,"breadcrumbs":8,"title":3},"10":{"body":13,"breadcrumbs":6,"title":2},"11":{"body":43,"breadcrumbs":7,"title":3},"12":{"body":81,"breadcrumbs":7,"title":3},"13":{"body":14,"breadcrumbs":7,"title":3},"14":{"body":79,"breadcrumbs":6,"title":2},"15":{"body":17,"breadcrumbs":6,"title":2},"16":{"body":44,"breadcrumbs":9,"title":5},"17":{"body":64,"breadcrumbs":7,"title":3},"18":{"body":7,"breadcrumbs":6,"title":2},"19":{"body":50,"breadcrumbs":6,"title":2},"2":{"body":15,"breadcrumbs":6,"title":1},"20":{"body":16,"breadcrumbs":8,"title":4},"21":{"body":2,"breadcrumbs":6,"title":2},"22":{"body":2,"breadcrumbs":8,"title":4},"23":{"body":86,"breadcrumbs":6,"title":2},"24":{"body":15,"breadcrumbs":7,"title":3},"25":{"body":14,"breadcrumbs":7,"title":3},"26":{"body":129,"breadcrumbs":7,"title":3},"27":{"body":12,"breadcrumbs":6,"title":2},"28":{"body":9,"breadcrumbs":6,"title":2},"29":{"body":2,"breadcrumbs":6,"title":2},"3":{"body":24,"breadcrumbs":7,"title":2},"30":{"body":6,"breadcrumbs":8,"title":4},"31":{"body":23,"breadcrumbs":6,"title":2},"32":{"body":13,"breadcrumbs":8,"title":4},"33":{"body":91,"breadcrumbs":8,"title":4},"34":{"body":18,"breadcrumbs":9,"title":5},"35":{"body":83,"breadcrumbs":8,"title":4},"36":{"body":31,"breadcrumbs":6,"title":2},"37":{"body":7,"breadcrumbs":6,"title":2},"38":{"body":37,"breadcrumbs":7,"title":3},"39":{"body":35,"breadcrumbs":7,"title":3},"4":{"body":6,"breadcrumbs":7,"title":2},"40":{"body":37,"breadcrumbs":6,"title":2},"41":{"body":36,"breadcrumbs":7,"title":3},"42":{"body":10,"breadcrumbs":5,"title":1},"43":{"body":39,"breadcrumbs":5,"title":3},"44":{"body":0,"breadcrumbs":6,"title":2},"45":{"body":76,"breadcrumbs":5,"title":1},"46":{"body":83,"breadcrumbs":5,"title":1},"47":{"body":102,"breadcrumbs":6,"title":2},"48":{"body":282,"breadcrumbs":8,"title":3},"49":{"body":39,"breadcrumbs":7,"title":2},"5":{"body":4,"breadcrumbs":8,"title":3},"50":{"body":0,"breadcrumbs":6,"title":2},"51":{"body":21,"breadcrumbs":6,"title":2},"52":{"body":39,"breadcrumbs":8,"title":4},"53":{"body":39,"breadcrumbs":7,"title":3},"54":{"body":18,"breadcrumbs":6,"title":2},"55":{"body":14,"breadcrumbs":5,"title":1},"56":{"body":37,"breadcrumbs":5,"title":1},"57":{"body":21,"breadcrumbs":6,"title":2},"58":{"body":7,"breadcrumbs":7,"title":3},"59":{"body":105,"breadcrumbs":8,"title":4},"6":{"body":12,"breadcrumbs":6,"title":2},"60":{"body":15,"breadcrumbs":8,"title":4},"61":{"body":15,"breadcrumbs":8,"title":4},"62":{"body":31,"breadcrumbs":8,"title":3},"63":{"body":75,"breadcrumbs":8,"title":3},"64":{"body":34,"breadcrumbs":7,"title":2},"65":{"body":211,"breadcrumbs":7,"title":2},"66":{"body":29,"breadcrumbs":6,"title":1},"67":{"body":49,"breadcrumbs":6,"title":1},"68":{"body":94,"breadcrumbs":6,"title":1},"69":{"body":42,"breadcrumbs":8,"title":3},"7":{"body":14,"breadcrumbs":8,"title":4},"70":{"body":5,"breadcrumbs":8,"title":3},"71":{"body":60,"breadcrumbs":7,"title":2},"72":{"body":29,"breadcrumbs":7,"title":2},"73":{"body":77,"breadcrumbs":8,"title":3},"74":{"body":142,"breadcrumbs":8,"title":3},"75":{"body":25,"breadcrumbs":8,"title":3},"76":{"body":31,"breadcrumbs":7,"title":2},"77":{"body":54,"breadcrumbs":9,"title":4},"78":{"body":69,"breadcrumbs":9,"title":4},"79":{"body":44,"breadcrumbs":8,"title":3},"8":{"body":17,"breadcrumbs":7,"title":3},"80":{"body":65,"breadcrumbs":8,"title":3},"81":{"body":89,"breadcrumbs":6,"title":2},"82":{"body":40,"breadcrumbs":7,"title":3},"83":{"body":99,"breadcrumbs":6,"title":2},"84":{"body":28,"breadcrumbs":7,"title":3},"85":{"body":43,"breadcrumbs":6,"title":2},"86":{"body":166,"breadcrumbs":9,"title":5},"87":{"body":136,"breadcrumbs":7,"title":3},"88":{"body":256,"breadcrumbs":11,"title":7},"89":{"body":250,"breadcrumbs":9,"title":5},"9":{"body":13,"breadcrumbs":7,"title":3},"90":{"body":49,"breadcrumbs":5,"title":2},"91":{"body":0,"breadcrumbs":6,"title":3},"92":{"body":39,"breadcrumbs":4,"title":1},"93":{"body":10,"breadcrumbs":4,"title":1},"94":{"body":266,"breadcrumbs":4,"title":1}},"docs":{"0":{"body":"Warning This is a draft documentation of sbt 2.x that is yet to be released. While the general concept translates to sbt 1.x, details of both 2.x and this doc are subject to change. sbt logo sbt is a simple build tool for Scala and Java. sbt downloads your library dependencies via Coursier, incrementally compiles and tests your projects, integrates with IDEs like IntelliJ and VS Code, makes JAR packages, and publishes them to Maven Central , JVM community's package registry. scalaVersion := \"3.3.3\" You just need one line of build.sbt to get started with Scala.","breadcrumbs":"Introduction » The Book of sbt (Draft)","id":"0","title":"The Book of sbt (Draft)"},"1":{"body":"To build an sbt project, you'll need to take these steps: Install JDK (We recommend Eclipse Adoptium Temurin JDK 8, 11, or 17, or Zulu JDK 8 for macOS with ARM chips). Install sbt runner. sbt runner is a script that invokes a declared version of sbt, downloading it beforehand if necessary. This allows build authors to precisely control the sbt version, instead of relying on users' machine environment.","breadcrumbs":"Quick Start » Installing sbt runner » Installing sbt runner","id":"1","title":"Installing sbt runner"},"10":{"body":"As a convention, we will use the sbt:...> or > prompt to mean that we're in the sbt interactive shell. $ sbt\nsbt:foo-build> compile","breadcrumbs":"Quick Start » sbt by example » Compile a project","id":"10","title":"Compile a project"},"11":{"body":"Prefixing the compile command (or any other command) with ~ causes the command to be automatically re-executed whenever one of the source files within the project is modified. For example: sbt:foo-build> ~compile\n[success] Total time: 0 s, completed 28 Jul 2023, 13:32:35\n[info] 1. Monitoring source files for foo-build/compile...\n[info] Press to interrupt or '?' for more options.","breadcrumbs":"Quick Start » sbt by example » Recompile on code change","id":"11","title":"Recompile on code change"},"12":{"body":"Leave the previous command running. From a different shell or in your file manager create in the foo-build directory the following nested directories: src/main/scala/example. Then, create Hello.scala in the example directory using your favorite editor as follows: package example object Hello { def main(args: Array[String]): Unit = { println(\"Hello\") }\n} This new file should be picked up by the running command: [info] Build triggered by /tmp/foo-build/src/main/scala/example/Hello.scala. Running 'compile'.\n[info] compiling 1 Scala source to /tmp/foo-build/target/scala-2.12/classes ...\n[success] Total time: 0 s, completed 28 Jul 2023, 13:38:55\n[info] 2. Monitoring source files for foo-build/compile...\n[info] Press to interrupt or '?' for more options. Press Enter to exit ~compile.","breadcrumbs":"Quick Start » sbt by example » Create a source file","id":"12","title":"Create a source file"},"13":{"body":"From sbt shell, press up-arrow twice to find the compile command that you executed at the beginning. sbt:foo-build> compile","breadcrumbs":"Quick Start » sbt by example » Run a previous command","id":"13","title":"Run a previous command"},"14":{"body":"Use the help command to get basic help about the available commands. sbt:foo-build> help (; )* Runs the provided semicolon-separated commands. about Displays basic information about sbt and the build. tasks Lists the tasks defined for the current project. settings Lists the settings defined for the current project. reload (Re)loads the current project or changes to plugins project or returns from it. new Creates a new sbt build. new Creates a new sbt build. projects Lists the names of available projects or temporarily adds/removes extra builds to the session. .... Display the description of a specific task: sbt:foo-build> help run\nRuns a main class, passing along arguments provided on the command line.","breadcrumbs":"Quick Start » sbt by example » Getting help","id":"14","title":"Getting help"},"15":{"body":"sbt:foo-build> run\n[info] running example.Hello\nHello\n[success] Total time: 0 s, completed 28 Jul 2023, 13:40:31","breadcrumbs":"Quick Start » sbt by example » Run your app","id":"15","title":"Run your app"},"16":{"body":"sbt:foo-build> set ThisBuild / scalaVersion := \"$example_scala213$\"\n[info] Defining ThisBuild / scalaVersion\n[info] The new value will be used by Compile / bspBuildTarget, Compile / dependencyTreeCrossProjectId and 50 others.\n[info] Run `last` for details.\n[info] Reapplying settings...\n[info] set current project to foo-build (in build file:/tmp/foo-build/) Check the scalaVersion setting: sbt:foo-build> scalaVersion\n[info] $example_scala213$","breadcrumbs":"Quick Start » sbt by example » Set ThisBuild / scalaVersion from sbt shell","id":"16","title":"Set ThisBuild / scalaVersion from sbt shell"},"17":{"body":"We can save the ad-hoc settings using session save. sbt:foo-build> session save\n[info] Reapplying settings...\n[info] set current project to foo-build (in build file:/tmp/foo-build/)\n[warn] build source files have changed\n[warn] modified files:\n[warn] /tmp/foo-build/build.sbt\n[warn] Apply these changes by running `reload`.\n[warn] Automatically reload the build when source changes are detected by setting `Global / onChangedBuildSource := ReloadOnSourceChanges`.\n[warn] Disable this warning by setting `Global / onChangedBuildSource := IgnoreSourceChanges`. build.sbt file should now contain: ThisBuild / scalaVersion := \"$example_scala213$\"","breadcrumbs":"Quick Start » sbt by example » Save the session to build.sbt","id":"17","title":"Save the session to build.sbt"},"18":{"body":"Using an editor, change build.sbt as follows: @@snip name {}","breadcrumbs":"Quick Start » sbt by example » Name your project","id":"18","title":"Name your project"},"19":{"body":"Use the reload command to reload the build. The command causes the build.sbt file to be re-read, and its settings applied. sbt:foo-build> reload\n[info] welcome to sbt 1.10.1 (Eclipse Adoptium Java 17.0.8)\n[info] loading project definition from /tmp/foo-build/project\n[info] loading settings for project hello from build.sbt ...\n[info] set current project to Hello (in build file:/tmp/foo-build/)\nsbt:Hello> Note that the prompt has now changed to sbt:Hello>.","breadcrumbs":"Quick Start » sbt by example » Reload the build","id":"19","title":"Reload the build"},"2":{"body":"sbt runs on all major operating systems; however, it requires JDK 8 or higher to run. java -version\n# openjdk version \"1.8.0_352\"","breadcrumbs":"Quick Start » Installing sbt runner » Prerequisites","id":"2","title":"Prerequisites"},"20":{"body":"Using an editor, change build.sbt as follows: @@snip example-test {} Use the reload command to reflect the change in build.sbt. sbt:Hello> reload","breadcrumbs":"Quick Start » sbt by example » Add toolkit-test to libraryDependencies","id":"20","title":"Add toolkit-test to libraryDependencies"},"21":{"body":"sbt:Hello> test","breadcrumbs":"Quick Start » sbt by example » Run tests","id":"21","title":"Run tests"},"22":{"body":"sbt:Hello> ~testQuick","breadcrumbs":"Quick Start » sbt by example » Run incremental tests continuously","id":"22","title":"Run incremental tests continuously"},"23":{"body":"Leaving the previous command running, create a file named src/test/scala/example/HelloSuite.scala using an editor: @@snip example-test {} ~testQuick should pick up the change: [info] 2. Monitoring source files for hello/testQuick...\n[info] Press to interrupt or '?' for more options.\n[info] Build triggered by /tmp/foo-build/src/test/scala/example/HelloSuite.scala. Running 'testQuick'.\n[info] compiling 1 Scala source to /tmp/foo-build/target/scala-2.13/test-classes ...\nHelloSuite:\n==> X HelloSuite.Hello should start with H 0.004s munit.FailException: /tmp/foo-build/src/test/scala/example/HelloSuite.scala:4 assertion failed\n3: test(\"Hello should start with H\") {\n4: assert(\"hello\".startsWith(\"H\"))\n5: } at munit.FunSuite.assert(FunSuite.scala:11) at HelloSuite.\\$anonfun\\$new\\$1(HelloSuite.scala:4)\n[error] Failed: Total 1, Failed 1, Errors 0, Passed 0\n[error] Failed tests:\n[error] HelloSuite\n[error] (Test / testQuick) sbt.TestsFailedException: Tests unsuccessful","breadcrumbs":"Quick Start » sbt by example » Write a test","id":"23","title":"Write a test"},"24":{"body":"Using an editor, change src/test/scala/example/HelloSuite.scala to: @@snip example-test {} Confirm that the test passes, then press Enter to exit the continuous test.","breadcrumbs":"Quick Start » sbt by example » Make the test pass","id":"24","title":"Make the test pass"},"25":{"body":"Using an editor, change build.sbt as follows: @@snip example-library {} Use the reload command to reflect the change in build.sbt.","breadcrumbs":"Quick Start » sbt by example » Add a library dependency","id":"25","title":"Add a library dependency"},"26":{"body":"We can find out the current weather in New York. sbt:Hello> console\n[info] Starting scala interpreter...\nWelcome to Scala 2.13.12 (OpenJDK 64-Bit Server VM, Java 17).\nType in expressions for evaluation. Or try :help. scala> :paste\n// Entering paste mode (ctrl-D to finish) import sttp.client4.quick._\nimport sttp.client4.Response val newYorkLatitude: Double = 40.7143\nval newYorkLongitude: Double = -74.006\nval response: Response[String] = quickRequest .get( uri\"https://api.open-meteo.com/v1/forecast?latitude=\\$newYorkLatitude&longitude=\\$newYorkLongitude¤t_weather=true\" ) .send() println(ujson.read(response.body).render(indent = 2)) // press Ctrl+D // Exiting paste mode, now interpreting. { \"latitude\": 40.710335, \"longitude\": -73.99307, \"generationtime_ms\": 0.36704540252685547, \"utc_offset_seconds\": 0, \"timezone\": \"GMT\", \"timezone_abbreviation\": \"GMT\", \"elevation\": 51, \"current_weather\": { \"temperature\": 21.3, \"windspeed\": 16.7, \"winddirection\": 205, \"weathercode\": 3, \"is_day\": 1, \"time\": \"2023-08-04T10:00\" }\n}\nimport sttp.client4.quick._\nimport sttp.client4.Response\nval newYorkLatitude: Double = 40.7143\nval newYorkLongitude: Double = -74.006\nval response: sttp.client4.Response[String] = Response({\"latitude\":40.710335,\"longitude\":-73.99307,\"generationtime_ms\":0.36704540252685547,\"utc_offset_seconds\":0,\"timezone\":\"GMT\",\"timezone_abbreviation\":\"GMT\",\"elevation\":51.0,\"current_weather\":{\"temperature\":21.3,\"windspeed\":16.7,\"winddirection\":205.0,\"weathercode\":3,\"is_day\":1,\"time\":\"2023-08-04T10:00\"}},200,,List(:status: 200, content-encoding: deflate, content-type: application/json; charset=utf-8, date: Fri, 04 Aug 2023 10:09:11 GMT),List(),RequestMetadata(GET,https://api.open-meteo.com/v1/forecast?latitude=40.7143&longitude... scala> :q // to quit","breadcrumbs":"Quick Start » sbt by example » Use Scala REPL","id":"26","title":"Use Scala REPL"},"27":{"body":"Change build.sbt as follows: @@snip example-sub1 {} Use the reload command to reflect the change in build.sbt.","breadcrumbs":"Quick Start » sbt by example » Make a subproject","id":"27","title":"Make a subproject"},"28":{"body":"sbt:Hello> projects\n[info] In file:/tmp/foo-build/\n[info] * hello\n[info] helloCore","breadcrumbs":"Quick Start » sbt by example » List all subprojects","id":"28","title":"List all subprojects"},"29":{"body":"sbt:Hello> helloCore/compile","breadcrumbs":"Quick Start » sbt by example » Compile the subproject","id":"29","title":"Compile the subproject"},"3":{"body":"To install both JDK and sbt, consider using SDKMAN . sdk install java $(sdk list java | grep -o \"\\b8\\.[0-9]*\\.[0-9]*\\-tem\" | head -1)\nsdk install sbt","breadcrumbs":"Quick Start » Installing sbt runner » Installing from SDKMAN","id":"3","title":"Installing from SDKMAN"},"30":{"body":"Change build.sbt as follows: @@snip example-sub2 {}","breadcrumbs":"Quick Start » sbt by example » Add toolkit-test to the subproject","id":"30","title":"Add toolkit-test to the subproject"},"31":{"body":"Set aggregate so that the command sent to hello is broadcast to helloCore too: @@snip example-sub3 {} After reload, ~testQuick now runs on both subprojects: sbt:Hello> ~testQuick Press Enter to exit the continuous test.","breadcrumbs":"Quick Start » sbt by example » Broadcast commands","id":"31","title":"Broadcast commands"},"32":{"body":"Use .dependsOn(...) to add a dependency on other subprojects. Also let's move the toolkit dependency to helloCore. @@snip example-sub4 {}","breadcrumbs":"Quick Start » sbt by example » Make hello depend on helloCore","id":"32","title":"Make hello depend on helloCore"},"33":{"body":"Let's use uJson from the toolkit in helloCore. @@snip example-weather-build {} After reload, add core/src/main/scala/example/core/Weather.scala: package example.core import sttp.client4.quick._\nimport sttp.client4.Response object Weather { def temp() = { val response: Response[String] = quickRequest .get( uri\"https://api.open-meteo.com/v1/forecast?latitude=40.7143&longitude=-74.006¤t_weather=true\" ) .send() val json = ujson.read(response.body) json.obj(\"current_weather\")(\"temperature\").num }\n} Next, change src/main/scala/example/Hello.scala as follows: package example import example.core.Weather object Hello { def main(args: Array[String]): Unit = { val temp = Weather.temp() println(s\"Hello! The current temperature in New York is \\$temp C.\") }\n} Let's run the app to see if it worked: sbt:Hello> run\n[info] compiling 1 Scala source to /tmp/foo-build/core/target/scala-2.13/classes ...\n[info] compiling 1 Scala source to /tmp/foo-build/target/scala-2.13/classes ...\n[info] running example.Hello\nHello! The current temperature in New York is 22.7 C.","breadcrumbs":"Quick Start » sbt by example » Parse JSON using uJson","id":"33","title":"Parse JSON using uJson"},"34":{"body":"Using an editor, create project/plugins.sbt: @@snip example-weather-plugins {} Next change build.sbt as follows to add JavaAppPackaging: @@snip example-weather-build2 {}","breadcrumbs":"Quick Start » sbt by example » Add sbt-native-packager plugin","id":"34","title":"Add sbt-native-packager plugin"},"35":{"body":"sbt:Hello> reload\n...\nsbt:Hello> dist\n[info] Wrote /private/tmp/foo-build/target/scala-2.13/hello_2.13-0.1.0-SNAPSHOT.pom\n[info] Main Scala API documentation to /tmp/foo-build/target/scala-2.13/api...\n[info] Main Scala API documentation successful.\n[info] Main Scala API documentation to /tmp/foo-build/core/target/scala-2.13/api...\n[info] Wrote /tmp/foo-build/core/target/scala-2.13/hello-core_2.13-0.1.0-SNAPSHOT.pom\n[info] Main Scala API documentation successful.\n[success] All package validations passed\n[info] Your package is ready in /tmp/foo-build/target/universal/hello-0.1.0-SNAPSHOT.zip Here's how you can run the packaged app: $ /tmp/someother\n$ cd /tmp/someother\n$ unzip -o -d /tmp/someother /tmp/foo-build/target/universal/hello-0.1.0-SNAPSHOT.zip\n$ ./hello-0.1.0-SNAPSHOT/bin/hello\nHello! The current temperature in New York is 22.7 C.","breadcrumbs":"Quick Start » sbt by example » Reload and create a .zip distribution","id":"35","title":"Reload and create a .zip distribution"},"36":{"body":"Note that a Docker daemon will need to be running in order for this to work. sbt:Hello> Docker/publishLocal\n....\n[info] Built image hello with tags [0.1.0-SNAPSHOT] Here's how to run the Dockerized app: $ docker run hello:0.1.0-SNAPSHOT\nHello! The current temperature in New York is 22.7 C.","breadcrumbs":"Quick Start » sbt by example » Dockerize your app","id":"36","title":"Dockerize your app"},"37":{"body":"Change build.sbt as follows: @@snip example-weather-build3 {}","breadcrumbs":"Quick Start » sbt by example » Set the version","id":"37","title":"Set the version"},"38":{"body":"sbt:Hello> ++3.3.3!\n[info] Forcing Scala version to 3.3.3 on all projects.\n[info] Reapplying settings...\n[info] Set current project to Hello (in build file:/tmp/foo-build/) Check the scalaVersion setting: sbt:Hello> scalaVersion\n[info] helloCore / scalaVersion\n[info] 3.3.3\n[info] scalaVersion\n[info] 3.3.3 This setting will go away after reload.","breadcrumbs":"Quick Start » sbt by example » Switch scalaVersion temporarily","id":"38","title":"Switch scalaVersion temporarily"},"39":{"body":"To find out more about dist, try help and inspect. sbt:Hello> help dist\nCreates the distribution packages.\nsbt:Hello> inspect dist To call inspect recursively on the dependency tasks use inspect tree. sbt:Hello> inspect tree dist\n[info] dist = Task[java.io.File]\n[info] +-Universal / dist = Task[java.io.File]\n....","breadcrumbs":"Quick Start » sbt by example » Inspect the dist task","id":"39","title":"Inspect the dist task"},"4":{"body":"sbt-1.10.0.zip sbt-1.10.0.tgz sbt-1.10.0.msi","breadcrumbs":"Quick Start » Installing sbt runner » Universal packages","id":"4","title":"Universal packages"},"40":{"body":"You can also run sbt in batch mode, passing sbt commands directly from the terminal. $ sbt clean \"testOnly HelloSuite\" Note : Running in batch mode requires JVM spinup and JIT each time, so your build will run much slower . For day-to-day coding, we recommend using the sbt shell or a continuous test like ~testQuick.","breadcrumbs":"Quick Start » sbt by example » Batch mode","id":"40","title":"Batch mode"},"41":{"body":"You can use the sbt new command to quickly setup a simple \"Hello world\" build. $ sbt new scala/scala-seed.g8\n....\nA minimal Scala project. name [My Something Project]: hello Template applied in ./hello When prompted for the project name, type hello. This will create a new project under a directory named hello.","breadcrumbs":"Quick Start » sbt by example » sbt new command","id":"41","title":"sbt new command"},"42":{"body":"This page is based on the Essential sbt tutorial written by William \"Scala William\" Narmontas.","breadcrumbs":"Quick Start » sbt by example » Credits","id":"42","title":"Credits"},"43":{"body":"sbt uses a small number of concepts to support flexible and powerful build definitions. There are not that many concepts, but sbt is not exactly like other build systems and there are details you will stumble on if you haven't read the documentation. The Getting Started Guide covers the concepts you need to know to create and maintain an sbt build definition. It is highly recommended to read the Getting Started Guide!","breadcrumbs":"Getting Started » Getting Started with sbt","id":"43","title":"Getting Started with sbt"},"44":{"body":"","breadcrumbs":"Getting Started » Why sbt exists » Why sbt exists","id":"44","title":"Why sbt exists"},"45":{"body":"In Scala, a library or a program is compiled using the Scala compiler, scalac, as documented in the Scala 3 Book : @main def hello() = println(\"Hello, World!\") $ scalac hello.scala\n$ scala hello\nHello, World! This process gets tedious and slow if we were to invoke scalac directly since we'd have to pass all the Scala source file names. Furthermore, most non-trivial programs will likely have library dependencies, and will therefore also depend transitively on their dependencies. This is doubly complicated for Scala ecosystem because we have Scala 2.12, 2.13 ecosystem, Scala 3.x ecosystem, JVM, JS, and Native platforms. Rather than working with JAR files and scalac, we can avoid manual toil by introducing a higher-level subproject abstraction and by using a build tool.","breadcrumbs":"Getting Started » Why sbt exists » Preliminaries","id":"45","title":"Preliminaries"},"46":{"body":"sbt is a simple build tool created for Scala and Java. It lets us declare subprojects and their various dependencies and custom tasks to ensure that we'll always get a fast, repeatable build. To accomplish this goal, sbt does several things: The version of sbt itself is tracked in project/build.properties. Defines a domain-specific language (DSL) called build.sbt DSL that can declare the Scala version and other subproject information in build.sbt. Uses Coursier to fetch subprojects dependencies and their dependencies. Invokes Zinc to incrementally compile Scala and Java sources. Automatically runs tasks in parallel whenever possible. Defines conventions on how packages are published to Maven repositories to interoperate with the wider JVM ecosystem. To a large extent, sbt standardizes the commands needed to build a given program or library.","breadcrumbs":"Getting Started » Why sbt exists » sbt","id":"46","title":"sbt"},"47":{"body":"build.sbt DSL makes sbt a unique build tool, as opposed to other tools that use configuration file formats like YAML, TOML, and XML. Originally developed beween 2010 and 2013, build.sbt can start almost like a YAML file, declaring just scalaVersion and libraryDependencies, but it can supports more features to keep the build definition organized as the build grows larger: To avoid repeating the same information, like the version number for a library, build.sbt can declare variables using val. Uses Scala language constructs like if to define settings and tasks, when needed. Statically typed settings and tasks, to catch typos and type errors before the build starts. The type also helps passing data from one task from another. Provides structured concurrency via Initialized[Task[A]]. The DSL uses direct style .value syntax to concisely define task graphs. Enpowers the community to extend sbt with plugins that provide custom tasks or language extensions like Scala.JS.","breadcrumbs":"Getting Started » Why sbt exists » Why build.sbt DSL?","id":"47","title":"Why build.sbt DSL?"},"48":{"body":"To start a new build with sbt, use sbt new. $ mkdir /tmp/foo\n$ cd /tmp/foo\n$ sbt new Welcome to sbt new!\nHere are some templates to get started: a) scala/toolkit.local - Scala Toolkit (beta) by Scala Center and VirtusLab b) typelevel/toolkit.local - Toolkit to start building Typelevel apps c) sbt/cross-platform.local - A cross-JVM/JS/Native project d) scala/scala3.g8 - Scala 3 seed template e) scala/scala-seed.g8 - Scala 2 seed template f) playframework/play-scala-seed.g8 - A Play project in Scala g) playframework/play-java-seed.g8 - A Play project in Java i) softwaremill/tapir.g8 - A tapir project using Netty m) scala-js/vite.g8 - A Scala.JS + Vite project n) holdenk/sparkProjectTemplate.g8 - A Scala Spark project o) spotify/scio.g8 - A Scio project p) disneystreaming/smithy4s.g8 - A Smithy4s project q) quit\nSelect a template: If you select \"a\", you will be prompted by more questions: Select a template: a\nScala version (default: 3.3.0):\nScala Toolkit version (default: 0.2.0): Hit return key to select the default values. [info] Updated file /private/tmp/bar/project/build.properties: set sbt.version to 1.9.8\n[info] welcome to sbt 1.9.8 (Azul Systems, Inc. Java 1.8.0_352)\n....\n[info] set current project to bar (in build file:/private/tmp/foo/)\n[info] sbt server started at local:///Users/eed3si9n/.sbt/1.0/server/d0ac1409c0117a949d47/sock\n[info] started sbt server\nsbt:bar> exit\n[info] shutting down sbt server Here are the files that are created by this template: .\n├── build.sbt\n├── project\n│ └── build.properties\n├── src\n│ ├── main\n│ │ └── scala\n│ │ └── example\n│ │ └── Main.scala\n│ └── test\n│ └── scala\n│ └── example\n│ └── ExampleSuite.scala\n└── target Let's take a look at the build.sbt file: val toolkitV = \"0.2.0\"\nval toolkit = \"org.scala-lang\" %% \"toolkit\" % toolkitV\nval toolkitTest = \"org.scala-lang\" %% \"toolkit-test\" % toolkitV scalaVersion := \"3.3.0\"\nlibraryDependencies += toolkit\nlibraryDependencies += (toolkitTest % Test) This is called a build definition , and it contains the information sbt needs to compile your project. This is written in .sbt format, a subset of Scala language. Here's what's in src/main/scala/example/Main.scala: package example @main def main(args: String*): Unit = println(s\"Hello ${args.mkString}\") This is a Hello world template. We can run it from the sbt shell by starting sbt --client and typing run inside the shell: $ sbt --client\n[info] entering *experimental* thin client - BEEP WHIRR\n[info] server was not detected. starting an instance\n....\ninfo] terminate the server with `shutdown`\n[info] disconnect from the server with `exit`\nsbt:bar> run Raj\n[info] running example.main Raj\nHello Raj\n[success] Total time: 0 s, completed Feb 18, 2024 2:38:10 PM","breadcrumbs":"Getting Started » Creating a new build » Creating a new build","id":"48","title":"Creating a new build"},"49":{"body":"In addition to a few .local templates, sbt new integrates with Giter8 , and open templating system that uses GitHub to host templates. For example, scala/scala3.g8 is maintained by the Scala team to create a new Scala 3 build: $ /tmp\n$ sbt new scala/scala3.g8 Giter8 wiki lists over 100 templates that can jump start your new build.","breadcrumbs":"Getting Started » Creating a new build » Giter8 templates","id":"49","title":"Giter8 templates"},"5":{"body":"sbt --script-version\n# 1.10.0","breadcrumbs":"Quick Start » Installing sbt runner » Verify the sbt runner","id":"5","title":"Verify the sbt runner"},"50":{"body":"","breadcrumbs":"Getting Started » sbt components » sbt components","id":"50","title":"sbt components"},"51":{"body":"An sbt build is executed using the sbt runner, also called \"sbt-the-shell-script\" to distinguish from other components. It's important to note is that sbt runner is designed to run any version of sbt.","breadcrumbs":"Getting Started » sbt components » sbt runner","id":"51","title":"sbt runner"},"52":{"body":"The sbt runner executes a subcomponent called sbt launcher, which reads project/build.properties to determine the sbt version for the build, and downloads the artifacts if they haven't been cached: sbt.version=2.0.0-alpha7 This means that: Anyone who checkouts your build would get the same sbt version, regardless of sbt runner they may have installed on their machines. The change of sbt version can be tracked in a version control system, like git.","breadcrumbs":"Getting Started » sbt components » Specifying sbt version with project/build.properties","id":"52","title":"Specifying sbt version with project/build.properties"},"53":{"body":"sbtn (native thin client) is a subcomponent of the sbt runner, called when you pass --client flag to the sbt runner, and is used to send commands to the sbt server. It is called sbtn because it is compiled to native code using GraalVM native-image. The protocol between sbtn and sbt server is stable enough that it should work between most recent versions of sbt.","breadcrumbs":"Getting Started » sbt components » sbtn (sbt --client)","id":"53","title":"sbtn (sbt --client)"},"54":{"body":"The sbt server is the actual build tool whose version is specified using project/build.properties. The sbt server acts as a cashier to take commands from sbtn and editors.","breadcrumbs":"Getting Started » sbt components » sbt server","id":"54","title":"sbt server"},"55":{"body":"The sbt server runs Couriser as a subcomponent to resolve Scala library, Scala compiler, and any other library dependencies your build needs.","breadcrumbs":"Getting Started » sbt components » Coursier","id":"55","title":"Coursier"},"56":{"body":"Zinc is the incremental compiler for Scala, developed and maintained by sbt project. An often overlooked aspect of Zinc is that Zinc provides a stable API to invoke any modern versions of Scala compiler. Combined with the fact that Coursier can resolve any Scala version, with sbt we can invoke any modern versions of Scala just by writing a single line build.sbt: scalaVersion := \"3.3.3\"","breadcrumbs":"Getting Started » sbt components » Zinc","id":"56","title":"Zinc"},"57":{"body":"The sbt server supports Build Server Protocol (BSP) to list build targets, build them, etc. This allows IDEs like IntelliJ and Metals to communicate with a running sbt server programmatically.","breadcrumbs":"Getting Started » sbt components » BSP server","id":"57","title":"BSP server"},"58":{"body":"Let's look at three ways of connecting to the sbt server.","breadcrumbs":"Getting Started » sbt components » Connecting to sbt server","id":"58","title":"Connecting to sbt server"},"59":{"body":"Run sbt --client in the working directory of your build: sbt --client This should display something like the following: $ sbt --client\n[info] server was not detected. starting an instance\n[info] welcome to sbt 2.0.0-alpha7 (Azul Systems, Inc. Java 1.8.0_352)\n[info] loading project definition from /private/tmp/bar/project\n[info] loading settings for project bar from build.sbt ...\n[info] set current project to bar (in build file:/private/tmp/bar/)\n[info] sbt server started at local:///Users/eed3si9n/.sbt/2.0.0-alpha7/server/d0ac1409c0117a949d47/sock\n[info] started sbt server\n[info] terminate the server with `shutdown`\n[info] disconnect from the server with `exit`\nsbt:bar> Running sbt with no command line arguments starts sbt shell. sbt shell has a command prompt (with tab completion and history!). For example, you could type compile at the sbt shell: sbt:bar> compile To compile again, press up arrow and then enter. To leave sbt shell, type exit or use Ctrl-D (Unix) or Ctrl-Z (Windows).","breadcrumbs":"Getting Started » sbt components » sbt shell using sbtn","id":"59","title":"sbt shell using sbtn"},"6":{"body":"This page assumes you've installed sbt runner . Let's start with examples rather than explaining how sbt works or why.","breadcrumbs":"Quick Start » sbt by example » sbt by example","id":"6","title":"sbt by example"},"60":{"body":"You can also run sbt in batch mode: sbt --client compile\nsbt --client testOnly TestA $ sbt --client compile\n> compile","breadcrumbs":"Getting Started » sbt components » Batch mode using sbtn","id":"60","title":"Batch mode using sbtn"},"61":{"body":"Run the following to shutdown all sbt servers on your machine: sbt shutdownall Or the following to shutdown just the current one: sbt --client shutdown","breadcrumbs":"Getting Started » sbt components » Shutting down sbt server","id":"61","title":"Shutting down sbt server"},"62":{"body":"This page describes how to use sbt once you have set up your project. This page assumes you've read sbt components . If you pull a repository that uses sbt, it's fairly easy to get started. First, get the package from GitHub, or some other repository. $ git clone https://github.com/scalanlp/breeze.git\n$ cd breeze","breadcrumbs":"Getting Started » Working with an existing build » Working with an existing build","id":"62","title":"Working with an existing build"},"63":{"body":"As mentioned in sbt components , start an sbt shell: $ sbt --client This should display something like the following: $ sbt --client\n[info] entering *experimental* thin client - BEEP WHIRR\n[info] server was not detected. starting an instance\n[info] welcome to sbt 1.5.5 (Azul Systems, Inc. Java 1.8.0_352)\n[info] loading global plugins from /Users/eed3si9n/.sbt/1.0/plugins\n[info] loading settings for project breeze-build from plugins.sbt ...\n[info] loading project definition from /private/tmp/breeze/project\nDownloading https://repo1.maven.org/maven2/org/scalanlp/sbt-breeze-expand-codegen_2.12_1.0/0.2.1/sbt-breeze-expand-codegen-0.2.1.pom\n....\n[info] sbt server started at local:///Users/eed3si9n/.sbt/1.0/server/dd982e07e85c7de1b618/sock\n[info] terminate the server with `shutdown`\n[info] disconnect from the server with `exit`\nsbt:breeze-parent>","breadcrumbs":"Getting Started » Working with an existing build » sbt shell with sbtn","id":"63","title":"sbt shell with sbtn"},"64":{"body":"Let's explore the build by listing out the subprojects with projects command: sbt:breeze-parent> projects\n[info] In file:/private/tmp/breeze/\n[info] benchmark\n[info] macros\n[info] math\n[info] natives\n[info] * root\n[info] viz This shows that this build has 6 subprojects, including the current subproject called root.","breadcrumbs":"Getting Started » Working with an existing build » projects command","id":"64","title":"projects command"},"65":{"body":"Similarly, we can list the tasks availble to this build using tasks command: sbt:breeze-parent> tasks This is a list of tasks defined for the current project.\nIt does not list the scopes the tasks are defined in; use the 'inspect' command for that.\nTasks produce values. Use the 'show' command to run the task and print the resulting value. bgRun Start an application's default main class as a background job bgRunMain Start a provided main class as a background job clean Deletes files produced by the build, such as generated sources, compiled classes, and task caches. compile Compiles sources. console Starts the Scala interpreter with the project classes on the classpath. consoleProject Starts the Scala interpreter with the sbt and the build definition on the classpath and useful imports. consoleQuick Starts the Scala interpreter with the project dependencies on the classpath. copyResources Copies resources to the output directory. doc Generates API documentation. package Produces the main artifact, such as a binary jar. This is typically an alias for the task that actually does the packaging. packageBin Produces a main artifact, such as a binary jar. packageDoc Produces a documentation artifact, such as a jar containing API documentation. packageSrc Produces a source artifact, such as a jar containing sources and resources. publish Publishes artifacts to a repository. publishLocal Publishes artifacts to the local Ivy repository. publishM2 Publishes artifacts to the local Maven repository. run Runs a main class, passing along arguments provided on the command line. runMain Runs the main class selected by the first argument, passing the remaining arguments to the main method. test Executes all tests. testOnly Executes the tests provided as arguments or all tests if no arguments are provided. testQuick Executes the tests that either failed before, were not run or whose transitive dependencies changed, among those provided as arguments. update Resolves and optionally retrieves dependencies, producing a report. More tasks may be viewed by increasing verbosity. See 'help tasks'","breadcrumbs":"Getting Started » Working with an existing build » tasks command","id":"65","title":"tasks command"},"66":{"body":"The compile tasks compiles the sources, after resolving and downloading the library dependendies. > compile This should display something like the following: sbt:breeze-parent> compile\n[info] compiling 341 Scala sources and 1 Java source to /private/tmp/breeze/math/target/scala-3.1.3/classes ... | => math / Compile / compileIncremental 51s","breadcrumbs":"Getting Started » Working with an existing build » compile","id":"66","title":"compile"},"67":{"body":"The run task runs the main class for the subproject. In the sbt shell, type math/run: > math/run math/run means run task, scoped to math subproject. This should display something like the following: sbt:breeze-parent> math/run\n[info] Scala version: 3.1.3 true\n.... Multiple main classes detected. Select one to run: [1] breeze.optimize.linear.NNLS [2] breeze.optimize.proximal.NonlinearMinimizer [3] breeze.optimize.proximal.QuadraticMinimizer [4] breeze.util.UpdateSerializedObjects Enter number: Enter 1 at the prompt.","breadcrumbs":"Getting Started » Working with an existing build » run","id":"67","title":"run"},"68":{"body":"The testQuick task tests either the tests that failed before, were not run, or whose transitive dependencies changed. > math/testQuick This should display something like the following: sbt:breeze-parent> math/testQuick\n[info] FeatureVectorTest:\n[info] - axpy fv dv (1 second, 106 milliseconds)\n[info] - axpy fv vb (9 milliseconds)\n[info] - DM mult (19 milliseconds)\n[info] - CSC mult (32 milliseconds)\n[info] - DM trans mult (4 milliseconds)\n....\n[info] Run completed in 58 seconds, 183 milliseconds.\n[info] Total number of tests run: 1285\n[info] Suites: completed 168, aborted 0\n[info] Tests: succeeded 1285, failed 0, canceled 0, ignored 0, pending 0\n[info] All tests passed.\n[success] Total time: 130 s (02:10), completed Feb 19, 2024","breadcrumbs":"Getting Started » Working with an existing build » testQuick","id":"68","title":"testQuick"},"69":{"body":"To speed up your edit-compile-test cycle, you can ask sbt to automatically recompile or run tests whenever you save a source file. Make a command run when one or more source files change by prefixing the command with ~. For example, in sbt shell try: > ~testQuick Press enter to stop watching for changes. You can use the ~ prefix with either sbt shell or batch mode.","breadcrumbs":"Getting Started » Working with an existing build » Watch (tilde) command","id":"69","title":"Watch (tilde) command"},"7":{"body":"mkdir foo-build\ncd foo-build\ntouch build.sbt\nmkdir project\necho \"sbt.version=2.0.0-alpha7\" > project/build.properties","breadcrumbs":"Quick Start » sbt by example » Create a minimum sbt build","id":"7","title":"Create a minimum sbt build"},"70":{"body":"This page discusses the build.sbt build definition.","breadcrumbs":"Getting Started » Build definition basics » Build definition basics","id":"70","title":"Build definition basics"},"71":{"body":"A build definition is defined in build.sbt, and it consists of a set of projects (of type Project ). Because the term project can be ambiguous, we often call it a subproject in this guide. For instance, in build.sbt you define the subproject located in the current directory like this: scalaVersion := \"3.3.3\"\nname := \"Hello\" or more explicitly: lazy val root = (project in file(\".\")) .settings( scalaVersion := \"3.3.3\", name := \"Hello\", ) Each subproject is configured by key-value pairs. For example, one key is name and it maps to a string value, the name of your subproject. The key-value pairs are listed under the .settings(...) method.","breadcrumbs":"Getting Started » Build definition basics » What is a build definition?","id":"71","title":"What is a build definition?"},"72":{"body":"build.sbt defines subprojects using a DSL called build.sbt DSL, which is based on Scala. Initially you can use build.sbt DSL, like a YAML file, declaring just scalaVersion and libraryDependencies, but it can supports more features to keep the build definition organized as the build grows larger.","breadcrumbs":"Getting Started » Build definition basics » build.sbt DSL","id":"72","title":"build.sbt DSL"},"73":{"body":"Let's take a closer look at the build.sbt DSL: organization := \"com.example\"\n^^^^^^^^^^^^ ^^^^^^^^ ^^^^^^^^^^^^^\nkey operator (setting/task) body Each entry is called a setting expression . Some among them are also called task expressions. We will see more on the difference later in this page. A setting expression consists of three parts: Left-hand side is a key . Operator , which in this case is := Right-hand side is called the body , or the setting/task body . On the left-hand side, name, version, and scalaVersion are keys . A key is an instance of SettingKey[A] , TaskKey[A] , or InputKey[A] where A is the expected value type. Because key name is typed to SettingKey[String], the := operator on name is also typed specifically to String. If you use the wrong value type, the build definition will not compile: name := 42 // will not compile","breadcrumbs":"Getting Started » Build definition basics » Typed setting expression","id":"73","title":"Typed setting expression"},"74":{"body":"To avoid repeating the same information, like the version number for a library, build.sbt may be interspersed with vals, lazy vals, and defs. val toolkitV = \"0.2.0\"\nval toolkit = \"org.scala-lang\" %% \"toolkit\" % toolkitV\nval toolkitTest = \"org.scala-lang\" %% \"toolkit-test\" % toolkitV scalaVersion := \"3.3.3\"\nlibraryDependencies += toolkit\nlibraryDependencies += (toolkitTest % Test) In the above, val defines a variable, which are initialized from the top to bottom. This means that toolkitV must be defined before it is referenced. Here's a bad example: // bad example\nval toolkit = \"org.scala-lang\" %% \"toolkit\" % toolkitV // uninitialized reference!\nval toolkitTest = \"org.scala-lang\" %% \"toolkit-test\" % toolkitV // uninitialized reference!\nval toolkitV = \"0.2.0\" sbt will fail to load with java.lang.ExceptionInInitializerError cased by a NullPointerException if your build.sbt contains an uninitialized forward reference. One way to let the compiler fix this is to define the variables as lazy: lazy val toolkit = \"org.scala-lang\" %% \"toolkit\" % toolkitV\nlazy val toolkitTest = \"org.scala-lang\" %% \"toolkit-test\" % toolkitV\nlazy val toolkitV = \"0.2.0\" Some frown upon gratuitous lazy vals, but Scala 3 lazy vals are efficient, and we think it makes the build definition more robust for copy-pasting. Note Top-level objects and classes are not allowed in build.sbt. Those should go in the project/ directory as Scala source files.","breadcrumbs":"Getting Started » Build definition basics » vals and lazy vals","id":"74","title":"vals and lazy vals"},"75":{"body":"This page explains the basics of library dependency management using sbt. sbt uses Coursier to implement managed dependencies, so if you're familiar with package managers like Coursier, npm, PIP, etc you won't have much trouble.","breadcrumbs":"Getting Started » Library dependency basics » Library dependency basics","id":"75","title":"Library dependency basics"},"76":{"body":"Declaring a dependency looks like this, where groupId, artifactId, and revision are strings: libraryDependencies += groupID % artifactID % revision or like this, where configuration can be a string or a Configuration value (such as Test): libraryDependencies += groupID % artifactID % revision % configuration When you run: > compile sbt will automatically resolve the dependencies and download the JAR files.","breadcrumbs":"Getting Started » Library dependency basics » The libraryDependencies key","id":"76","title":"The libraryDependencies key"},"77":{"body":"If you use organization %% moduleName % version rather than organization % moduleName % version (the difference is the double %% after the organization), sbt will add your project's binary Scala version to the artifact name. This is just a shortcut. You could write this without the %%: libraryDependencies += \"org.scala-lang\" % \"toolkit_3\" % \"0.2.0\" Assuming the scalaVersion for your build is 3.x, the following is identical (note the double %% after \"toolkit\"): libraryDependencies += \"org.scala-lang\" %% \"toolkit\" % \"0.2.0\" The idea is that many dependencies are compiled for multiple Scala versions, and you'd like to get the one that matches your project to ensure binary compatibility.","breadcrumbs":"Getting Started » Library dependency basics » Getting the right Scala version with %%","id":"77","title":"Getting the right Scala version with %%"},"78":{"body":".scala files under project becomes part of the build definition, which we can use to track dependencies in one place by creating a file named project/Dependencies.scala. // place this file at project/Dependencies.scala import sbt.* object Dependencies: // versions lazy val toolkitV = \"0.2.0\" // libraries val toolkit = \"org.scala-lang\" %% \"toolkit\" % toolkitV val toolkitTest = \"org.scala-lang\" %% \"toolkit-test\" % toolkitV\nend Dependencies The Dependencies object will be available in build.sbt. To make it easier to use the vals defined in it, import Dependencies.* in your build.sbt file. import Dependencies.* scalaVersion := \"3.3.3\"\nname := \"something\"\nlibraryDependencies += toolkit\nlibraryDependencies += toolkitTest % Test","breadcrumbs":"Getting Started » Library dependency basics » Tracking dependencies in one place","id":"78","title":"Tracking dependencies in one place"},"79":{"body":"Type in Compile/dependencyTree in the sbt shell to show the library dependency tree, including the transitive dependencies: > Compile/dependencyTree This should display something like the following: sbt:bar> Compile/dependencyTree\n[info] default:bar_3:0.1.0-SNAPSHOT\n[info] +-org.scala-lang:scala3-library_3:3.3.1 [S]\n[info] +-org.scala-lang:toolkit_3:0.2.0\n[info] +-com.lihaoyi:os-lib_3:0.9.1\n[info] | +-com.lihaoyi:geny_3:1.0.0\n[info] | | +-org.scala-lang:scala3-library_3:3.1.3 (evicted by: 3.3.1)\n[info] | | +-org.scala-lang:scala3-library_3:3.3.1 [S]\n....","breadcrumbs":"Getting Started » Library dependency basics » Viewing library dependencies","id":"79","title":"Viewing library dependencies"},"8":{"body":"$ sbt\n[info] welcome to sbt 2.0.0-alpha7 (Azul Systems, Inc. Java 1.8.0_352)\n....\n[info] started sbt server\nsbt:foo-build>","breadcrumbs":"Quick Start » sbt by example » Start sbt shell","id":"8","title":"Start sbt shell"},"80":{"body":"While a simple program can start out as a single-project build, it's more common for a build to split into smaller, multiple subprojects. Each subproject in a build has its own source directories, generates its own JAR file when you run packageBin, and in general works like any other project. A project is defined by declaring a lazy val of type Project . For example, : scalaVersion := \"3.3.3\" lazy val core = (project in file(\"core\")) .settings( name := \"core\", ) lazy val util = (project in file(\"util\")) .dependsOn(core) .settings( name := \"util\", ) The name of the val is used as the subproject's ID, which is used to refer to the subproject at the sbt shell.","breadcrumbs":"Getting Started » Multi project basics » Multi project basics","id":"80","title":"Multi project basics"},"81":{"body":"sbt uses conventions for file placement to make it easy to dive into a new sbt build: .\n├── build.sbt\n├── project/\n│ ├── build.properties\n│ ├── Dependencies.scala\n│ └── plugins.sbt\n├── src/\n│ ├── main/\n│ │ ├── java/\n│ │ ├── resources/\n│ │ ├── scala/\n│ │ └── scala-2.13/\n│ └── test/\n│ ├── java/\n│ ├── resources/\n│ ├── scala/\n│ └── scala-2.13/\n├── subproject-core/\n│ └── src/\n│ ├── main/\n│ └── test/\n├─── subproject-util/\n│ └── src/\n│ ├── main/\n│ └── test/\n└── target/ The local root directory . is the starting point of your build. In sbt's terminology, the base directory is the directory containing the subproject. In the above, ., subproject-core, and subproject-util are base directories. The build definition is described in build.sbt (actually any files named *.sbt) in the local root directory. The sbt version is tracked in project/build.properties. Generated files (compiled classes, packaged jars, managed files, caches, and documentation) will be written to the target directory by default.","breadcrumbs":"Getting Started » Build layout » Build layout","id":"81","title":"Build layout"},"82":{"body":"In addition to build.sbt, project directory can contain .scala files that define helper objects and one-off plugins. See organizing the build for more. .\n├── build.sbt\n├── project/\n│ ├── build.properties\n│ ├── Dependencies.scala\n│ └── plugins.sbt\n.... You may see .sbt files inside project/ but they are not equivalent to .sbt files in the project's base directory. Explaining this will come later , since you'll need some background information first.","breadcrumbs":"Getting Started » Build layout » Build support files","id":"82","title":"Build support files"},"83":{"body":"sbt uses the same directory structure as Maven for source files by default (all paths are relative to the base directory): ....\n├── src/\n│ ├── main/\n│ │ ├── java/ \n│ │ ├── resources/ \n│ │ ├── scala/ \n│ │ └── scala-2.13/ \n│ └── test/\n│ ├── java/ \n│ ├── resources/ \n│ ├── scala/ \n│ └── scala-2.13/ \n.... Other directories in src/ will be ignored. Additionally, all hidden directories will be ignored. Source code can be placed in the project's base directory as hello/app.scala, which may be OK for small projects, though for normal projects people tend to keep the projects in the src/main/ directory to keep things neat. The fact that you can place *.scala source code in the base directory might seem like an odd trick, but this fact becomes relevant later .","breadcrumbs":"Getting Started » Build layout » Source code","id":"83","title":"Source code"},"84":{"body":"Your .gitignore (or equivalent for other version control systems) should contain: target/ Note that this deliberately has a trailing / (to match only directories) and it deliberately has no leading / (to match project/target/ in addition to plain target/). sbt automates building, testing, and deployment of your subprojects from information in the build definition.","breadcrumbs":"Getting Started » Build layout » Configuring version control","id":"84","title":"Configuring version control"},"85":{"body":"While it's possible to code Scala with just an editor and sbt, most programmers today use an Integrated Development Environment, or IDE for short. Two of the popular IDEs in Scala are Metals and IntelliJ IDEA , and they both integrate with sbt builds. Using sbt as Metals build server Importing to IntelliJ IDEA Using sbt as IntelliJ IDEA build server Using Neovim as Metals frontend","breadcrumbs":"Getting Started » sbt with IDEs » sbt with IDEs","id":"85","title":"sbt with IDEs"},"86":{"body":"Metals is an open source language server for Scala, which can act as the backend for VS Code and other editors that support LSP . Metals in turn supports different build servers including sbt via the Build Server Protocol (BSP). To use Metals on VS Code: Install Metals from Extensions tab: Metals Open a directory containing a build.sbt file. From the menubar, run View > Command Palette... (Cmd-Shift-P on macOS) \"Metals: Switch build server\", and select \"sbt\" Metals Once the import process is complete, open a Scala file to see that code completion works: Metals Use the following setting to opt-out some of the subprojects from BSP. bspEnabled := false When you make changes to the code and save them (Cmd-S on macOS), Metals will invoke sbt to do the actual building work. Interactive debugging on VS Code Metals supports interactive debugging by setting break points in the code: Metals Interactive debugging can be started by right-clicking on an unit test, and selecting \"Debug Test.\" When the test hits a break point, you can inspect the values of the variables: Metals See Debugging page on VS Code documentation for more details on how to navigate an interactive debugging session. Logging into sbt session While Metals uses sbt as the build server, we can also log into the same sbt session using a thin client. From Terminal section, type in sbt --client Metals This lets you log into the sbt session Metals has started. In there you can call testOnly and other tasks with the code already compiled.","breadcrumbs":"Getting Started » sbt with IDEs » Using sbt as Metals build server","id":"86","title":"Using sbt as Metals build server"},"87":{"body":"IntelliJ IDEA is an IDE created by JetBrains, and the Community Edition is open source under Apache v2 license. IntelliJ integrates with many build tools, including sbt, to import the project. This is a more traditional approach that might be more reliable than using BSP approach. To import a build to IntelliJ IDEA: Install Scala plugin on the Plugins tab: IntelliJ From Projects, open a directory containing a build.sbt file. IntelliJ Once the import process is complete, open a Scala file to see that code completion works. IntelliJ Scala plugin uses its own lightweight compilation engine to detect errors, which is fast but sometimes incorrect. Per compiler-based highlighting , IntelliJ can be configured to use the Scala compiler for error highlighting. Interactive debugging with IntelliJ IDEA IntelliJ supports interactive debugging by setting break points in the code: IntelliJ Interactive debugging can be started by right-clicking on an unit test, and selecting \"Debug ''.\" Alternatively, you can click the green \"run\" icon on the left part of the editor near the unit test. When the test hits a break point, you can inspect the values of the variables: IntelliJ See Debug Code page on IntelliJ documentation for more details on how to navigate an interactive debugging session.","breadcrumbs":"Getting Started » sbt with IDEs » Importing to IntelliJ IDEA","id":"87","title":"Importing to IntelliJ IDEA"},"88":{"body":"Importing the build to IntelliJ means that you're effectively using IntelliJ as the build tool and the compiler while you code (see also compiler-based highlighting ). While many users are happy with the experience, depending on the code base some of the compilation errors may be false, it may not work well with plugins that generate sources, and generally you might want to code with the identical build semantics as sbt. Thankfully, modern IntelliJ supports alternative build servers including sbt via the Build Server Protocol (BSP). The benefit of using BSP with IntelliJ is that you're using sbt to do the actual build work, so if you are the kind of programmer who had sbt session up on the side, this avoids double compilation. Import to IntelliJ BSP with IntelliJ Reliability ✅ Reliable behavior ⚠️ Less mature. Might encounter UX issues. Responsiveness ✅ ⚠️ Correctness ⚠️ Uses its own compiler for type checking, but can be configured to use scalac ✅ Uses Zinc + Scala compiler for type checking Generated source ❌ Generated source requires resync ✅ Build reuse ❌ Using sbt side-by-side requires double build ✅ To use sbt as build server on IntelliJ: Install Scala plugin on the Plugins tab. To use the BSP approach, do not use Open button on the Project tab: IntelliJ From menubar, click New > \"Project From Existing Sources\", or Find Action (Cmd-Shift-P on macOS) and type \"Existing\" to find \"Import Project From Existing Sources\": IntelliJ Open a build.sbt file. Select BSP when prompted: IntelliJ Select sbt (recommended) as the tool to import the BSP workspace: IntelliJ Once the import process is complete, open a Scala file to see that code completion works: IntelliJ Use the following setting to opt-out some of the subprojects from BSP. bspEnabled := false Open Preferences, search BSP and check \"build automatically on file save\", and uncheck \"export sbt projects to Bloop before import\": IntelliJ When you make changes to the code and save them (Cmd-S on macOS), IntelliJ will invoke sbt to do the actual building work. See also Igal Tabachnik's Using BSP effectively in IntelliJ and Scala for more details. Logging into sbt session We can also log into the existing sbt session using the thin client. From Terminal section, type in sbt --client IntelliJ This lets you log into the sbt session IntelliJ has started. In there you can call testOnly and other tasks with the code already compiled.","breadcrumbs":"Getting Started » sbt with IDEs » Using sbt as IntelliJ IDEA build server (advanced)","id":"88","title":"Using sbt as IntelliJ IDEA build server (advanced)"},"89":{"body":"Neovim is a modern fork of Vim that supports LSP out-of-box, which means it can be configured as a frontend for Metals. Chris Kipp, who is a maintainer of Metals, created nvim-metals plugin that provides comprehensive Metals support on Neovim. To install nvim-metals, create lsp.lua under \\$XDG_CONFIG_HOME/nvim/lua/ based on Chris's lsp.lua and adjust to your preference. For example, comment out its plugins section and load the listed plugins using the plugin manager of your choice such as vim-plug. In init.vim, the file can be loaded as: lua << END\nrequire('lsp')\nEND Per lsp.lua, g:metals_status should be displayed on the status line, which can be done using lualine.nvim etc. Next, open a Scala file in an sbt build using Neovim. Run :MetalsInstall when prompted. Run :MetalsStartServer. If the status line is set up, you should see something like \"Connecting to sbt\" or \"Indexing.\" Code completion works when you're in Insert mode, and you can tab through the candidates: A build is triggered upon saving changes, and compilation errors are displayed inline: Go to definition You can jump to definition of the symbol under cursor by using gD (exact keybinding can be customized): Use Ctrl-O to return to the old buffer. Hover To display the type information of the symbol under cursor, like hovering, use K in Normal mode: Listing diagnostics To list all compilation errors and warnings, use aa: Since this is in the standard quickfix list, you can use the command such as :cnext and :cprev to nagivate through the errors and warnings. To list just the errors, use ae. Interactive debugging with Neovim Thanks to nvim-dap, Neovim supports interactive debugging. Set break points in the code using dt: Nagivate to a unit test, confirm that it's built by hovering (K), and then \"debug continue\" (dc) to start a debugger. Choose \"1: RunOrTest\" when prompted. When the test hits a break point, you can inspect the values of the variables by debug hovering (dK): \"debug continue\" (dc) again to end the session. See nvim-metals regarding further details. Logging into sbt session We can also log into the existing sbt session using the thin client. In a new vim window type :terminal to start the built-in terminal. Type in sbt --client Even though it's inside Neovim, tab completion etc works fine inside.","breadcrumbs":"Getting Started » sbt with IDEs » Using Neovim as Metals frontend (advanced)","id":"89","title":"Using Neovim as Metals frontend (advanced)"},"9":{"body":"To leave sbt shell, type exit or use Ctrl+D (Unix) or Ctrl+Z (Windows). sbt:foo-build> exit","breadcrumbs":"Quick Start » sbt by example » Exit sbt shell","id":"9","title":"Exit sbt shell"},"90":{"body":"See Installing sbt runner for the instruction on general setup. Using Coursier or SDKMAN has two advantages. They will install the official packaging by Eclipse Adoptium etc, as opposed to the \"mystery meat OpenJDK builds\" . They will install tgz packaging of sbt that contains all JAR files. (DEB and RPM packages do not to save bandwidth) This page describes alternative ways of installing the sbt runner. Note that some of the third-party packages may not provide the latest version.","breadcrumbs":"Appendix » Setup notes » Setup Notes","id":"90","title":"Setup Notes"},"91":{"body":"","breadcrumbs":"Appendix » Setup notes » OS specific setup","id":"91","title":"OS specific setup"},"92":{"body":"Homebrew $ brew install sbt Warning Homebrew maintainers have added a dependency to JDK 13 because they want to use more brew dependencies ( brew#50649 ). This causes sbt to use JDK 13 even when java available on PATH is JDK 8 or 11. To prevent sbt from running on JDK 13, install jEnv or switch to using SDKMAN .","breadcrumbs":"Appendix » Setup notes » macOS","id":"92","title":"macOS"},"93":{"body":"sbt-.msi Chocolatey > choco install sbt Scoop > scoop install sbt","breadcrumbs":"Appendix » Setup notes » Windows","id":"93","title":"Windows"},"94":{"body":"Ubuntu and other Debian-based distributions DEB package is officially supported by sbt, but it does not contain JAR files to save bandwidth. Ubuntu and other Debian-based distributions use the DEB format, but usually you don't install your software from a local DEB file. Instead they come with package managers both for the command line (e.g. apt-get, aptitude) or with a graphical user interface (e.g. Synaptic). Run the following from the terminal to install sbt (You'll need superuser privileges to do so, hence the sudo). sudo apt-get update\nsudo apt-get install apt-transport-https curl gnupg -yqq\necho \"deb https://repo.scala-sbt.org/scalasbt/debian all main\" | sudo tee /etc/apt/sources.list.d/sbt.list\necho \"deb https://repo.scala-sbt.org/scalasbt/debian /\" | sudo tee /etc/apt/sources.list.d/sbt_old.list\ncurl -sL \"https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x2EE0EA64E40A89B84B2DF73499E82A75642AC823\" | sudo -H gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/scalasbt-release.gpg --import\nsudo chmod 644 /etc/apt/trusted.gpg.d/scalasbt-release.gpg\nsudo apt-get update\nsudo apt-get install sbt Package managers will check a number of configured repositories for packages to offer for installation. You just have to add the repository to the places your package manager will check. Once sbt is installed, you'll be able to manage the package in aptitude or Synaptic after you updated their package cache. You should also be able to see the added repository at the bottom of the list in System Settings -> Software & Updates -> Other Software: Ubuntu Software & Updates Screenshot sudo apt-key adv --keyserver hkps://keyserver.ubuntu.com:443 --recv 2EE0EA64E40A89B84B2DF73499E82A75642AC823 may not work on Ubuntu Bionic LTS (18.04) since it's using a buggy GnuPG, so we are advising to use web API to download the public key in the above. Red Hat Enterprise Linux and other RPM-based distributions RPM package is officially supported by sbt, but it does not contain JAR files to save bandwidth. Red Hat Enterprise Linux and other RPM-based distributions use the RPM format. Run the following from the terminal to install sbt (You'll need superuser privileges to do so, hence the sudo). # remove old Bintray repo file\nsudo rm -f /etc/yum.repos.d/bintray-rpm.repo\ncurl -L https://www.scala-sbt.org/sbt-rpm.repo > sbt-rpm.repo\nsudo mv sbt-rpm.repo /etc/yum.repos.d/\nsudo yum install sbt On Fedora (31 and above), use sbt-rpm.repo: # remove old Bintray repo file\nsudo rm -f /etc/yum.repos.d/bintray-rpm.repo\ncurl -L https://www.scala-sbt.org/sbt-rpm.repo > sbt-rpm.repo\nsudo mv sbt-rpm.repo /etc/yum.repos.d/\nsudo dnf install sbt","breadcrumbs":"Appendix » Setup notes » Linux","id":"94","title":"Linux"}},"length":95,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{"0":{"4":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":2,"docs":{"35":{"tf":2.23606797749979},"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"1":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"7":{"0":{"4":{"5":{"4":{"0":{"2":{"5":{"2":{"6":{"8":{"5":{"5":{"4":{"7":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{":":{"1":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"26":{"tf":1.0}},"t":{"1":{"0":{":":{"0":{"0":{"\"":{"df":0,"docs":{},"}":{"df":0,"docs":{},"}":{",":{"2":{"0":{"0":{",":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":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":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":7,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":2.23606797749979}}},"1":{".":{"1":{"0":{".":{"0":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"4":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"4":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":1,"docs":{"5":{"tf":1.0}}},"1":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"5":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"_":{"3":{"5":{"2":{"df":5,"docs":{"2":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"8":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"0":{"tf":1.0}}}},"0":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"6":{"df":1,"docs":{"68":{"tf":1.0}}},":":{"0":{"9":{":":{"1":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":2,"docs":{"1":{"tf":1.0},"92":{"tf":1.0}}},"2":{"8":{"5":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},":":{"3":{"2":{":":{"3":{"5":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{":":{"5":{"5":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{":":{"3":{"1":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.7320508075688772}}},"6":{".":{"7":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"7":{".":{"0":{".":{"8":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1":{"tf":1.0},"26":{"tf":1.0}}},"8":{".":{"0":{"4":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"68":{"tf":1.0}}},"df":1,"docs":{"48":{"tf":1.0}}},"9":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"df":10,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"23":{"tf":1.7320508075688772},"26":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"89":{"tf":1.0}}},"2":{".":{"0":{".":{"0":{"df":2,"docs":{"59":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"/":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"12":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"45":{"tf":1.0}}},"3":{".":{"1":{"2":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"2":{".":{"1":{"3":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"35":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"df":3,"docs":{"45":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"0":{"0":{"df":1,"docs":{"26":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"47":{"tf":1.0}}},"3":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"26":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"48":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"1":{".":{"3":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"7":{"df":3,"docs":{"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0}}},":":{"3":{"8":{":":{"1":{"0":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"e":{"a":{"6":{"4":{"df":0,"docs":{},"e":{"4":{"0":{"a":{"8":{"9":{"b":{"8":{"4":{"b":{"2":{"d":{"df":0,"docs":{},"f":{"7":{"3":{"4":{"9":{"9":{"df":0,"docs":{},"e":{"8":{"2":{"a":{"7":{"5":{"6":{"4":{"2":{"a":{"c":{"8":{"2":{"3":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"3":{".":{"1":{".":{"3":{"/":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"79":{"tf":1.0}}},"3":{"df":7,"docs":{"0":{"tf":1.0},"38":{"tf":2.0},"56":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":2,"docs":{"45":{"tf":1.0},"77":{"tf":1.0}}}},"1":{"df":1,"docs":{"94":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"4":{"1":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0}}},"4":{"0":{".":{"7":{"1":{"0":{"3":{"3":{"5":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"73":{"tf":1.0}}},"df":3,"docs":{"23":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"16":{"tf":1.0}}},"1":{"df":2,"docs":{"26":{"tf":1.0},"66":{"tf":1.0}}},"8":{"df":1,"docs":{"68":{"tf":1.0}}},"df":1,"docs":{"23":{"tf":1.0}}},"6":{"4":{"4":{"df":1,"docs":{"94":{"tf":1.0}}},"df":1,"docs":{"26":{"tf":1.0}}},"df":1,"docs":{"64":{"tf":1.0}}},"7":{"3":{".":{"9":{"9":{"3":{"0":{"7":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"0":{"6":{"&":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"2":{"tf":1.0},"26":{"tf":1.0},"92":{"tf":1.0}}},"9":{"]":{"*":{"\\":{".":{"[":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"3":{"tf":1.0},"68":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"v":{"df":3,"docs":{"74":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"86":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"54":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"d":{"d":{"df":8,"docs":{"20":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"77":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"49":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"17":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"88":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"94":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"1":{"tf":1.0},"57":{"tf":1.0},"74":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.0},"65":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"0":{"a":{"c":{"1":{"4":{"0":{"9":{"c":{"0":{"1":{"1":{"7":{"a":{"9":{"4":{"9":{"d":{"4":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"52":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":4,"docs":{"35":{"tf":2.0},"56":{"tf":1.0},"65":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"p":{"df":5,"docs":{"15":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"48":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"65":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"41":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"94":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":2.449489742783178}}}}}}}},"m":{"df":1,"docs":{"1":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"y":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"33":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"13":{"tf":1.0},"59":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"52":{"tf":1.0},"65":{"tf":2.6457513110645907},"77":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"76":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"69":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"\"":{"df":0,"docs":{},"h":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"6":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"26":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0}}}},"df":1,"docs":{"84":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":3,"docs":{"14":{"tf":1.4142135623730951},"78":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"45":{"tf":1.0},"47":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0}}}}}},"b":{"8":{"\\":{".":{"[":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"d":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}},"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":{"90":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"48":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"42":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"94":{"tf":2.0}}},"i":{"c":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"70":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"40":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"69":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"48":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"78":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"48":{"tf":1.0},"63":{"tf":1.0}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"47":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"t":{"a":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":1.0},"45":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"0":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"74":{"tf":1.0},"94":{"tf":1.0}}}}}},"x":{"df":1,"docs":{"89":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":2,"docs":{"62":{"tf":1.0},"63":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"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":{},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"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":{"#":{"5":{"0":{"6":{"4":{"9":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.4142135623730951}}}},"o":{"a":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"57":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":3.0}},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"48":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}}}}}}},"s":{"b":{"df":0,"docs":{},"t":{"df":27,"docs":{"0":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.0},"48":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.0},"73":{"tf":1.0},"74":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"33":{"tf":1.0},"35":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"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":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{":":{"4":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":4,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"34":{"tf":1.0}}},"3":{"df":1,"docs":{"37":{"tf":1.0}}},"df":53,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":2.449489742783178},"15":{"tf":1.0},"16":{"tf":2.23606797749979},"17":{"tf":2.449489742783178},"19":{"tf":2.23606797749979},"23":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.0},"48":{"tf":2.23606797749979},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"86":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951},"88":{"tf":3.4641016151377544},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"52":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":12,"docs":{"39":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"64":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"86":{"tf":1.0},"88":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"73":{"tf":1.0},"74":{"tf":1.0}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"92":{"tf":1.0}}}}},"d":{"df":4,"docs":{"35":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}}},"df":4,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":22,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"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":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"16":{"tf":1.0},"38":{"tf":1.0},"88":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"1":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"93":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}},"s":{"'":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"14":{"tf":1.0},"23":{"tf":1.0},"65":{"tf":2.449489742783178},"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"81":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"40":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"48":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"m":{"d":{"df":2,"docs":{"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":10,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"40":{"tf":1.0},"53":{"tf":1.0},"83":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":2.8284271247461903},"87":{"tf":1.7320508075688772},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"2":{".":{"1":{"2":{"_":{"1":{".":{"0":{"/":{"0":{".":{"2":{".":{"1":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"3":{":":{"1":{".":{"0":{".":{"0":{"df":1,"docs":{"79":{"tf":1.0}}},"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":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"82":{"tf":1.0},"94":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":22,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":2.449489742783178},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"46":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"69":{"tf":1.7320508075688772},"86":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"47":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":29,"docs":{"0":{"tf":1.0},"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"23":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":2.6457513110645907},"69":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.6457513110645907},"89":{"tf":1.4142135623730951}},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"79":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}},"i":{"c":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"50":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"43":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"47":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"24":{"tf":1.0},"89":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"26":{"tf":1.0},"65":{"tf":1.0}},"e":{"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":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"17":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.4142135623730951},"74":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"22":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.0},"40":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"52":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"46":{"tf":1.0},"81":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"65":{"tf":1.0},"74":{"tf":1.0}}},"y":{"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":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{".":{"1":{"3":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"0":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"75":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":15,"docs":{"12":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"23":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"s":{"c":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"+":{"d":{"df":2,"docs":{"26":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"z":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":3,"docs":{"26":{"tf":1.0},"59":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":2.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":15,"docs":{"14":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"89":{"tf":1.0}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"89":{"tf":1.0}}},"t":{"a":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}},"y":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}}},"df":4,"docs":{"26":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0}},"e":{"b":{"df":2,"docs":{"90":{"tf":1.0},"94":{"tf":2.23606797749979}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"86":{"tf":2.449489742783178},"87":{"tf":2.449489742783178},"89":{"tf":2.23606797749979}},"g":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"72":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{"b":{"a":{"df":0,"docs":{},"r":{"_":{"3":{":":{"0":{".":{"1":{".":{"0":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"48":{"tf":1.7320508075688772},"65":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}}}},"df":5,"docs":{"12":{"tf":1.0},"33":{"tf":1.4142135623730951},"45":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"19":{"tf":1.0},"43":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"0":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.7320508075688772},"39":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"55":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":2.6457513110645907},"79":{"tf":1.7320508075688772},"88":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{},"i":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"62":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"0":{"tf":1.0},"16":{"tf":1.0},"43":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"17":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"47":{"tf":1.0},"56":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"12":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"40":{"tf":1.0},"45":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"12":{"tf":1.7320508075688772},"41":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}},"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":3,"docs":{"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"4":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":8,"docs":{"14":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"35":{"tf":1.0},"39":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"51":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"35":{"tf":1.0},"39":{"tf":1.0},"94":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"81":{"tf":1.0}}}}},"m":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.0}}}},"o":{"c":{"df":2,"docs":{"0":{"tf":1.0},"65":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"36":{"tf":2.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"35":{"tf":2.0},"43":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":1.7320508075688772},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"89":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"26":{"tf":2.0},"77":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"48":{"tf":1.0},"61":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"l":{"df":4,"docs":{"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"72":{"tf":2.0},"73":{"tf":1.0}}}},"v":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"40":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"62":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"7":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":3,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"90":{"tf":1.0}}}}}},"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":{"45":{"tf":1.7320508075688772},"46":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"87":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"12":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":1,"docs":{"48":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"26":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"78":{"tf":1.0},"89":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"46":{"tf":1.0},"77":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"23":{"tf":2.23606797749979},"47":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"t":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"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":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"d":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"d":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"d":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"57":{"tf":1.0},"75":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"89":{"tf":1.0},"92":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":22,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"37":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"69":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.4142135623730951},"80":{"tf":1.0},"89":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"15":{"tf":1.0},"33":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"2":{"1":{"3":{"df":2,"docs":{"16":{"tf":1.4142135623730951},"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"44":{"tf":1.0},"62":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.0}}}},"t":{"df":8,"docs":{"12":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"63":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"6":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"26":{"tf":1.0},"73":{"tf":2.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"47":{"tf":1.0},"86":{"tf":1.0}}},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"23":{"tf":2.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.0},"87":{"tf":1.0}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"df":2,"docs":{"48":{"tf":1.0},"94":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"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":{"68":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":2,"docs":{"48":{"tf":1.0},"68":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"49":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"/":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":5,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"28":{"tf":1.0},"38":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":25,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.0},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"23":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":2.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":2.23606797749979}}}},"n":{"d":{"df":4,"docs":{"13":{"tf":1.0},"26":{"tf":1.0},"39":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":1,"docs":{"89":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"62":{"tf":1.0},"65":{"tf":1.0},"82":{"tf":1.0}}}}},"x":{"df":1,"docs":{"74":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":20,"docs":{"12":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"o":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"r":{"c":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"89":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}}},"v":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"g":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":1,"docs":{"48":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":6,"docs":{"0":{"tf":1.0},"65":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"88":{"tf":2.0},"90":{"tf":1.0}}}}},"t":{"df":4,"docs":{"14":{"tf":1.0},"43":{"tf":1.7320508075688772},"45":{"tf":1.0},"77":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"8":{"df":1,"docs":{"49":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"49":{"tf":1.0},"62":{"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":{"84":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"t":{")":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{")":{",":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"g":{"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":{":":{"/":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":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":{"26":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.7320508075688772}}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":3,"docs":{"38":{"tf":1.0},"74":{"tf":1.0},"89":{"tf":1.0}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}}}},"r":{"a":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"87":{"tf":1.0}}}},"p":{"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"76":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"w":{"df":2,"docs":{"47":{"tf":1.0},"72":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"73":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}},"t":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"23":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"12":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"83":{"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},":":{"0":{".":{"1":{".":{"0":{"df":1,"docs":{"36":{"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":5,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"38":{"tf":1.0}},"e":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":14,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":2.23606797749979},"45":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"40":{"tf":1.0}},"e":{".":{"\\":{"$":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"\\":{"$":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"\\":{"$":{"1":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{":":{"4":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"p":{"df":5,"docs":{"14":{"tf":2.23606797749979},"26":{"tf":1.0},"39":{"tf":1.4142135623730951},"47":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"n":{"c":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":4,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0}}},"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"45":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"48":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"4":{"4":{"3":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":{},"g":{"8":{"df":1,"docs":{"48":{"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":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":2.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"94":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"/":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"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":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"87":{"tf":1.0}}}}},"d":{"df":5,"docs":{"0":{"tf":1.0},"57":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"77":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.0},"88":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"68":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"36":{"tf":1.0},"53":{"tf":1.0}}}},"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":1,"docs":{"75":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"26":{"tf":2.0},"33":{"tf":1.7320508075688772},"51":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":2.449489742783178},"94":{"tf":1.0}}}}}}},"n":{"c":{"df":4,"docs":{"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"u":{"d":{"df":6,"docs":{"64":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"22":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":23,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":2.449489742783178},"17":{"tf":1.4142135623730951},"19":{"tf":2.0},"23":{"tf":2.0},"26":{"tf":1.0},"28":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"35":{"tf":2.6457513110645907},"36":{"tf":1.0},"38":{"tf":2.6457513110645907},"39":{"tf":1.4142135623730951},"48":{"tf":3.3166247903554},"59":{"tf":3.0},"63":{"tf":3.0},"64":{"tf":2.6457513110645907},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":3.3166247903554},"79":{"tf":2.6457513110645907},"8":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"14":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"[":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"a":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"[":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}},"i":{"d":{"df":3,"docs":{"48":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"39":{"tf":2.449489742783178},"65":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"1":{"tf":1.7320508075688772},"3":{"tf":2.0},"52":{"tf":1.0},"6":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":2.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":3.0}}},"n":{"c":{"df":5,"docs":{"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"1":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"49":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":5,"docs":{"0":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":3.605551275463989},"88":{"tf":4.242640687119285}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"86":{"tf":2.0},"87":{"tf":2.0},"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"23":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":6,"docs":{"1":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"s":{"_":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"88":{"tf":1.0}}}}},"t":{"'":{"df":6,"docs":{"51":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"0":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":2.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"v":{"a":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"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":{},"i":{"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":14,"docs":{"0":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"59":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":2.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.7320508075688772},"2":{"tf":1.0},"3":{"tf":1.0},"92":{"tf":2.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"92":{"tf":1.0}}}},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"o":{"b":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"45":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"(":{"\"":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{")":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"33":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"49":{"tf":1.0},"89":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":4,"docs":{"0":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}}}},"k":{"df":1,"docs":{"89":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"47":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"y":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"48":{"tf":1.0},"71":{"tf":1.7320508075688772},"73":{"tf":2.23606797749979},"76":{"tf":1.0},"94":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"3":{"df":1,"docs":{"79":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"3":{":":{"0":{".":{"2":{".":{"0":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":4,"docs":{"48":{"tf":1.4142135623730951},"74":{"tf":2.449489742783178},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"72":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"73":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"i":{"df":4,"docs":{"71":{"tf":1.0},"74":{"tf":2.8284271247461903},"78":{"tf":1.0},"80":{"tf":1.7320508075688772}}}}},"df":1,"docs":{"94":{"tf":1.4142135623730951}},"e":{"a":{"d":{"df":1,"docs":{"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{">":{"a":{"a":{"df":1,"docs":{"89":{"tf":1.0}}},"df":1,"docs":{"89":{"tf":1.0}}},"d":{"c":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":1,"docs":{"89":{"tf":1.0}}},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":4,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"59":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}},"t":{"'":{"df":7,"docs":{"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"48":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0}}},"df":3,"docs":{"46":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"45":{"tf":1.0},"74":{"tf":1.0}}}}}},"i":{"b":{"_":{"3":{":":{"0":{".":{"9":{".":{"1":{"df":1,"docs":{"79":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"0":{"tf":1.0},"25":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.4142135623730951},"66":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.4142135623730951}}},"y":{"_":{"3":{":":{"3":{".":{"1":{".":{"3":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"20":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"94":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"14":{"tf":1.7320508075688772},"28":{"tf":1.0},"3":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"71":{"tf":1.0},"89":{"tf":2.23606797749979},"94":{"tf":1.0}}}}},"o":{"a":{"d":{"df":5,"docs":{"19":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"74":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{":":{"/":{"/":{"/":{"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":{},"e":{"d":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"9":{"df":0,"docs":{},"n":{"/":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"/":{"1":{".":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"0":{"a":{"c":{"1":{"4":{"0":{"9":{"c":{"0":{"1":{"1":{"7":{"a":{"9":{"4":{"9":{"d":{"4":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"9":{"8":{"2":{"df":0,"docs":{},"e":{"0":{"7":{"df":0,"docs":{},"e":{"8":{"5":{"c":{"7":{"d":{"df":0,"docs":{},"e":{"1":{"b":{"6":{"1":{"8":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":3,"docs":{"86":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"48":{"tf":1.0},"58":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"89":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":1,"docs":{"94":{"tf":1.0}}},"u":{"a":{"df":1,"docs":{"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0}}}}},"o":{"df":4,"docs":{"1":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"12":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":9,"docs":{"14":{"tf":1.0},"35":{"tf":2.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"65":{"tf":2.6457513110645907},"67":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"83":{"tf":2.23606797749979},"94":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"43":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"0":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"12":{"tf":1.0},"75":{"tf":1.7320508075688772},"81":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":2.0}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"43":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"71":{"tf":1.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"77":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"df":3,"docs":{"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":1,"docs":{"48":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"10":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"u":{"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"57":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":4.0},"89":{"tf":2.6457513110645907}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"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":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"?":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{".":{"7":{"1":{"4":{"3":{"&":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"o":{"d":{"df":2,"docs":{"65":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":2.449489742783178}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"48":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"26":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"69":{"tf":1.0},"89":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"56":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"23":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":18,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"92":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"32":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"40":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"80":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"67":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{":":{"1":{"1":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":1,"docs":{"94":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"14":{"tf":1.0},"18":{"tf":1.4142135623730951},"23":{"tf":1.0},"41":{"tf":1.7320508075688772},"45":{"tf":1.0},"71":{"tf":2.0},"73":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"34":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.7320508075688772},"64":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"86":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":1,"docs":{"48":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":10,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":2.6457513110645907}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}},"w":{"df":13,"docs":{"12":{"tf":1.0},"14":{"tf":2.0},"16":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":2.0},"48":{"tf":2.23606797749979},"49":{"tf":2.0},"81":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"34":{"tf":1.0},"89":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"83":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"19":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"51":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"w":{"df":4,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"75":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"43":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":2.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"33":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"3":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"89":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"90":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"k":{"df":1,"docs":{"83":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"89":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"c":{"df":5,"docs":{"62":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":11,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"49":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":2.0},"89":{"tf":1.0}},"j":{"d":{"df":0,"docs":{},"k":{"df":3,"docs":{"2":{"tf":1.0},"26":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"2":{"tf":1.0},"73":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"47":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"23":{"tf":1.0},"65":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":5,"docs":{"48":{"tf":1.4142135623730951},"74":{"tf":2.449489742783178},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"47":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"s":{"df":1,"docs":{"91":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"26":{"tf":1.0},"39":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"39":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"75":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":2.0},"94":{"tf":2.8284271247461903}},"e":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"65":{"tf":1.0},"80":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":9,"docs":{"42":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0}}}}},"s":{"df":1,"docs":{"33":{"tf":1.0}}},"t":{"df":3,"docs":{"73":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":10,"docs":{"14":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"35":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"t":{"df":2,"docs":{"26":{"tf":1.7320508075688772},"74":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"83":{"tf":1.0},"92":{"tf":1.0}}}}},"df":3,"docs":{"48":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}}}},"r":{"df":2,"docs":{"87":{"tf":1.0},"89":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"12":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"75":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"78":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"94":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"45":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"14":{"tf":1.0},"34":{"tf":1.4142135623730951},"47":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":2.0}},"s":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":3,"docs":{"63":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"m":{"df":1,"docs":{"48":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"81":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"46":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"88":{"tf":1.0},"89":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"11":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"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":{"2":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"12":{"tf":1.0},"45":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"33":{"tf":1.0},"48":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"/":{"b":{"a":{"df":0,"docs":{},"r":{"/":{"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":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"45":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"65":{"tf":2.6457513110645907}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"80":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":2,"docs":{"85":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":3,"docs":{"77":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}},"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"46":{"tf":1.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}},"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":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":30,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":2.449489742783178},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.7320508075688772},"28":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":2.0},"48":{"tf":3.3166247903554},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"7":{"tf":1.0},"71":{"tf":2.0},"74":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.6457513110645907},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":2.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"53":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"14":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"56":{"tf":1.0},"65":{"tf":2.23606797749979},"89":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"0":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":2.0}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"2":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"q":{"df":2,"docs":{"26":{"tf":1.0},"48":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"89":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"48":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"j":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{")":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"d":{"df":4,"docs":{"19":{"tf":1.0},"43":{"tf":1.4142135623730951},"52":{"tf":1.0},"62":{"tf":1.0}},"i":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"38":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"1":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"11":{"tf":1.0},"69":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}},"v":{"df":1,"docs":{"94":{"tf":1.0}}}},"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"74":{"tf":1.7320508075688772},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"l":{"df":1,"docs":{"83":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"83":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"1":{"tf":1.0}}},"o":{"a":{"d":{"df":10,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":2.0},"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"38":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":1,"docs":{"26":{"tf":1.0}}},"o":{"df":1,"docs":{"94":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"46":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"40":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"(":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":5,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"65":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"26":{"tf":1.4142135623730951},"33":{"tf":1.0},"88":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"\"":{":":{"4":{"0":{".":{"7":{"1":{"0":{"3":{"3":{"5":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"48":{"tf":1.0},"89":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"76":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"73":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{":":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"d":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"64":{"tf":1.4142135623730951},"71":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"94":{"tf":3.0}}}}}}},"df":2,"docs":{"90":{"tf":1.0},"94":{"tf":2.0}}}},"u":{"df":0,"docs":{},"n":{"df":34,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"46":{"tf":1.0},"48":{"tf":2.0},"51":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":2.23606797749979},"67":{"tf":2.23606797749979},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"76":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"1":{"tf":1.7320508075688772},"5":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"6":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"47":{"tf":1.0},"52":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"17":{"tf":2.0},"69":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"81":{"tf":1.0}}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"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":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"2":{".":{"0":{".":{"0":{"df":2,"docs":{"52":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"48":{"tf":1.0}}}}}}}}}},"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{"b":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":6,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":13,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772}}}}}}}},"df":62,"docs":{"0":{"tf":2.449489742783178},"1":{"tf":2.449489742783178},"10":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"16":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.4142135623730951},"34":{"tf":1.0},"4":{"tf":1.7320508075688772},"40":{"tf":2.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":2.0},"44":{"tf":1.0},"46":{"tf":2.23606797749979},"47":{"tf":1.4142135623730951},"48":{"tf":3.605551275463989},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":2.449489742783178},"52":{"tf":2.6457513110645907},"53":{"tf":2.449489742783178},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":3.4641016151377544},"6":{"tf":1.7320508075688772},"60":{"tf":2.0},"61":{"tf":2.0},"62":{"tf":1.7320508075688772},"63":{"tf":2.6457513110645907},"65":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"7":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":2.0},"80":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.23606797749979},"86":{"tf":3.0},"87":{"tf":1.0},"88":{"tf":3.7416573867739413},"89":{"tf":2.23606797749979},"9":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"94":{"tf":3.605551275463989}},"n":{"df":5,"docs":{"53":{"tf":2.0},"54":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.0}}}},"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"3":{".":{"df":0,"docs":{},"g":{"8":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"41":{"tf":1.0},"48":{"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":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"c":{"df":2,"docs":{"45":{"tf":2.0},"88":{"tf":1.0}}},"df":31,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"35":{"tf":2.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":2.8284271247461903},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":3.605551275463989},"49":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":2.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":3.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":2.0},"89":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":14,"docs":{"0":{"tf":1.0},"16":{"tf":2.23606797749979},"17":{"tf":1.0},"38":{"tf":2.23606797749979},"47":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"48":{"tf":1.0}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"65":{"tf":1.0},"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.7320508075688772}},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":8,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"8":{"df":2,"docs":{"41":{"tf":1.0},"48":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":1,"docs":{"48":{"tf":1.4142135623730951}}},"df":10,"docs":{"33":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.0}},"m":{"df":1,"docs":{"83":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"48":{"tf":2.0},"65":{"tf":1.0},"67":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"d":{"df":3,"docs":{"26":{"tf":1.0},"33":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"26":{"tf":1.0},"48":{"tf":2.449489742783178},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.23606797749979},"61":{"tf":1.4142135623730951},"63":{"tf":2.0},"8":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":2.449489742783178},"88":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"14":{"tf":1.0},"17":{"tf":1.7320508075688772},"86":{"tf":2.0},"87":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.7320508075688772}}}}}}},"t":{"df":20,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":2.23606797749979},"17":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"31":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.7320508075688772},"73":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"[":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"41":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":15,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"59":{"tf":2.23606797749979},"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":1,"docs":{"85":{"tf":1.0}}}},"w":{"df":3,"docs":{"64":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":4,"docs":{"48":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0}}}}}},"df":2,"docs":{"48":{"tf":1.0},"61":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"73":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"0":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"80":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"56":{"tf":1.0},"80":{"tf":1.0}}}}}},"l":{"df":1,"docs":{"94":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"45":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"43":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"4":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}},"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"36":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":12,"docs":{"18":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"37":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":2.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"41":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":16,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":3.1622776601683795},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.23606797749979}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":5,"docs":{"14":{"tf":1.0},"46":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.4142135623730951},"91":{"tf":1.0}},"i":{"df":2,"docs":{"52":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"48":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"46":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"0":{"tf":1.0},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"43":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":2.6457513110645907},"49":{"tf":1.0},"59":{"tf":2.0},"6":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"65":{"tf":2.23606797749979},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"1":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"69":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"48":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"4":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{".":{"_":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"33":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"u":{"b":{"1":{"df":1,"docs":{"27":{"tf":1.0}}},"2":{"df":1,"docs":{"30":{"tf":1.0}}},"3":{"df":1,"docs":{"31":{"tf":1.0}}},"4":{"df":1,"docs":{"32":{"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":3,"docs":{"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"80":{"tf":1.0}}},"df":17,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"71":{"tf":2.0},"72":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":2.23606797749979},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"35":{"tf":1.7320508075688772},"48":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"65":{"tf":2.23606797749979},"76":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"94":{"tf":4.123105625617661}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"43":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"38":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":10,"docs":{"2":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":5,"docs":{"59":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":1,"docs":{"36":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"48":{"tf":1.0},"57":{"tf":1.0},"81":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"[":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":11,"docs":{"14":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"65":{"tf":3.4641016151377544},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"[":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"49":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"m":{"df":1,"docs":{"3":{"tf":1.0}},"p":{"df":1,"docs":{"33":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"41":{"tf":1.0},"48":{"tf":2.6457513110645907},"49":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"n":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"71":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"40":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"60":{"tf":1.0}}},"df":22,"docs":{"0":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":2.23606797749979},"24":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.7320508075688772},"65":{"tf":2.23606797749979},"68":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"74":{"tf":2.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"83":{"tf":2.23606797749979},"84":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":2.0},"89":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"40":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"40":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"90":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"89":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}},"g":{"df":2,"docs":{"46":{"tf":1.0},"83":{"tf":1.0}}},"k":{"df":1,"docs":{"74":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"s":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"16":{"tf":1.7320508075688772},"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"65":{"tf":1.0},"74":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"83":{"tf":1.0},"89":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"58":{"tf":1.0},"73":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":7,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"26":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.0}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}},"e":{"_":{"a":{"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":7,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"35":{"tf":2.23606797749979},"48":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}}}}}}}},"df":1,"docs":{"49":{"tf":1.0}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":7,"docs":{"0":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"54":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"3":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"20":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":2.6457513110645907},"74":{"tf":3.1622776601683795},"77":{"tf":1.4142135623730951},"78":{"tf":2.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"74":{"tf":2.0},"78":{"tf":1.4142135623730951}}}}}},"v":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"74":{"tf":3.1622776601683795},"78":{"tf":1.7320508075688772}}}}}}}},"p":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"46":{"tf":1.0},"52":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"n":{"df":1,"docs":{"68":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":3,"docs":{"26":{"tf":1.0},"39":{"tf":1.0},"69":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"89":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"86":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":2,"docs":{"85":{"tf":1.0},"90":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":14,"docs":{"26":{"tf":1.4142135623730951},"41":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"59":{"tf":1.4142135623730951},"67":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":2.23606797749979},"79":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.7320508075688772},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"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":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"i":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":2.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"41":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"df":6,"docs":{"12":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"39":{"tf":1.0},"4":{"tf":1.0}}}}}},"x":{"df":2,"docs":{"59":{"tf":1.0},"9":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"48":{"tf":1.0},"65":{"tf":1.0},"94":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":8,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"74":{"tf":1.0},"89":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":51,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":2.0},"69":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":2.23606797749979},"87":{"tf":1.7320508075688772},"88":{"tf":3.7416573867739413},"89":{"tf":3.4641016151377544},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"9":{"df":0,"docs":{},"n":{"/":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"/":{"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":1,"docs":{"63":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}}},"x":{"df":1,"docs":{"88":{"tf":1.0}}}},"v":{"2":{"df":1,"docs":{"87":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"26":{"tf":2.449489742783178},"33":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"71":{"tf":1.0},"74":{"tf":4.0},"78":{"tf":2.0},"80":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":10,"docs":{"16":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"76":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"47":{"tf":1.0},"74":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"b":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"1":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.23606797749979},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":2.23606797749979},"78":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}}},"i":{"a":{"df":4,"docs":{"0":{"tf":1.0},"47":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"65":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0}}}},"m":{"df":1,"docs":{"89":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}},"z":{"df":1,"docs":{"64":{"tf":1.0}}}},"m":{"df":1,"docs":{"26":{"tf":1.0}}},"s":{"df":2,"docs":{"0":{"tf":1.0},"86":{"tf":2.0}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"88":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"17":{"tf":2.6457513110645907},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":3,"docs":{"58":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"37":{"tf":1.0}}}}}}},"b":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":6,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"11":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"48":{"tf":1.0},"63":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"54":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"n":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"59":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":13,"docs":{"33":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":3,"docs":{"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"23":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"42":{"tf":1.0},"48":{"tf":1.0},"81":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"73":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}}},"x":{"d":{"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":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"23":{"tf":1.0}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":4,"docs":{"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0}}}},"u":{"'":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"r":{"df":3,"docs":{"75":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"v":{"df":2,"docs":{"6":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"q":{"df":1,"docs":{"94":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}}},"z":{"df":1,"docs":{"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"46":{"tf":1.0},"56":{"tf":2.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"35":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{"0":{"4":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":2,"docs":{"35":{"tf":2.23606797749979},"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"1":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"7":{"0":{"4":{"5":{"4":{"0":{"2":{"5":{"2":{"6":{"8":{"5":{"5":{"4":{"7":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{":":{"1":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"26":{"tf":1.0}},"t":{"1":{"0":{":":{"0":{"0":{"\"":{"df":0,"docs":{},"}":{"df":0,"docs":{},"}":{",":{"2":{"0":{"0":{",":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":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":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":7,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":2.23606797749979}}},"1":{".":{"1":{"0":{".":{"0":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"4":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"4":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":1,"docs":{"5":{"tf":1.0}}},"1":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"5":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"_":{"3":{"5":{"2":{"df":5,"docs":{"2":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"8":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"0":{"tf":1.0}}}},"0":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"6":{"df":1,"docs":{"68":{"tf":1.0}}},":":{"0":{"9":{":":{"1":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":2,"docs":{"1":{"tf":1.0},"92":{"tf":1.0}}},"2":{"8":{"5":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},":":{"3":{"2":{":":{"3":{"5":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{":":{"5":{"5":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{":":{"3":{"1":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.7320508075688772}}},"6":{".":{"7":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"7":{".":{"0":{".":{"8":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1":{"tf":1.0},"26":{"tf":1.0}}},"8":{".":{"0":{"4":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"68":{"tf":1.0}}},"df":1,"docs":{"48":{"tf":1.0}}},"9":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"df":10,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"23":{"tf":1.7320508075688772},"26":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"89":{"tf":1.0}}},"2":{".":{"0":{".":{"0":{"df":2,"docs":{"59":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"/":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"12":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"45":{"tf":1.0}}},"3":{".":{"1":{"2":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"2":{".":{"1":{"3":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"35":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"df":3,"docs":{"45":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"0":{"0":{"df":1,"docs":{"26":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"47":{"tf":1.0}}},"3":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"26":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"48":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"1":{".":{"3":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"7":{"df":3,"docs":{"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0}}},":":{"3":{"8":{":":{"1":{"0":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"e":{"a":{"6":{"4":{"df":0,"docs":{},"e":{"4":{"0":{"a":{"8":{"9":{"b":{"8":{"4":{"b":{"2":{"d":{"df":0,"docs":{},"f":{"7":{"3":{"4":{"9":{"9":{"df":0,"docs":{},"e":{"8":{"2":{"a":{"7":{"5":{"6":{"4":{"2":{"a":{"c":{"8":{"2":{"3":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"3":{".":{"1":{".":{"3":{"/":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"79":{"tf":1.0}}},"3":{"df":7,"docs":{"0":{"tf":1.0},"38":{"tf":2.0},"56":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":2,"docs":{"45":{"tf":1.0},"77":{"tf":1.0}}}},"1":{"df":1,"docs":{"94":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"4":{"1":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0}}},"4":{"0":{".":{"7":{"1":{"0":{"3":{"3":{"5":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"73":{"tf":1.0}}},"df":3,"docs":{"23":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"16":{"tf":1.0}}},"1":{"df":2,"docs":{"26":{"tf":1.0},"66":{"tf":1.0}}},"8":{"df":1,"docs":{"68":{"tf":1.0}}},"df":1,"docs":{"23":{"tf":1.0}}},"6":{"4":{"4":{"df":1,"docs":{"94":{"tf":1.0}}},"df":1,"docs":{"26":{"tf":1.0}}},"df":1,"docs":{"64":{"tf":1.0}}},"7":{"3":{".":{"9":{"9":{"3":{"0":{"7":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"0":{"6":{"&":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"2":{"tf":1.0},"26":{"tf":1.0},"92":{"tf":1.0}}},"9":{"]":{"*":{"\\":{".":{"[":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"3":{"tf":1.0},"68":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"v":{"df":3,"docs":{"74":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"86":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"54":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"d":{"d":{"df":8,"docs":{"20":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"77":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"49":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"17":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"94":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"1":{"tf":1.0},"57":{"tf":1.0},"74":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.0},"65":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"0":{"a":{"c":{"1":{"4":{"0":{"9":{"c":{"0":{"1":{"1":{"7":{"a":{"9":{"4":{"9":{"d":{"4":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"52":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":4,"docs":{"35":{"tf":2.0},"56":{"tf":1.0},"65":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"p":{"df":5,"docs":{"15":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"48":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":5,"docs":{"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"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":1,"docs":{"65":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"41":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"94":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":2.449489742783178}}}}}}}},"m":{"df":1,"docs":{"1":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"y":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"33":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"13":{"tf":1.0},"59":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"52":{"tf":1.0},"65":{"tf":2.6457513110645907},"77":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"76":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"69":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"\"":{"df":0,"docs":{},"h":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"6":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"26":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0}}}},"df":1,"docs":{"84":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":3,"docs":{"14":{"tf":1.4142135623730951},"78":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"45":{"tf":1.0},"47":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0}}}}}},"b":{"8":{"\\":{".":{"[":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"d":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}},"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":{"90":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"48":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"42":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"94":{"tf":2.0}}},"i":{"c":{"df":12,"docs":{"14":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"40":{"tf":2.0},"60":{"tf":1.7320508075688772},"69":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"48":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"78":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"48":{"tf":1.0},"63":{"tf":1.0}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"47":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"t":{"a":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"0":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"74":{"tf":1.0},"94":{"tf":1.0}}}}}},"x":{"df":1,"docs":{"89":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":2,"docs":{"62":{"tf":1.0},"63":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"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":{},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"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":{"#":{"5":{"0":{"6":{"4":{"9":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.4142135623730951}}}},"o":{"a":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"57":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":3.0}},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"48":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}}}}}}},"s":{"b":{"df":0,"docs":{},"t":{"df":27,"docs":{"0":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"48":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.23606797749979},"73":{"tf":1.0},"74":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"33":{"tf":1.0},"35":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"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":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{":":{"4":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":4,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"34":{"tf":1.0}}},"3":{"df":1,"docs":{"37":{"tf":1.0}}},"df":58,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":2.449489742783178},"15":{"tf":1.0},"16":{"tf":2.23606797749979},"17":{"tf":2.449489742783178},"19":{"tf":2.449489742783178},"23":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.0},"48":{"tf":2.6457513110645907},"49":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":2.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":2.0},"71":{"tf":2.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":2.449489742783178},"82":{"tf":2.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"86":{"tf":2.6457513110645907},"87":{"tf":1.4142135623730951},"88":{"tf":3.605551275463989},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"52":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":12,"docs":{"39":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"64":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"86":{"tf":1.0},"88":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"73":{"tf":1.0},"74":{"tf":1.0}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"92":{"tf":1.0}}}}},"d":{"df":4,"docs":{"35":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}}},"df":4,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":22,"docs":{"0":{"tf":1.0},"11":{"tf":1.4142135623730951},"14":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"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":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"16":{"tf":1.0},"38":{"tf":1.0},"88":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"1":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"93":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}},"s":{"'":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"14":{"tf":1.0},"23":{"tf":1.0},"65":{"tf":2.449489742783178},"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"81":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"40":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"48":{"tf":1.7320508075688772},"53":{"tf":2.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"m":{"d":{"df":2,"docs":{"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":10,"docs":{"0":{"tf":1.0},"11":{"tf":1.4142135623730951},"40":{"tf":1.0},"53":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":2.8284271247461903},"87":{"tf":1.7320508075688772},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"2":{".":{"1":{"2":{"_":{"1":{".":{"0":{"/":{"0":{".":{"2":{".":{"1":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"3":{":":{"1":{".":{"0":{".":{"0":{"df":1,"docs":{"79":{"tf":1.0}}},"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":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"82":{"tf":1.0},"94":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":22,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"14":{"tf":2.449489742783178},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.7320508075688772},"46":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":2.449489742783178},"69":{"tf":2.0},"86":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"47":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":29,"docs":{"0":{"tf":1.0},"10":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"23":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":2.8284271247461903},"69":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.6457513110645907},"89":{"tf":1.4142135623730951}},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"79":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}},"i":{"c":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"50":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"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.0},"63":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"43":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"47":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"24":{"tf":1.0},"89":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"26":{"tf":1.0},"65":{"tf":1.0}},"e":{"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":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"17":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.4142135623730951},"74":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"31":{"tf":1.0},"40":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"52":{"tf":1.0},"84":{"tf":1.7320508075688772}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"46":{"tf":1.0},"81":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"65":{"tf":1.0},"74":{"tf":1.0}}},"y":{"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":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{".":{"1":{"3":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"0":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"75":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":15,"docs":{"12":{"tf":2.0},"14":{"tf":1.4142135623730951},"23":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"78":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"s":{"c":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"+":{"d":{"df":2,"docs":{"26":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"z":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":3,"docs":{"26":{"tf":1.0},"59":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":2.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":15,"docs":{"14":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"89":{"tf":1.0}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"89":{"tf":1.0}}},"t":{"a":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}},"y":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}}},"df":4,"docs":{"26":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0}},"e":{"b":{"df":2,"docs":{"90":{"tf":1.0},"94":{"tf":2.23606797749979}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"86":{"tf":2.449489742783178},"87":{"tf":2.449489742783178},"89":{"tf":2.23606797749979}},"g":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"72":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{"b":{"a":{"df":0,"docs":{},"r":{"_":{"3":{":":{"0":{".":{"1":{".":{"0":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"48":{"tf":1.7320508075688772},"65":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}}}},"df":5,"docs":{"12":{"tf":1.0},"33":{"tf":1.4142135623730951},"45":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"19":{"tf":1.0},"43":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":2.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"78":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"0":{"tf":1.0},"25":{"tf":1.4142135623730951},"32":{"tf":2.0},"39":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"55":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.0},"75":{"tf":2.23606797749979},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"78":{"tf":3.0},"79":{"tf":2.23606797749979},"88":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{},"i":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"62":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"0":{"tf":1.0},"16":{"tf":1.0},"43":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"17":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"47":{"tf":1.0},"56":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"12":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"40":{"tf":1.0},"45":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"12":{"tf":1.7320508075688772},"41":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}},"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":3,"docs":{"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"4":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":8,"docs":{"14":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"35":{"tf":1.0},"39":{"tf":2.8284271247461903}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"51":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"94":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"81":{"tf":1.0}}}}},"m":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.0}}}},"o":{"c":{"df":2,"docs":{"0":{"tf":1.0},"65":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"36":{"tf":2.23606797749979}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"35":{"tf":2.0},"43":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":1.7320508075688772},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"89":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"26":{"tf":2.0},"77":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"48":{"tf":1.0},"61":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"l":{"df":4,"docs":{"46":{"tf":1.4142135623730951},"47":{"tf":2.0},"72":{"tf":2.23606797749979},"73":{"tf":1.0}}}},"v":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"40":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"62":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"7":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":3,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"90":{"tf":1.0}}}}}},"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":{"45":{"tf":1.7320508075688772},"46":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"87":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"12":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":1,"docs":{"48":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"26":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"78":{"tf":1.0},"89":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"46":{"tf":1.0},"77":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"23":{"tf":2.23606797749979},"47":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"t":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"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":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"d":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"d":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"d":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"57":{"tf":1.0},"75":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"89":{"tf":1.0},"92":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":45,"docs":{"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":2.0},"69":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"15":{"tf":1.0},"33":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"2":{"1":{"3":{"df":2,"docs":{"16":{"tf":1.4142135623730951},"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":14,"docs":{"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.0}}}},"t":{"df":8,"docs":{"12":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"9":{"tf":2.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"63":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"6":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"26":{"tf":1.0},"73":{"tf":2.23606797749979}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"47":{"tf":1.0},"86":{"tf":1.0}}},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"23":{"tf":2.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.0},"87":{"tf":1.0}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"df":2,"docs":{"48":{"tf":1.0},"94":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"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":{"68":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":2,"docs":{"48":{"tf":1.0},"68":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"49":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"/":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":5,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"28":{"tf":1.0},"38":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":25,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.23606797749979},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"23":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":2.23606797749979},"83":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":2.23606797749979}}}},"n":{"d":{"df":4,"docs":{"13":{"tf":1.0},"26":{"tf":1.0},"39":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":1,"docs":{"89":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"62":{"tf":1.0},"65":{"tf":1.0},"82":{"tf":1.0}}}}},"x":{"df":1,"docs":{"74":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":20,"docs":{"12":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"o":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"r":{"c":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"89":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}}},"v":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"g":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":1,"docs":{"48":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":6,"docs":{"0":{"tf":1.0},"65":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"88":{"tf":2.0},"90":{"tf":1.0}}}}},"t":{"df":48,"docs":{"14":{"tf":1.4142135623730951},"43":{"tf":2.23606797749979},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":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.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"8":{"df":1,"docs":{"49":{"tf":2.0}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"49":{"tf":1.0},"62":{"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":{"84":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"t":{")":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{")":{",":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"g":{"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":{":":{"/":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":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":{"26":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.7320508075688772}}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":3,"docs":{"38":{"tf":1.0},"74":{"tf":1.0},"89":{"tf":1.0}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}}}},"r":{"a":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"87":{"tf":1.0}}}},"p":{"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"76":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"w":{"df":2,"docs":{"47":{"tf":1.0},"72":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"73":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}},"t":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"23":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"12":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"83":{"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},":":{"0":{".":{"1":{".":{"0":{"df":1,"docs":{"36":{"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":5,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"38":{"tf":1.0}},"e":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":14,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":2.23606797749979},"45":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"40":{"tf":1.0}},"e":{".":{"\\":{"$":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"\\":{"$":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"\\":{"$":{"1":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{":":{"4":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"p":{"df":5,"docs":{"14":{"tf":2.449489742783178},"26":{"tf":1.0},"39":{"tf":1.4142135623730951},"47":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"n":{"c":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":4,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0}}},"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"45":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"48":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"4":{"4":{"3":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":{},"g":{"8":{"df":1,"docs":{"48":{"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":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":2.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"94":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"/":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"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":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"87":{"tf":1.0}}}}},"d":{"df":8,"docs":{"0":{"tf":1.0},"57":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"77":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"68":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"36":{"tf":1.0},"53":{"tf":1.0}}}},"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":1,"docs":{"75":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"26":{"tf":2.0},"33":{"tf":1.7320508075688772},"51":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":2.23606797749979},"88":{"tf":2.449489742783178},"94":{"tf":1.0}}}}}}},"n":{"c":{"df":4,"docs":{"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"u":{"d":{"df":6,"docs":{"64":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"22":{"tf":1.4142135623730951},"46":{"tf":1.0},"56":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":23,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":2.449489742783178},"17":{"tf":1.4142135623730951},"19":{"tf":2.0},"23":{"tf":2.0},"26":{"tf":1.0},"28":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"35":{"tf":2.6457513110645907},"36":{"tf":1.0},"38":{"tf":2.6457513110645907},"39":{"tf":1.4142135623730951},"48":{"tf":3.3166247903554},"59":{"tf":3.0},"63":{"tf":3.0},"64":{"tf":2.6457513110645907},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":3.3166247903554},"79":{"tf":2.6457513110645907},"8":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"14":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"[":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"a":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"[":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}},"i":{"d":{"df":3,"docs":{"48":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"39":{"tf":2.6457513110645907},"65":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"1":{"tf":2.23606797749979},"2":{"tf":1.0},"3":{"tf":2.449489742783178},"4":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":2.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":3.0}}},"n":{"c":{"df":5,"docs":{"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"1":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"49":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":5,"docs":{"0":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":3.7416573867739413},"88":{"tf":4.358898943540674}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"86":{"tf":2.0},"87":{"tf":2.0},"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"23":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"45":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":6,"docs":{"1":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"s":{"_":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"88":{"tf":1.0}}}}},"t":{"'":{"df":6,"docs":{"51":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"0":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":2.0},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"v":{"a":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"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":{},"i":{"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":14,"docs":{"0":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"59":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":2.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.7320508075688772},"2":{"tf":1.0},"3":{"tf":1.0},"92":{"tf":2.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"92":{"tf":1.0}}}},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"o":{"b":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"45":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"(":{"\"":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{")":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"33":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"49":{"tf":1.0},"89":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":4,"docs":{"0":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}}}},"k":{"df":1,"docs":{"89":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"47":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"y":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"48":{"tf":1.0},"71":{"tf":1.7320508075688772},"73":{"tf":2.23606797749979},"76":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"3":{"df":1,"docs":{"79":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"3":{":":{"0":{".":{"2":{".":{"0":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":4,"docs":{"48":{"tf":1.4142135623730951},"74":{"tf":2.449489742783178},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"72":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"73":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"i":{"df":4,"docs":{"71":{"tf":1.0},"74":{"tf":3.0},"78":{"tf":1.0},"80":{"tf":1.7320508075688772}}}}},"df":1,"docs":{"94":{"tf":1.4142135623730951}},"e":{"a":{"d":{"df":1,"docs":{"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{">":{"a":{"a":{"df":1,"docs":{"89":{"tf":1.0}}},"df":1,"docs":{"89":{"tf":1.0}}},"d":{"c":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":1,"docs":{"89":{"tf":1.0}}},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":4,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"59":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}},"t":{"'":{"df":7,"docs":{"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"48":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0}}},"df":3,"docs":{"46":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"45":{"tf":1.0},"74":{"tf":1.0}}}}}},"i":{"b":{"_":{"3":{":":{"0":{".":{"9":{".":{"1":{"df":1,"docs":{"79":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"0":{"tf":1.0},"25":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.4142135623730951},"66":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":2.0}}},"y":{"_":{"3":{":":{"3":{".":{"1":{".":{"3":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"20":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"76":{"tf":2.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"94":{"tf":2.0}}}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"14":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"3":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"71":{"tf":1.0},"89":{"tf":2.23606797749979},"94":{"tf":1.0}}}}},"o":{"a":{"d":{"df":5,"docs":{"19":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"74":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{":":{"/":{"/":{"/":{"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":{},"e":{"d":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"9":{"df":0,"docs":{},"n":{"/":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"/":{"1":{".":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"0":{"a":{"c":{"1":{"4":{"0":{"9":{"c":{"0":{"1":{"1":{"7":{"a":{"9":{"4":{"9":{"d":{"4":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"9":{"8":{"2":{"df":0,"docs":{},"e":{"0":{"7":{"df":0,"docs":{},"e":{"8":{"5":{"c":{"7":{"d":{"df":0,"docs":{},"e":{"1":{"b":{"6":{"1":{"8":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":3,"docs":{"86":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"48":{"tf":1.0},"58":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"89":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":1,"docs":{"94":{"tf":1.0}}},"u":{"a":{"df":1,"docs":{"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0}}}}},"o":{"df":4,"docs":{"1":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"12":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":9,"docs":{"14":{"tf":1.0},"35":{"tf":2.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"65":{"tf":2.6457513110645907},"67":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"83":{"tf":2.23606797749979},"94":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"43":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"0":{"tf":1.0},"24":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"47":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"12":{"tf":1.0},"75":{"tf":1.7320508075688772},"81":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":2.0}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"43":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"71":{"tf":1.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"77":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"df":3,"docs":{"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":1,"docs":{"48":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"10":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"u":{"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"57":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":4.123105625617661},"89":{"tf":2.8284271247461903}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"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":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"?":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{".":{"7":{"1":{"4":{"3":{"&":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"o":{"d":{"df":2,"docs":{"65":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":2.449489742783178}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"48":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"26":{"tf":1.4142135623730951},"40":{"tf":2.0},"60":{"tf":1.7320508075688772},"69":{"tf":1.0},"89":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"56":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"23":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":18,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"92":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"32":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"40":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"80":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"67":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{":":{"1":{"1":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":1,"docs":{"94":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"14":{"tf":1.0},"18":{"tf":1.7320508075688772},"23":{"tf":1.0},"41":{"tf":1.7320508075688772},"45":{"tf":1.0},"71":{"tf":2.0},"73":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"53":{"tf":1.7320508075688772},"64":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"86":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":1,"docs":{"48":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":10,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":2.8284271247461903}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}},"w":{"df":13,"docs":{"12":{"tf":1.0},"14":{"tf":2.0},"16":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":2.23606797749979},"48":{"tf":2.6457513110645907},"49":{"tf":2.23606797749979},"81":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"34":{"tf":1.0},"89":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"83":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":12,"docs":{"19":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"51":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"90":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}},"w":{"df":4,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"75":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"43":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":2.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"33":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"3":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"89":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"90":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"k":{"df":1,"docs":{"83":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"89":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"c":{"df":5,"docs":{"62":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":11,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"49":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":2.0},"89":{"tf":1.0}},"j":{"d":{"df":0,"docs":{},"k":{"df":3,"docs":{"2":{"tf":1.0},"26":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"2":{"tf":1.0},"73":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"47":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"23":{"tf":1.0},"65":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":5,"docs":{"48":{"tf":1.4142135623730951},"74":{"tf":2.449489742783178},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"47":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"s":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"26":{"tf":1.0},"39":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"75":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":2.0},"94":{"tf":2.8284271247461903}},"e":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"65":{"tf":1.0},"80":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":9,"docs":{"42":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0}}}}},"s":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"73":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":10,"docs":{"14":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"35":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"t":{"df":2,"docs":{"26":{"tf":1.7320508075688772},"74":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"83":{"tf":1.0},"92":{"tf":1.0}}}}},"df":3,"docs":{"48":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}}}},"r":{"df":2,"docs":{"87":{"tf":1.0},"89":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"12":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"75":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"78":{"tf":2.0},"83":{"tf":1.4142135623730951},"94":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"45":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"14":{"tf":1.0},"34":{"tf":1.7320508075688772},"47":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":2.0}},"s":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":3,"docs":{"63":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"m":{"df":1,"docs":{"48":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"81":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"46":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"88":{"tf":1.0},"89":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"11":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}},"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":{"2":{"tf":1.4142135623730951}}}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"23":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"12":{"tf":1.0},"45":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"33":{"tf":1.0},"48":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"/":{"b":{"a":{"df":0,"docs":{},"r":{"/":{"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":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"45":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"65":{"tf":2.6457513110645907}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"80":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":2,"docs":{"85":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":3,"docs":{"77":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}},"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"46":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}},"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":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":30,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"14":{"tf":2.449489742783178},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"28":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":2.0},"48":{"tf":3.3166247903554},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":1.7320508075688772},"7":{"tf":1.0},"71":{"tf":2.0},"74":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":3.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":2.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"53":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"14":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"56":{"tf":1.0},"65":{"tf":2.23606797749979},"89":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"0":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":2.0}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"2":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"q":{"df":2,"docs":{"26":{"tf":1.0},"48":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":42,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"89":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"48":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"j":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{")":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"d":{"df":4,"docs":{"19":{"tf":1.0},"43":{"tf":1.4142135623730951},"52":{"tf":1.0},"62":{"tf":1.0}},"i":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"38":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"1":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}},"v":{"df":1,"docs":{"94":{"tf":1.0}}}},"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"74":{"tf":1.7320508075688772},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"l":{"df":1,"docs":{"83":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"83":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"1":{"tf":1.0}}},"o":{"a":{"d":{"df":10,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"o":{"df":1,"docs":{"94":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"46":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"40":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"(":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":5,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"65":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"26":{"tf":1.4142135623730951},"33":{"tf":1.0},"88":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"\"":{":":{"4":{"0":{".":{"7":{"1":{"0":{"3":{"3":{"5":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"48":{"tf":1.0},"89":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"76":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"73":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{":":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"d":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"64":{"tf":1.4142135623730951},"71":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"94":{"tf":3.0}}}}}}},"df":2,"docs":{"90":{"tf":1.0},"94":{"tf":2.0}}}},"u":{"df":0,"docs":{},"n":{"df":34,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"15":{"tf":2.0},"16":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"46":{"tf":1.0},"48":{"tf":2.0},"51":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":2.23606797749979},"67":{"tf":2.449489742783178},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"76":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"1":{"tf":2.23606797749979},"2":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.7320508075688772},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"6":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"47":{"tf":1.0},"52":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"17":{"tf":2.23606797749979},"69":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"81":{"tf":1.0}}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"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":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"2":{".":{"0":{".":{"0":{"df":2,"docs":{"52":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"48":{"tf":1.0}}}}}}}}}},"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{"b":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":6,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":13,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772}}}}}}}},"df":87,"docs":{"0":{"tf":2.6457513110645907},"1":{"tf":2.8284271247461903},"10":{"tf":2.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.0},"40":{"tf":2.23606797749979},"41":{"tf":2.23606797749979},"42":{"tf":1.4142135623730951},"43":{"tf":2.23606797749979},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":2.6457513110645907},"47":{"tf":1.7320508075688772},"48":{"tf":3.605551275463989},"49":{"tf":1.4142135623730951},"5":{"tf":2.0},"50":{"tf":1.7320508075688772},"51":{"tf":2.8284271247461903},"52":{"tf":3.0},"53":{"tf":2.8284271247461903},"54":{"tf":2.23606797749979},"55":{"tf":1.4142135623730951},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":2.0},"59":{"tf":3.7416573867739413},"6":{"tf":2.23606797749979},"60":{"tf":2.23606797749979},"61":{"tf":2.449489742783178},"62":{"tf":1.7320508075688772},"63":{"tf":2.8284271247461903},"65":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":2.449489742783178},"80":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.6457513110645907},"86":{"tf":3.3166247903554},"87":{"tf":1.4142135623730951},"88":{"tf":4.0},"89":{"tf":2.449489742783178},"9":{"tf":2.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"94":{"tf":3.605551275463989}},"n":{"df":5,"docs":{"53":{"tf":2.23606797749979},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.0}}}},"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"3":{".":{"df":0,"docs":{},"g":{"8":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"41":{"tf":1.0},"48":{"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":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"c":{"df":2,"docs":{"45":{"tf":2.0},"88":{"tf":1.0}}},"df":31,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":2.449489742783178},"33":{"tf":1.4142135623730951},"35":{"tf":2.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":2.8284271247461903},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":3.605551275463989},"49":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":2.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":2.0},"78":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":3.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":2.0},"89":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":14,"docs":{"0":{"tf":1.0},"16":{"tf":2.449489742783178},"17":{"tf":1.0},"38":{"tf":2.449489742783178},"47":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"48":{"tf":1.0}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"65":{"tf":1.0},"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.7320508075688772}},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.7320508075688772},"90":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":8,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"8":{"df":2,"docs":{"41":{"tf":1.0},"48":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":1,"docs":{"48":{"tf":1.4142135623730951}}},"df":10,"docs":{"33":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.0}},"m":{"df":1,"docs":{"83":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"48":{"tf":2.0},"65":{"tf":1.0},"67":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"d":{"df":3,"docs":{"26":{"tf":1.0},"33":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"26":{"tf":1.0},"48":{"tf":2.449489742783178},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"55":{"tf":1.0},"57":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"59":{"tf":2.23606797749979},"61":{"tf":1.7320508075688772},"63":{"tf":2.0},"8":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":2.6457513110645907},"88":{"tf":2.23606797749979}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"14":{"tf":1.0},"17":{"tf":2.0},"86":{"tf":2.0},"87":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.7320508075688772}}}}}}},"t":{"df":20,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":2.449489742783178},"17":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"31":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":2.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.7320508075688772},"73":{"tf":2.0},"80":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"[":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"41":{"tf":1.0},"90":{"tf":2.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":15,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.4142135623730951},"40":{"tf":1.0},"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"59":{"tf":2.449489742783178},"63":{"tf":1.7320508075688772},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":1,"docs":{"85":{"tf":1.0}}}},"w":{"df":3,"docs":{"64":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":4,"docs":{"48":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0}}}}}},"df":2,"docs":{"48":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"73":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"0":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"80":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"56":{"tf":1.0},"80":{"tf":1.0}}}}}},"l":{"df":1,"docs":{"94":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"45":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"43":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"4":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}},"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"35":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"36":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":12,"docs":{"18":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"37":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":2.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"41":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":16,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.0},"17":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":3.3166247903554},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.23606797749979}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":5,"docs":{"14":{"tf":1.0},"46":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"52":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"48":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"46":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":90,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.23606797749979},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.8284271247461903},"49":{"tf":1.4142135623730951},"5":{"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":2.23606797749979},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":2.449489742783178},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":2.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"9":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"1":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"69":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"48":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"4":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{".":{"_":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"33":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"u":{"b":{"1":{"df":1,"docs":{"27":{"tf":1.0}}},"2":{"df":1,"docs":{"30":{"tf":1.0}}},"3":{"df":1,"docs":{"31":{"tf":1.0}}},"4":{"df":1,"docs":{"32":{"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":3,"docs":{"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"80":{"tf":1.0}}},"df":17,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"71":{"tf":2.0},"72":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":2.23606797749979},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"35":{"tf":1.7320508075688772},"48":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"65":{"tf":2.23606797749979},"76":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"94":{"tf":4.123105625617661}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"43":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"38":{"tf":1.4142135623730951},"86":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":10,"docs":{"2":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":5,"docs":{"59":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":1,"docs":{"36":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"48":{"tf":1.0},"57":{"tf":1.0},"81":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"[":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":11,"docs":{"14":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"65":{"tf":3.605551275463989},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"[":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"49":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"m":{"df":1,"docs":{"3":{"tf":1.0}},"p":{"df":1,"docs":{"33":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"41":{"tf":1.0},"48":{"tf":2.6457513110645907},"49":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"n":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"71":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"40":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"60":{"tf":1.0}}},"df":22,"docs":{"0":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"23":{"tf":2.449489742783178},"24":{"tf":2.23606797749979},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.7320508075688772},"65":{"tf":2.23606797749979},"68":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"74":{"tf":2.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"83":{"tf":2.23606797749979},"84":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":2.0},"89":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"40":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"40":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"90":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"89":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}},"g":{"df":2,"docs":{"46":{"tf":1.0},"83":{"tf":1.0}}},"k":{"df":1,"docs":{"74":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"s":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"16":{"tf":2.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"65":{"tf":1.0},"74":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"83":{"tf":1.0},"89":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"58":{"tf":1.0},"73":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":7,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"26":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.0}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}},"e":{"_":{"a":{"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":7,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"35":{"tf":2.23606797749979},"48":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}}}}}}}},"df":1,"docs":{"49":{"tf":1.0}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":7,"docs":{"0":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"54":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"3":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"20":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":2.6457513110645907},"74":{"tf":3.1622776601683795},"77":{"tf":1.4142135623730951},"78":{"tf":2.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"74":{"tf":2.0},"78":{"tf":1.4142135623730951}}}}}},"v":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"74":{"tf":3.1622776601683795},"78":{"tf":1.7320508075688772}}}}}}}},"p":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"46":{"tf":1.0},"52":{"tf":1.0},"78":{"tf":1.7320508075688772},"81":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"n":{"df":1,"docs":{"68":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"45":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"39":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":3,"docs":{"26":{"tf":1.0},"39":{"tf":1.0},"69":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"89":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"86":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":2,"docs":{"85":{"tf":1.0},"90":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":14,"docs":{"26":{"tf":1.4142135623730951},"41":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"59":{"tf":1.4142135623730951},"67":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":2.449489742783178},"79":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.7320508075688772},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"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":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"i":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":2.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"33":{"tf":1.7320508075688772}}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"41":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"df":6,"docs":{"12":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"39":{"tf":1.0},"4":{"tf":1.4142135623730951}}}}}},"x":{"df":2,"docs":{"59":{"tf":1.0},"9":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"48":{"tf":1.0},"65":{"tf":1.0},"94":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":8,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"74":{"tf":1.0},"89":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":51,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"65":{"tf":2.0},"69":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":2.449489742783178},"87":{"tf":1.7320508075688772},"88":{"tf":3.872983346207417},"89":{"tf":3.605551275463989},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"9":{"df":0,"docs":{},"n":{"/":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"/":{"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":1,"docs":{"63":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}}},"x":{"df":1,"docs":{"88":{"tf":1.0}}}},"v":{"2":{"df":1,"docs":{"87":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"26":{"tf":2.449489742783178},"33":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"71":{"tf":1.0},"74":{"tf":4.242640687119285},"78":{"tf":2.0},"80":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":10,"docs":{"16":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"76":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"47":{"tf":1.0},"74":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"b":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"1":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.449489742783178},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":2.449489742783178},"78":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}}}}},"i":{"a":{"df":4,"docs":{"0":{"tf":1.0},"47":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"65":{"tf":1.0},"79":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"m":{"df":1,"docs":{"89":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}},"z":{"df":1,"docs":{"64":{"tf":1.0}}}},"m":{"df":1,"docs":{"26":{"tf":1.0}}},"s":{"df":2,"docs":{"0":{"tf":1.0},"86":{"tf":2.0}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"88":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"17":{"tf":2.6457513110645907},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"y":{"df":3,"docs":{"58":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"37":{"tf":1.0}}}}}}},"b":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":6,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"11":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"48":{"tf":1.0},"63":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"54":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"n":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"59":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":20,"docs":{"33":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":3,"docs":{"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"23":{"tf":1.4142135623730951},"56":{"tf":1.0},"77":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"42":{"tf":1.0},"48":{"tf":1.0},"81":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"73":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}}},"x":{"d":{"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":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"23":{"tf":1.0}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":4,"docs":{"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0}}}},"u":{"'":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"r":{"df":3,"docs":{"75":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"v":{"df":2,"docs":{"6":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"q":{"df":1,"docs":{"94":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}}},"z":{"df":1,"docs":{"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"46":{"tf":1.0},"56":{"tf":2.23606797749979},"88":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"title":{"root":{"a":{"d":{"d":{"df":4,"docs":{"20":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"88":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"15":{"tf":1.0},"36":{"tf":1.0}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"70":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"40":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"a":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"57":{"tf":1.0}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"47":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}},"df":10,"docs":{"19":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"13":{"tf":1.0},"31":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"29":{"tf":1.0},"66":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"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":1,"docs":{"84":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"22":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"7":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"25":{"tf":1.0},"32":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"44":{"tf":1.0},"62":{"tf":1.0}}}},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"82":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"43":{"tf":1.0},"77":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"8":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":1,"docs":{"32":{"tf":1.0}}}},"p":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}},"e":{"a":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.0}}}}}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"76":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"25":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0}}},"y":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"20":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"94":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"24":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}},"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":{"7":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"40":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"18":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"w":{"df":2,"docs":{"41":{"tf":1.0},"48":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}},"s":{"df":1,"docs":{"91":{"tf":1.0}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"34":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"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":{"2":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"10":{"tf":1.0},"18":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"19":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":5,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"67":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"t":{"df":25,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"16":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0}},"n":{"df":4,"docs":{"53":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"26":{"tf":1.0},"77":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"16":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"t":{"df":3,"docs":{"16":{"tf":1.0},"37":{"tf":1.0},"73":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"90":{"tf":1.0},"91":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"16":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"12":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"91":{"tf":1.0}},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"b":{"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":4,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"39":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"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":2,"docs":{"20":{"tf":1.0},"30":{"tf":1.0}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}}}}},"s":{"df":7,"docs":{"26":{"tf":1.0},"33":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"37":{"tf":1.0},"52":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"62":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"35":{"tf":1.0}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}
\ No newline at end of file
+{"doc_urls":["index.html#the-book-of-sbt-draft","Setup.html#installing-sbt-runner","Setup.html#prerequisites","Setup.html#installing-from-sdkman","Setup.html#universal-packages","Setup.html#verify-the-sbt-runner","sbt-by-example.html#sbt-by-example","sbt-by-example.html#create-a-minimum-sbt-build","sbt-by-example.html#start-sbt-shell","sbt-by-example.html#exit-sbt-shell","sbt-by-example.html#compile-a-project","sbt-by-example.html#recompile-on-code-change","sbt-by-example.html#create-a-source-file","sbt-by-example.html#run-a-previous-command","sbt-by-example.html#getting-help","sbt-by-example.html#run-your-app","sbt-by-example.html#set-thisbuild--scalaversion-from-sbt-shell","sbt-by-example.html#save-the-session-to-buildsbt","sbt-by-example.html#name-your-project","sbt-by-example.html#reload-the-build","sbt-by-example.html#add-toolkit-test-to-librarydependencies","sbt-by-example.html#run-tests","sbt-by-example.html#run-incremental-tests-continuously","sbt-by-example.html#write-a-test","sbt-by-example.html#make-the-test-pass","sbt-by-example.html#add-a-library-dependency","sbt-by-example.html#use-scala-repl","sbt-by-example.html#make-a-subproject","sbt-by-example.html#list-all-subprojects","sbt-by-example.html#compile-the-subproject","sbt-by-example.html#add-toolkit-test-to-the-subproject","sbt-by-example.html#broadcast-commands","sbt-by-example.html#make-hello-depend-on-hellocore","sbt-by-example.html#parse-json-using-ujson","sbt-by-example.html#switch-scalaversion-temporarily","sbt-by-example.html#batch-mode","sbt-by-example.html#sbt-new-command","sbt-by-example.html#credits","guide/index.html#getting-started-with-sbt","guide/why-sbt-exists.html#why-sbt-exists","guide/why-sbt-exists.html#preliminaries","guide/why-sbt-exists.html#sbt","guide/why-sbt-exists.html#why-buildsbt-dsl","guide/sbt-new.html#creating-a-new-build","guide/sbt-new.html#giter8-templates","guide/sbt-components.html#sbt-components","guide/sbt-components.html#sbt-runner","guide/sbt-components.html#specifying-sbt-version-with-projectbuildproperties","guide/sbt-components.html#sbtn-sbt---client","guide/sbt-components.html#sbt-server","guide/sbt-components.html#coursier","guide/sbt-components.html#zinc","guide/sbt-components.html#bsp-server","guide/sbt-components.html#connecting-to-sbt-server","guide/sbt-components.html#sbt-shell-using-sbtn","guide/sbt-components.html#batch-mode-using-sbtn","guide/sbt-components.html#shutting-down-sbt-server","guide/running.html#working-with-an-existing-build","guide/running.html#sbt-shell-with-sbtn","guide/running.html#projects-command","guide/running.html#tasks-command","guide/running.html#compile","guide/running.html#run","guide/running.html#testquick","guide/running.html#watch-tilde-command","guide/build-definition-basics.html#build-definition-basics","guide/build-definition-basics.html#what-is-a-build-definition","guide/build-definition-basics.html#buildsbt-dsl","guide/build-definition-basics.html#typed-setting-expression","guide/build-definition-basics.html#vals-and-lazy-vals","guide/library-dependency-basics.html#library-dependency-basics","guide/library-dependency-basics.html#the-librarydependencies-key","guide/library-dependency-basics.html#getting-the-right-scala-version-with-","guide/library-dependency-basics.html#tracking-dependencies-in-one-place","guide/library-dependency-basics.html#viewing-library-dependencies","guide/multi-project-basics.html#multi-project-basics","guide/build-layout.html#build-layout","guide/build-layout.html#build-support-files","guide/build-layout.html#source-code","guide/build-layout.html#configuring-version-control","guide/IDE.html#sbt-with-ides","guide/IDE.html#using-sbt-as-metals-build-server","guide/IDE.html#importing-to-intellij-idea","guide/IDE.html#using-sbt-as-intellij-idea-build-server-advanced","guide/IDE.html#using-neovim-as-metals-frontend-advanced","setup-notes.html#setup-notes","setup-notes.html#os-specific-setup","setup-notes.html#macos","setup-notes.html#windows","setup-notes.html#linux"],"index":{"documentStore":{"docInfo":{"0":{"body":58,"breadcrumbs":4,"title":3},"1":{"body":48,"breadcrumbs":8,"title":3},"10":{"body":23,"breadcrumbs":6,"title":2},"11":{"body":44,"breadcrumbs":7,"title":3},"12":{"body":81,"breadcrumbs":7,"title":3},"13":{"body":14,"breadcrumbs":7,"title":3},"14":{"body":79,"breadcrumbs":6,"title":2},"15":{"body":20,"breadcrumbs":6,"title":2},"16":{"body":41,"breadcrumbs":9,"title":5},"17":{"body":63,"breadcrumbs":7,"title":3},"18":{"body":11,"breadcrumbs":6,"title":2},"19":{"body":50,"breadcrumbs":6,"title":2},"2":{"body":15,"breadcrumbs":6,"title":1},"20":{"body":26,"breadcrumbs":8,"title":4},"21":{"body":2,"breadcrumbs":6,"title":2},"22":{"body":2,"breadcrumbs":8,"title":4},"23":{"body":81,"breadcrumbs":6,"title":2},"24":{"body":24,"breadcrumbs":7,"title":3},"25":{"body":29,"breadcrumbs":7,"title":3},"26":{"body":118,"breadcrumbs":7,"title":3},"27":{"body":42,"breadcrumbs":6,"title":2},"28":{"body":9,"breadcrumbs":6,"title":2},"29":{"body":2,"breadcrumbs":6,"title":2},"3":{"body":24,"breadcrumbs":7,"title":2},"30":{"body":42,"breadcrumbs":8,"title":4},"31":{"body":60,"breadcrumbs":6,"title":2},"32":{"body":51,"breadcrumbs":8,"title":4},"33":{"body":87,"breadcrumbs":8,"title":4},"34":{"body":37,"breadcrumbs":7,"title":3},"35":{"body":37,"breadcrumbs":6,"title":2},"36":{"body":36,"breadcrumbs":7,"title":3},"37":{"body":10,"breadcrumbs":5,"title":1},"38":{"body":39,"breadcrumbs":5,"title":3},"39":{"body":0,"breadcrumbs":6,"title":2},"4":{"body":6,"breadcrumbs":7,"title":2},"40":{"body":76,"breadcrumbs":5,"title":1},"41":{"body":83,"breadcrumbs":5,"title":1},"42":{"body":102,"breadcrumbs":6,"title":2},"43":{"body":282,"breadcrumbs":8,"title":3},"44":{"body":39,"breadcrumbs":7,"title":2},"45":{"body":0,"breadcrumbs":6,"title":2},"46":{"body":21,"breadcrumbs":6,"title":2},"47":{"body":39,"breadcrumbs":8,"title":4},"48":{"body":39,"breadcrumbs":7,"title":3},"49":{"body":18,"breadcrumbs":6,"title":2},"5":{"body":4,"breadcrumbs":8,"title":3},"50":{"body":14,"breadcrumbs":5,"title":1},"51":{"body":37,"breadcrumbs":5,"title":1},"52":{"body":21,"breadcrumbs":6,"title":2},"53":{"body":7,"breadcrumbs":7,"title":3},"54":{"body":105,"breadcrumbs":8,"title":4},"55":{"body":15,"breadcrumbs":8,"title":4},"56":{"body":15,"breadcrumbs":8,"title":4},"57":{"body":31,"breadcrumbs":8,"title":3},"58":{"body":75,"breadcrumbs":8,"title":3},"59":{"body":34,"breadcrumbs":7,"title":2},"6":{"body":12,"breadcrumbs":6,"title":2},"60":{"body":211,"breadcrumbs":7,"title":2},"61":{"body":29,"breadcrumbs":6,"title":1},"62":{"body":49,"breadcrumbs":6,"title":1},"63":{"body":94,"breadcrumbs":6,"title":1},"64":{"body":42,"breadcrumbs":8,"title":3},"65":{"body":5,"breadcrumbs":8,"title":3},"66":{"body":60,"breadcrumbs":7,"title":2},"67":{"body":29,"breadcrumbs":7,"title":2},"68":{"body":77,"breadcrumbs":8,"title":3},"69":{"body":142,"breadcrumbs":8,"title":3},"7":{"body":14,"breadcrumbs":8,"title":4},"70":{"body":25,"breadcrumbs":8,"title":3},"71":{"body":31,"breadcrumbs":7,"title":2},"72":{"body":54,"breadcrumbs":9,"title":4},"73":{"body":69,"breadcrumbs":9,"title":4},"74":{"body":44,"breadcrumbs":8,"title":3},"75":{"body":65,"breadcrumbs":8,"title":3},"76":{"body":89,"breadcrumbs":6,"title":2},"77":{"body":40,"breadcrumbs":7,"title":3},"78":{"body":99,"breadcrumbs":6,"title":2},"79":{"body":28,"breadcrumbs":7,"title":3},"8":{"body":16,"breadcrumbs":7,"title":3},"80":{"body":43,"breadcrumbs":6,"title":2},"81":{"body":166,"breadcrumbs":9,"title":5},"82":{"body":136,"breadcrumbs":7,"title":3},"83":{"body":256,"breadcrumbs":11,"title":7},"84":{"body":250,"breadcrumbs":9,"title":5},"85":{"body":49,"breadcrumbs":5,"title":2},"86":{"body":0,"breadcrumbs":6,"title":3},"87":{"body":39,"breadcrumbs":4,"title":1},"88":{"body":10,"breadcrumbs":4,"title":1},"89":{"body":266,"breadcrumbs":4,"title":1},"9":{"body":13,"breadcrumbs":7,"title":3}},"docs":{"0":{"body":"Warning This is a draft documentation of sbt 2.x that is yet to be released. While the general concept translates to sbt 1.x, details of both 2.x and this doc are subject to change. sbt logo sbt is a simple build tool for Scala and Java. sbt downloads your library dependencies via Coursier, incrementally compiles and tests your projects, integrates with IDEs like IntelliJ and VS Code, makes JAR packages, and publishes them to Maven Central , JVM community's package registry. scalaVersion := \"3.3.3\" You just need one line of build.sbt to get started with Scala.","breadcrumbs":"Introduction » The Book of sbt (Draft)","id":"0","title":"The Book of sbt (Draft)"},"1":{"body":"To build an sbt project, you'll need to take these steps: Install JDK (We recommend Eclipse Adoptium Temurin JDK 8, 11, or 17, or Zulu JDK 8 for macOS with ARM chips). Install sbt runner. sbt runner is a script that invokes a declared version of sbt, downloading it beforehand if necessary. This allows build authors to precisely control the sbt version, instead of relying on users' machine environment.","breadcrumbs":"Quick Start » Installing sbt runner » Installing sbt runner","id":"1","title":"Installing sbt runner"},"10":{"body":"As a convention, we will use the sbt:...> or > prompt to mean that we're in the sbt interactive shell. $ sbt\nsbt:foo-build> compile\n[success] elapsed time: 0 s, cache 0%, 1 onsite task","breadcrumbs":"Quick Start » sbt by example » Compile a project","id":"10","title":"Compile a project"},"11":{"body":"Prefixing the compile command (or any other command) with ~ causes the command to be automatically re-executed whenever one of the source files within the project is modified. For example: sbt:foo-build> ~compile\n[success] elapsed time: 0 s, cache 100%, 1 disk cache hit\n[info] 1. Monitoring source files for foo-build/compile...\n[info] Press to interrupt or '?' for more options.","breadcrumbs":"Quick Start » sbt by example » Recompile on code change","id":"11","title":"Recompile on code change"},"12":{"body":"Leave the previous command running. From a different shell or in your file manager create in the foo-build directory the following nested directories: src/main/scala/example. Then, create Hello.scala in the example directory using your favorite editor as follows: package example @main def main(args: String*): Unit = println(s\"Hello ${args.mkString}\") This new file should be picked up by the running command: [info] Build triggered by /tmp/foo-build/src/main/scala/example/Hello.scala. Running 'compile'.\n[info] compiling 1 Scala source to /tmp/foo-build/target/out/jvm/scala-3.3.3/foo/backend ...\n[success] elapsed time: 1 s, cache 0%, 1 onsite task\n[info] 2. Monitoring source files for foo-build/compile...\n[info] Press to interrupt or '?' for more options. Press Enter to exit ~compile.","breadcrumbs":"Quick Start » sbt by example » Create a source file","id":"12","title":"Create a source file"},"13":{"body":"From sbt shell, press up-arrow twice to find the compile command that you executed at the beginning. sbt:foo-build> compile","breadcrumbs":"Quick Start » sbt by example » Run a previous command","id":"13","title":"Run a previous command"},"14":{"body":"Use the help command to get basic help about the available commands. sbt:foo-build> help (; )* Runs the provided semicolon-separated commands. about Displays basic information about sbt and the build. tasks Lists the tasks defined for the current project. settings Lists the settings defined for the current project. reload (Re)loads the current project or changes to plugins project or returns from it. new Creates a new sbt build. new Creates a new sbt build. projects Lists the names of available projects or temporarily adds/removes extra builds to the session. .... Display the description of a specific task: sbt:foo-build> help run\nRuns a main class, passing along arguments provided on the command line.","breadcrumbs":"Quick Start » sbt by example » Getting help","id":"14","title":"Getting help"},"15":{"body":"sbt:foo> run\n[info] running example.main\nHello\n[success] elapsed time: 0 s, cache 50%, 1 disk cache hit, 1 onsite task","breadcrumbs":"Quick Start » sbt by example » Run your app","id":"15","title":"Run your app"},"16":{"body":"sbt:foo-build> set scalaVersion := \"3.3.3\"\n[info] Defining scalaVersion\n[info] The new value will be used by Compile / bspBuildTarget, Compile / dependencyTreeCrossProjectId and 51 others.\n[info] Run `last` for details.\n[info] Reapplying settings...\n[info] set current project to foo (in build file:/tmp/foo-build/) Check the scalaVersion setting: sbt:foo-build> scalaVersion\n[info] 3.3.3","breadcrumbs":"Quick Start » sbt by example » Set ThisBuild / scalaVersion from sbt shell","id":"16","title":"Set ThisBuild / scalaVersion from sbt shell"},"17":{"body":"We can save the ad-hoc settings using session save. sbt:foo-build> session save\n[info] Reapplying settings...\n[info] set current project to foo-build (in build file:/tmp/foo-build/)\n[warn] build source files have changed\n[warn] modified files:\n[warn] /tmp/foo-build/build.sbt\n[warn] Apply these changes by running `reload`.\n[warn] Automatically reload the build when source changes are detected by setting `Global / onChangedBuildSource := ReloadOnSourceChanges`.\n[warn] Disable this warning by setting `Global / onChangedBuildSource := IgnoreSourceChanges`. build.sbt file should now contain: scalaVersion := \"3.3.3\"","breadcrumbs":"Quick Start » sbt by example » Save the session to build.sbt","id":"17","title":"Save the session to build.sbt"},"18":{"body":"Using an editor, change build.sbt as follows: scalaVersion := \"3.3.3\"\norganization := \"com.example\"\nname := \"Hello\"","breadcrumbs":"Quick Start » sbt by example » Name your project","id":"18","title":"Name your project"},"19":{"body":"Use the reload command to reload the build. The command causes the build.sbt file to be re-read, and its settings applied. sbt:foo-build> reload\n[info] welcome to sbt 2.x (Azul Systems, Inc. Java)\n[info] loading project definition from /tmp/foo-build/project\n[info] loading settings for project hello from build.sbt ...\n[info] set current project to Hello (in build file:/tmp/foo-build/)\nsbt:Hello> Note that the prompt has now changed to sbt:Hello>.","breadcrumbs":"Quick Start » sbt by example » Reload the build","id":"19","title":"Reload the build"},"2":{"body":"sbt runs on all major operating systems; however, it requires JDK 8 or higher to run. java -version\n# openjdk version \"1.8.0_352\"","breadcrumbs":"Quick Start » Installing sbt runner » Prerequisites","id":"2","title":"Prerequisites"},"20":{"body":"Using an editor, change build.sbt as follows: scalaVersion := \"3.3.3\"\norganization := \"com.example\"\nname := \"Hello\"\nlibraryDependencies += \"org.scala-lang\" %% \"toolkit-test\" % \"0.1.7\" % Test Use the reload command to reflect the change in build.sbt. sbt:Hello> reload","breadcrumbs":"Quick Start » sbt by example » Add toolkit-test to libraryDependencies","id":"20","title":"Add toolkit-test to libraryDependencies"},"21":{"body":"sbt:Hello> test","breadcrumbs":"Quick Start » sbt by example » Run tests","id":"21","title":"Run tests"},"22":{"body":"sbt:Hello> ~testQuick","breadcrumbs":"Quick Start » sbt by example » Run incremental tests continuously","id":"22","title":"Run incremental tests continuously"},"23":{"body":"Leaving the previous command running, create a file named src/test/scala/example/HelloSuite.scala using an editor: package example class HelloSuite extends munit.FunSuite: test(\"Hello should start with H\") { assert(\"hello\".startsWith(\"H\")) }\nend HelloSuite ~testQuick should pick up the change: example.HelloSuite:\n==> X example.HelloSuite.Hello should start with H 0.012s munit.FailException: /tmp/foo-build/src/test/scala/example/HelloSuite.scala:5 assertion failed\n4: test(\"Hello should start with H\") {\n5: assert(\"hello\".startsWith(\"H\"))\n6: } at munit.FunSuite.assert(FunSuite.scala:11) at example.HelloSuite.$init$$$anonfun$1(HelloSuite.scala:5)\n[error] Failed: Total 1, Failed 1, Errors 0, Passed 0\n[error] Failed tests:\n[error] example.HelloSuite\n[error] (Test / testQuick) sbt.TestsFailedException: Tests unsuccessful\n[error] elapsed time: 1 s, cache 50%, 3 disk cache hits, 3 onsite tasks","breadcrumbs":"Quick Start » sbt by example » Write a test","id":"23","title":"Write a test"},"24":{"body":"Using an editor, change src/test/scala/example/HelloSuite.scala to: package example class HelloSuite extends munit.FunSuite: test(\"Hello should start with H\") { assert(\"Hello\".startsWith(\"H\")) }\nend HelloSuite Confirm that the test passes, then press Enter to exit the continuous test.","breadcrumbs":"Quick Start » sbt by example » Make the test pass","id":"24","title":"Make the test pass"},"25":{"body":"Using an editor, change build.sbt as follows: scalaVersion := \"3.3.3\"\norganization := \"com.example\"\nname := \"Hello\"\nlibraryDependencies ++= Seq( \"org.scala-lang\" %% \"toolkit\" % \"0.1.7\", \"org.scala-lang\" %% \"toolkit-test\" % \"0.1.7\" % Test,\n) Use the reload command to reflect the change in build.sbt.","breadcrumbs":"Quick Start » sbt by example » Add a library dependency","id":"25","title":"Add a library dependency"},"26":{"body":"We can find out the current weather in New York. sbt:Hello> console\nWelcome to Scala 3.3.3 (1.8.0_402, Java OpenJDK 64-Bit Server VM).\nType in expressions for evaluation. Or try :help. scala>\nimport sttp.client4.quick.*\nimport sttp.client4.Response val newYorkLatitude: Double = 40.7143\nval newYorkLongitude: Double = -74.006\nval response: Response[String] = quickRequest .get( uri\"https://api.open-meteo.com/v1/forecast?latitude=\\$newYorkLatitude&longitude=\\$newYorkLongitude¤t_weather=true\" ) .send() println(ujson.read(response.body).render(indent = 2)) // press Ctrl+D // Exiting paste mode, now interpreting. { \"latitude\": 40.710335, \"longitude\": -73.99307, \"generationtime_ms\": 0.36704540252685547, \"utc_offset_seconds\": 0, \"timezone\": \"GMT\", \"timezone_abbreviation\": \"GMT\", \"elevation\": 51, \"current_weather\": { \"temperature\": 21.3, \"windspeed\": 16.7, \"winddirection\": 205, \"weathercode\": 3, \"is_day\": 1, \"time\": \"2023-08-04T10:00\" }\n}\nimport sttp.client4.quick._\nimport sttp.client4.Response\nval newYorkLatitude: Double = 40.7143\nval newYorkLongitude: Double = -74.006\nval response: sttp.client4.Response[String] = Response({\"latitude\":40.710335,\"longitude\":-73.99307,\"generationtime_ms\":0.36704540252685547,\"utc_offset_seconds\":0,\"timezone\":\"GMT\",\"timezone_abbreviation\":\"GMT\",\"elevation\":51.0,\"current_weather\":{\"temperature\":21.3,\"windspeed\":16.7,\"winddirection\":205.0,\"weathercode\":3,\"is_day\":1,\"time\":\"2023-08-04T10:00\"}},200,,List(:status: 200, content-encoding: deflate, content-type: application/json; charset=utf-8, date: Fri, 04 Aug 2023 10:09:11 GMT),List(),RequestMetadata(GET,https://api.open-meteo.com/v1/forecast?latitude=40.7143&longitude... scala> :q // to quit","breadcrumbs":"Quick Start » sbt by example » Use Scala REPL","id":"26","title":"Use Scala REPL"},"27":{"body":"Change build.sbt as follows: scalaVersion := \"3.3.3\"\norganization := \"com.example\" lazy val hello = project .in(file(\".\")) .settings( name := \"Hello\", libraryDependencies ++= Seq( \"org.scala-lang\" %% \"toolkit\" % \"0.1.7\", \"org.scala-lang\" %% \"toolkit-test\" % \"0.1.7\" % Test ) ) lazy val helloCore = project .in(file(\"core\")) .settings( name := \"Hello Core\" ) Use the reload command to reflect the change in build.sbt.","breadcrumbs":"Quick Start » sbt by example » Make a subproject","id":"27","title":"Make a subproject"},"28":{"body":"sbt:Hello> projects\n[info] In file:/tmp/foo-build/\n[info] * hello\n[info] helloCore","breadcrumbs":"Quick Start » sbt by example » List all subprojects","id":"28","title":"List all subprojects"},"29":{"body":"sbt:Hello> helloCore/compile","breadcrumbs":"Quick Start » sbt by example » Compile the subproject","id":"29","title":"Compile the subproject"},"3":{"body":"To install both JDK and sbt, consider using SDKMAN . sdk install java $(sdk list java | grep -o \"\\b8\\.[0-9]*\\.[0-9]*\\-tem\" | head -1)\nsdk install sbt","breadcrumbs":"Quick Start » Installing sbt runner » Installing from SDKMAN","id":"3","title":"Installing from SDKMAN"},"30":{"body":"Change build.sbt as follows: scalaVersion := \"3.3.3\"\norganization := \"com.example\" val toolkitTest = \"org.scala-lang\" %% \"toolkit-test\" % \"0.1.7\" lazy val hello = project .in(file(\".\")) .settings( name := \"Hello\", libraryDependencies ++= Seq( \"org.scala-lang\" %% \"toolkit\" % \"0.1.7\", toolkitTest % Test ) ) lazy val helloCore = project .in(file(\"core\")) .settings( name := \"Hello Core\", libraryDependencies += toolkitTest % Test )","breadcrumbs":"Quick Start » sbt by example » Add toolkit-test to the subproject","id":"30","title":"Add toolkit-test to the subproject"},"31":{"body":"Set aggregate so that the command sent to hello is broadcast to helloCore too: scalaVersion := \"3.3.3\"\norganization := \"com.example\" val toolkitTest = \"org.scala-lang\" %% \"toolkit-test\" % \"0.1.7\" lazy val hello = project .in(file(\".\")) .aggregate(helloCore) .settings( name := \"Hello\", libraryDependencies ++= Seq( \"org.scala-lang\" %% \"toolkit\" % \"0.1.7\", toolkitTest % Test ) ) lazy val helloCore = project .in(file(\"core\")) .settings( name := \"Hello Core\", libraryDependencies += toolkitTest % Test ) After reload, ~testQuick now runs on both subprojects: sbt:Hello> ~testQuick Press Enter to exit the continuous test.","breadcrumbs":"Quick Start » sbt by example » Broadcast commands","id":"31","title":"Broadcast commands"},"32":{"body":"Use .dependsOn(...) to add a dependency on other subprojects. Also let's move the toolkit dependency to helloCore. scalaVersion := \"3.3.3\"\norganization := \"com.example\" val toolkitTest = \"org.scala-lang\" %% \"toolkit-test\" % \"0.1.7\" lazy val hello = project .in(file(\".\")) .aggregate(helloCore) .dependsOn(helloCore) .settings( name := \"Hello\", libraryDependencies += toolkitTest % Test ) lazy val helloCore = project .in(file(\"core\")) .settings( name := \"Hello Core\", libraryDependencies += \"org.scala-lang\" %% \"toolkit\" % \"0.1.7\", libraryDependencies += toolkitTest % Test )","breadcrumbs":"Quick Start » sbt by example » Make hello depend on helloCore","id":"32","title":"Make hello depend on helloCore"},"33":{"body":"Let's use uJson from the toolkit in helloCore. Add core/src/main/scala/example/core/Weather.scala: package example.core import sttp.client4.quick._\nimport sttp.client4.Response object Weather: def temp() = val response: Response[String] = quickRequest .get( uri\"https://api.open-meteo.com/v1/forecast?latitude=40.7143&longitude=-74.006¤t_weather=true\" ) .send() val json = ujson.read(response.body) json.obj(\"current_weather\")(\"temperature\").num\nend Weather Next, change src/main/scala/example/Hello.scala as follows: package example import example.core.Weather @main def main(args: String*): Unit = val temp = Weather.temp() println(s\"Hello! The current temperature in New York is $temp C.\") Let's run the app to see if it worked: sbt:Hello> run\n[info] compiling 1 Scala source to /tmp/foo-build/core/target/scala-2.13/classes ...\n[info] compiling 1 Scala source to /tmp/foo-build/target/scala-2.13/classes ...\n[info] running example.Hello\nHello! The current temperature in New York is 22.7 C.","breadcrumbs":"Quick Start » sbt by example » Parse JSON using uJson","id":"33","title":"Parse JSON using uJson"},"34":{"body":"sbt:Hello> ++3.3.3!\n[info] Forcing Scala version to 3.3.3 on all projects.\n[info] Reapplying settings...\n[info] Set current project to Hello (in build file:/tmp/foo-build/) Check the scalaVersion setting: sbt:Hello> scalaVersion\n[info] helloCore / scalaVersion\n[info] 3.3.3\n[info] scalaVersion\n[info] 3.3.3 This setting will go away after reload.","breadcrumbs":"Quick Start » sbt by example » Switch scalaVersion temporarily","id":"34","title":"Switch scalaVersion temporarily"},"35":{"body":"You can also run sbt in batch mode, passing sbt commands directly from the terminal. $ sbt clean \"testOnly HelloSuite\" Note : Running in batch mode requires JVM spinup and JIT each time, so your build will run much slower . For day-to-day coding, we recommend using the sbt shell or a continuous test like ~testQuick.","breadcrumbs":"Quick Start » sbt by example » Batch mode","id":"35","title":"Batch mode"},"36":{"body":"You can use the sbt new command to quickly setup a simple \"Hello world\" build. $ sbt new scala/scala-seed.g8\n....\nA minimal Scala project. name [My Something Project]: hello Template applied in ./hello When prompted for the project name, type hello. This will create a new project under a directory named hello.","breadcrumbs":"Quick Start » sbt by example » sbt new command","id":"36","title":"sbt new command"},"37":{"body":"This page is based on the Essential sbt tutorial written by William \"Scala William\" Narmontas.","breadcrumbs":"Quick Start » sbt by example » Credits","id":"37","title":"Credits"},"38":{"body":"sbt uses a small number of concepts to support flexible and powerful build definitions. There are not that many concepts, but sbt is not exactly like other build systems and there are details you will stumble on if you haven't read the documentation. The Getting Started Guide covers the concepts you need to know to create and maintain an sbt build definition. It is highly recommended to read the Getting Started Guide!","breadcrumbs":"Getting Started » Getting Started with sbt","id":"38","title":"Getting Started with sbt"},"39":{"body":"","breadcrumbs":"Getting Started » Why sbt exists » Why sbt exists","id":"39","title":"Why sbt exists"},"4":{"body":"sbt-1.10.0.zip sbt-1.10.0.tgz sbt-1.10.0.msi","breadcrumbs":"Quick Start » Installing sbt runner » Universal packages","id":"4","title":"Universal packages"},"40":{"body":"In Scala, a library or a program is compiled using the Scala compiler, scalac, as documented in the Scala 3 Book : @main def hello() = println(\"Hello, World!\") $ scalac hello.scala\n$ scala hello\nHello, World! This process gets tedious and slow if we were to invoke scalac directly since we'd have to pass all the Scala source file names. Furthermore, most non-trivial programs will likely have library dependencies, and will therefore also depend transitively on their dependencies. This is doubly complicated for Scala ecosystem because we have Scala 2.12, 2.13 ecosystem, Scala 3.x ecosystem, JVM, JS, and Native platforms. Rather than working with JAR files and scalac, we can avoid manual toil by introducing a higher-level subproject abstraction and by using a build tool.","breadcrumbs":"Getting Started » Why sbt exists » Preliminaries","id":"40","title":"Preliminaries"},"41":{"body":"sbt is a simple build tool created for Scala and Java. It lets us declare subprojects and their various dependencies and custom tasks to ensure that we'll always get a fast, repeatable build. To accomplish this goal, sbt does several things: The version of sbt itself is tracked in project/build.properties. Defines a domain-specific language (DSL) called build.sbt DSL that can declare the Scala version and other subproject information in build.sbt. Uses Coursier to fetch subprojects dependencies and their dependencies. Invokes Zinc to incrementally compile Scala and Java sources. Automatically runs tasks in parallel whenever possible. Defines conventions on how packages are published to Maven repositories to interoperate with the wider JVM ecosystem. To a large extent, sbt standardizes the commands needed to build a given program or library.","breadcrumbs":"Getting Started » Why sbt exists » sbt","id":"41","title":"sbt"},"42":{"body":"build.sbt DSL makes sbt a unique build tool, as opposed to other tools that use configuration file formats like YAML, TOML, and XML. Originally developed beween 2010 and 2013, build.sbt can start almost like a YAML file, declaring just scalaVersion and libraryDependencies, but it can supports more features to keep the build definition organized as the build grows larger: To avoid repeating the same information, like the version number for a library, build.sbt can declare variables using val. Uses Scala language constructs like if to define settings and tasks, when needed. Statically typed settings and tasks, to catch typos and type errors before the build starts. The type also helps passing data from one task from another. Provides structured concurrency via Initialized[Task[A]]. The DSL uses direct style .value syntax to concisely define task graphs. Enpowers the community to extend sbt with plugins that provide custom tasks or language extensions like Scala.JS.","breadcrumbs":"Getting Started » Why sbt exists » Why build.sbt DSL?","id":"42","title":"Why build.sbt DSL?"},"43":{"body":"To start a new build with sbt, use sbt new. $ mkdir /tmp/foo\n$ cd /tmp/foo\n$ sbt new Welcome to sbt new!\nHere are some templates to get started: a) scala/toolkit.local - Scala Toolkit (beta) by Scala Center and VirtusLab b) typelevel/toolkit.local - Toolkit to start building Typelevel apps c) sbt/cross-platform.local - A cross-JVM/JS/Native project d) scala/scala3.g8 - Scala 3 seed template e) scala/scala-seed.g8 - Scala 2 seed template f) playframework/play-scala-seed.g8 - A Play project in Scala g) playframework/play-java-seed.g8 - A Play project in Java i) softwaremill/tapir.g8 - A tapir project using Netty m) scala-js/vite.g8 - A Scala.JS + Vite project n) holdenk/sparkProjectTemplate.g8 - A Scala Spark project o) spotify/scio.g8 - A Scio project p) disneystreaming/smithy4s.g8 - A Smithy4s project q) quit\nSelect a template: If you select \"a\", you will be prompted by more questions: Select a template: a\nScala version (default: 3.3.0):\nScala Toolkit version (default: 0.2.0): Hit return key to select the default values. [info] Updated file /private/tmp/bar/project/build.properties: set sbt.version to 1.9.8\n[info] welcome to sbt 1.9.8 (Azul Systems, Inc. Java 1.8.0_352)\n....\n[info] set current project to bar (in build file:/private/tmp/foo/)\n[info] sbt server started at local:///Users/eed3si9n/.sbt/1.0/server/d0ac1409c0117a949d47/sock\n[info] started sbt server\nsbt:bar> exit\n[info] shutting down sbt server Here are the files that are created by this template: .\n├── build.sbt\n├── project\n│ └── build.properties\n├── src\n│ ├── main\n│ │ └── scala\n│ │ └── example\n│ │ └── Main.scala\n│ └── test\n│ └── scala\n│ └── example\n│ └── ExampleSuite.scala\n└── target Let's take a look at the build.sbt file: val toolkitV = \"0.2.0\"\nval toolkit = \"org.scala-lang\" %% \"toolkit\" % toolkitV\nval toolkitTest = \"org.scala-lang\" %% \"toolkit-test\" % toolkitV scalaVersion := \"3.3.0\"\nlibraryDependencies += toolkit\nlibraryDependencies += (toolkitTest % Test) This is called a build definition , and it contains the information sbt needs to compile your project. This is written in .sbt format, a subset of Scala language. Here's what's in src/main/scala/example/Main.scala: package example @main def main(args: String*): Unit = println(s\"Hello ${args.mkString}\") This is a Hello world template. We can run it from the sbt shell by starting sbt --client and typing run inside the shell: $ sbt --client\n[info] entering *experimental* thin client - BEEP WHIRR\n[info] server was not detected. starting an instance\n....\ninfo] terminate the server with `shutdown`\n[info] disconnect from the server with `exit`\nsbt:bar> run Raj\n[info] running example.main Raj\nHello Raj\n[success] Total time: 0 s, completed Feb 18, 2024 2:38:10 PM","breadcrumbs":"Getting Started » Creating a new build » Creating a new build","id":"43","title":"Creating a new build"},"44":{"body":"In addition to a few .local templates, sbt new integrates with Giter8 , and open templating system that uses GitHub to host templates. For example, scala/scala3.g8 is maintained by the Scala team to create a new Scala 3 build: $ /tmp\n$ sbt new scala/scala3.g8 Giter8 wiki lists over 100 templates that can jump start your new build.","breadcrumbs":"Getting Started » Creating a new build » Giter8 templates","id":"44","title":"Giter8 templates"},"45":{"body":"","breadcrumbs":"Getting Started » sbt components » sbt components","id":"45","title":"sbt components"},"46":{"body":"An sbt build is executed using the sbt runner, also called \"sbt-the-shell-script\" to distinguish from other components. It's important to note is that sbt runner is designed to run any version of sbt.","breadcrumbs":"Getting Started » sbt components » sbt runner","id":"46","title":"sbt runner"},"47":{"body":"The sbt runner executes a subcomponent called sbt launcher, which reads project/build.properties to determine the sbt version for the build, and downloads the artifacts if they haven't been cached: sbt.version=2.0.0-alpha7 This means that: Anyone who checkouts your build would get the same sbt version, regardless of sbt runner they may have installed on their machines. The change of sbt version can be tracked in a version control system, like git.","breadcrumbs":"Getting Started » sbt components » Specifying sbt version with project/build.properties","id":"47","title":"Specifying sbt version with project/build.properties"},"48":{"body":"sbtn (native thin client) is a subcomponent of the sbt runner, called when you pass --client flag to the sbt runner, and is used to send commands to the sbt server. It is called sbtn because it is compiled to native code using GraalVM native-image. The protocol between sbtn and sbt server is stable enough that it should work between most recent versions of sbt.","breadcrumbs":"Getting Started » sbt components » sbtn (sbt --client)","id":"48","title":"sbtn (sbt --client)"},"49":{"body":"The sbt server is the actual build tool whose version is specified using project/build.properties. The sbt server acts as a cashier to take commands from sbtn and editors.","breadcrumbs":"Getting Started » sbt components » sbt server","id":"49","title":"sbt server"},"5":{"body":"sbt --script-version\n# 1.10.0","breadcrumbs":"Quick Start » Installing sbt runner » Verify the sbt runner","id":"5","title":"Verify the sbt runner"},"50":{"body":"The sbt server runs Couriser as a subcomponent to resolve Scala library, Scala compiler, and any other library dependencies your build needs.","breadcrumbs":"Getting Started » sbt components » Coursier","id":"50","title":"Coursier"},"51":{"body":"Zinc is the incremental compiler for Scala, developed and maintained by sbt project. An often overlooked aspect of Zinc is that Zinc provides a stable API to invoke any modern versions of Scala compiler. Combined with the fact that Coursier can resolve any Scala version, with sbt we can invoke any modern versions of Scala just by writing a single line build.sbt: scalaVersion := \"3.3.3\"","breadcrumbs":"Getting Started » sbt components » Zinc","id":"51","title":"Zinc"},"52":{"body":"The sbt server supports Build Server Protocol (BSP) to list build targets, build them, etc. This allows IDEs like IntelliJ and Metals to communicate with a running sbt server programmatically.","breadcrumbs":"Getting Started » sbt components » BSP server","id":"52","title":"BSP server"},"53":{"body":"Let's look at three ways of connecting to the sbt server.","breadcrumbs":"Getting Started » sbt components » Connecting to sbt server","id":"53","title":"Connecting to sbt server"},"54":{"body":"Run sbt --client in the working directory of your build: sbt --client This should display something like the following: $ sbt --client\n[info] server was not detected. starting an instance\n[info] welcome to sbt 2.0.0-alpha7 (Azul Systems, Inc. Java 1.8.0_352)\n[info] loading project definition from /private/tmp/bar/project\n[info] loading settings for project bar from build.sbt ...\n[info] set current project to bar (in build file:/private/tmp/bar/)\n[info] sbt server started at local:///Users/eed3si9n/.sbt/2.0.0-alpha7/server/d0ac1409c0117a949d47/sock\n[info] started sbt server\n[info] terminate the server with `shutdown`\n[info] disconnect from the server with `exit`\nsbt:bar> Running sbt with no command line arguments starts sbt shell. sbt shell has a command prompt (with tab completion and history!). For example, you could type compile at the sbt shell: sbt:bar> compile To compile again, press up arrow and then enter. To leave sbt shell, type exit or use Ctrl-D (Unix) or Ctrl-Z (Windows).","breadcrumbs":"Getting Started » sbt components » sbt shell using sbtn","id":"54","title":"sbt shell using sbtn"},"55":{"body":"You can also run sbt in batch mode: sbt --client compile\nsbt --client testOnly TestA $ sbt --client compile\n> compile","breadcrumbs":"Getting Started » sbt components » Batch mode using sbtn","id":"55","title":"Batch mode using sbtn"},"56":{"body":"Run the following to shutdown all sbt servers on your machine: sbt shutdownall Or the following to shutdown just the current one: sbt --client shutdown","breadcrumbs":"Getting Started » sbt components » Shutting down sbt server","id":"56","title":"Shutting down sbt server"},"57":{"body":"This page describes how to use sbt once you have set up your project. This page assumes you've read sbt components . If you pull a repository that uses sbt, it's fairly easy to get started. First, get the package from GitHub, or some other repository. $ git clone https://github.com/scalanlp/breeze.git\n$ cd breeze","breadcrumbs":"Getting Started » Working with an existing build » Working with an existing build","id":"57","title":"Working with an existing build"},"58":{"body":"As mentioned in sbt components , start an sbt shell: $ sbt --client This should display something like the following: $ sbt --client\n[info] entering *experimental* thin client - BEEP WHIRR\n[info] server was not detected. starting an instance\n[info] welcome to sbt 1.5.5 (Azul Systems, Inc. Java 1.8.0_352)\n[info] loading global plugins from /Users/eed3si9n/.sbt/1.0/plugins\n[info] loading settings for project breeze-build from plugins.sbt ...\n[info] loading project definition from /private/tmp/breeze/project\nDownloading https://repo1.maven.org/maven2/org/scalanlp/sbt-breeze-expand-codegen_2.12_1.0/0.2.1/sbt-breeze-expand-codegen-0.2.1.pom\n....\n[info] sbt server started at local:///Users/eed3si9n/.sbt/1.0/server/dd982e07e85c7de1b618/sock\n[info] terminate the server with `shutdown`\n[info] disconnect from the server with `exit`\nsbt:breeze-parent>","breadcrumbs":"Getting Started » Working with an existing build » sbt shell with sbtn","id":"58","title":"sbt shell with sbtn"},"59":{"body":"Let's explore the build by listing out the subprojects with projects command: sbt:breeze-parent> projects\n[info] In file:/private/tmp/breeze/\n[info] benchmark\n[info] macros\n[info] math\n[info] natives\n[info] * root\n[info] viz This shows that this build has 6 subprojects, including the current subproject called root.","breadcrumbs":"Getting Started » Working with an existing build » projects command","id":"59","title":"projects command"},"6":{"body":"This page assumes you've installed sbt runner . Let's start with examples rather than explaining how sbt works or why.","breadcrumbs":"Quick Start » sbt by example » sbt by example","id":"6","title":"sbt by example"},"60":{"body":"Similarly, we can list the tasks availble to this build using tasks command: sbt:breeze-parent> tasks This is a list of tasks defined for the current project.\nIt does not list the scopes the tasks are defined in; use the 'inspect' command for that.\nTasks produce values. Use the 'show' command to run the task and print the resulting value. bgRun Start an application's default main class as a background job bgRunMain Start a provided main class as a background job clean Deletes files produced by the build, such as generated sources, compiled classes, and task caches. compile Compiles sources. console Starts the Scala interpreter with the project classes on the classpath. consoleProject Starts the Scala interpreter with the sbt and the build definition on the classpath and useful imports. consoleQuick Starts the Scala interpreter with the project dependencies on the classpath. copyResources Copies resources to the output directory. doc Generates API documentation. package Produces the main artifact, such as a binary jar. This is typically an alias for the task that actually does the packaging. packageBin Produces a main artifact, such as a binary jar. packageDoc Produces a documentation artifact, such as a jar containing API documentation. packageSrc Produces a source artifact, such as a jar containing sources and resources. publish Publishes artifacts to a repository. publishLocal Publishes artifacts to the local Ivy repository. publishM2 Publishes artifacts to the local Maven repository. run Runs a main class, passing along arguments provided on the command line. runMain Runs the main class selected by the first argument, passing the remaining arguments to the main method. test Executes all tests. testOnly Executes the tests provided as arguments or all tests if no arguments are provided. testQuick Executes the tests that either failed before, were not run or whose transitive dependencies changed, among those provided as arguments. update Resolves and optionally retrieves dependencies, producing a report. More tasks may be viewed by increasing verbosity. See 'help tasks'","breadcrumbs":"Getting Started » Working with an existing build » tasks command","id":"60","title":"tasks command"},"61":{"body":"The compile tasks compiles the sources, after resolving and downloading the library dependendies. > compile This should display something like the following: sbt:breeze-parent> compile\n[info] compiling 341 Scala sources and 1 Java source to /private/tmp/breeze/math/target/scala-3.1.3/classes ... | => math / Compile / compileIncremental 51s","breadcrumbs":"Getting Started » Working with an existing build » compile","id":"61","title":"compile"},"62":{"body":"The run task runs the main class for the subproject. In the sbt shell, type math/run: > math/run math/run means run task, scoped to math subproject. This should display something like the following: sbt:breeze-parent> math/run\n[info] Scala version: 3.1.3 true\n.... Multiple main classes detected. Select one to run: [1] breeze.optimize.linear.NNLS [2] breeze.optimize.proximal.NonlinearMinimizer [3] breeze.optimize.proximal.QuadraticMinimizer [4] breeze.util.UpdateSerializedObjects Enter number: Enter 1 at the prompt.","breadcrumbs":"Getting Started » Working with an existing build » run","id":"62","title":"run"},"63":{"body":"The testQuick task tests either the tests that failed before, were not run, or whose transitive dependencies changed. > math/testQuick This should display something like the following: sbt:breeze-parent> math/testQuick\n[info] FeatureVectorTest:\n[info] - axpy fv dv (1 second, 106 milliseconds)\n[info] - axpy fv vb (9 milliseconds)\n[info] - DM mult (19 milliseconds)\n[info] - CSC mult (32 milliseconds)\n[info] - DM trans mult (4 milliseconds)\n....\n[info] Run completed in 58 seconds, 183 milliseconds.\n[info] Total number of tests run: 1285\n[info] Suites: completed 168, aborted 0\n[info] Tests: succeeded 1285, failed 0, canceled 0, ignored 0, pending 0\n[info] All tests passed.\n[success] Total time: 130 s (02:10), completed Feb 19, 2024","breadcrumbs":"Getting Started » Working with an existing build » testQuick","id":"63","title":"testQuick"},"64":{"body":"To speed up your edit-compile-test cycle, you can ask sbt to automatically recompile or run tests whenever you save a source file. Make a command run when one or more source files change by prefixing the command with ~. For example, in sbt shell try: > ~testQuick Press enter to stop watching for changes. You can use the ~ prefix with either sbt shell or batch mode.","breadcrumbs":"Getting Started » Working with an existing build » Watch (tilde) command","id":"64","title":"Watch (tilde) command"},"65":{"body":"This page discusses the build.sbt build definition.","breadcrumbs":"Getting Started » Build definition basics » Build definition basics","id":"65","title":"Build definition basics"},"66":{"body":"A build definition is defined in build.sbt, and it consists of a set of projects (of type Project ). Because the term project can be ambiguous, we often call it a subproject in this guide. For instance, in build.sbt you define the subproject located in the current directory like this: scalaVersion := \"3.3.3\"\nname := \"Hello\" or more explicitly: lazy val root = (project in file(\".\")) .settings( scalaVersion := \"3.3.3\", name := \"Hello\", ) Each subproject is configured by key-value pairs. For example, one key is name and it maps to a string value, the name of your subproject. The key-value pairs are listed under the .settings(...) method.","breadcrumbs":"Getting Started » Build definition basics » What is a build definition?","id":"66","title":"What is a build definition?"},"67":{"body":"build.sbt defines subprojects using a DSL called build.sbt DSL, which is based on Scala. Initially you can use build.sbt DSL, like a YAML file, declaring just scalaVersion and libraryDependencies, but it can supports more features to keep the build definition organized as the build grows larger.","breadcrumbs":"Getting Started » Build definition basics » build.sbt DSL","id":"67","title":"build.sbt DSL"},"68":{"body":"Let's take a closer look at the build.sbt DSL: organization := \"com.example\"\n^^^^^^^^^^^^ ^^^^^^^^ ^^^^^^^^^^^^^\nkey operator (setting/task) body Each entry is called a setting expression . Some among them are also called task expressions. We will see more on the difference later in this page. A setting expression consists of three parts: Left-hand side is a key . Operator , which in this case is := Right-hand side is called the body , or the setting/task body . On the left-hand side, name, version, and scalaVersion are keys . A key is an instance of SettingKey[A] , TaskKey[A] , or InputKey[A] where A is the expected value type. Because key name is typed to SettingKey[String], the := operator on name is also typed specifically to String. If you use the wrong value type, the build definition will not compile: name := 42 // will not compile","breadcrumbs":"Getting Started » Build definition basics » Typed setting expression","id":"68","title":"Typed setting expression"},"69":{"body":"To avoid repeating the same information, like the version number for a library, build.sbt may be interspersed with vals, lazy vals, and defs. val toolkitV = \"0.2.0\"\nval toolkit = \"org.scala-lang\" %% \"toolkit\" % toolkitV\nval toolkitTest = \"org.scala-lang\" %% \"toolkit-test\" % toolkitV scalaVersion := \"3.3.3\"\nlibraryDependencies += toolkit\nlibraryDependencies += (toolkitTest % Test) In the above, val defines a variable, which are initialized from the top to bottom. This means that toolkitV must be defined before it is referenced. Here's a bad example: // bad example\nval toolkit = \"org.scala-lang\" %% \"toolkit\" % toolkitV // uninitialized reference!\nval toolkitTest = \"org.scala-lang\" %% \"toolkit-test\" % toolkitV // uninitialized reference!\nval toolkitV = \"0.2.0\" sbt will fail to load with java.lang.ExceptionInInitializerError cased by a NullPointerException if your build.sbt contains an uninitialized forward reference. One way to let the compiler fix this is to define the variables as lazy: lazy val toolkit = \"org.scala-lang\" %% \"toolkit\" % toolkitV\nlazy val toolkitTest = \"org.scala-lang\" %% \"toolkit-test\" % toolkitV\nlazy val toolkitV = \"0.2.0\" Some frown upon gratuitous lazy vals, but Scala 3 lazy vals are efficient, and we think it makes the build definition more robust for copy-pasting. Note Top-level objects and classes are not allowed in build.sbt. Those should go in the project/ directory as Scala source files.","breadcrumbs":"Getting Started » Build definition basics » vals and lazy vals","id":"69","title":"vals and lazy vals"},"7":{"body":"mkdir foo-build\ncd foo-build\ntouch build.sbt\nmkdir project\necho \"sbt.version=2.0.0-alpha7\" > project/build.properties","breadcrumbs":"Quick Start » sbt by example » Create a minimum sbt build","id":"7","title":"Create a minimum sbt build"},"70":{"body":"This page explains the basics of library dependency management using sbt. sbt uses Coursier to implement managed dependencies, so if you're familiar with package managers like Coursier, npm, PIP, etc you won't have much trouble.","breadcrumbs":"Getting Started » Library dependency basics » Library dependency basics","id":"70","title":"Library dependency basics"},"71":{"body":"Declaring a dependency looks like this, where groupId, artifactId, and revision are strings: libraryDependencies += groupID % artifactID % revision or like this, where configuration can be a string or a Configuration value (such as Test): libraryDependencies += groupID % artifactID % revision % configuration When you run: > compile sbt will automatically resolve the dependencies and download the JAR files.","breadcrumbs":"Getting Started » Library dependency basics » The libraryDependencies key","id":"71","title":"The libraryDependencies key"},"72":{"body":"If you use organization %% moduleName % version rather than organization % moduleName % version (the difference is the double %% after the organization), sbt will add your project's binary Scala version to the artifact name. This is just a shortcut. You could write this without the %%: libraryDependencies += \"org.scala-lang\" % \"toolkit_3\" % \"0.2.0\" Assuming the scalaVersion for your build is 3.x, the following is identical (note the double %% after \"toolkit\"): libraryDependencies += \"org.scala-lang\" %% \"toolkit\" % \"0.2.0\" The idea is that many dependencies are compiled for multiple Scala versions, and you'd like to get the one that matches your project to ensure binary compatibility.","breadcrumbs":"Getting Started » Library dependency basics » Getting the right Scala version with %%","id":"72","title":"Getting the right Scala version with %%"},"73":{"body":".scala files under project becomes part of the build definition, which we can use to track dependencies in one place by creating a file named project/Dependencies.scala. // place this file at project/Dependencies.scala import sbt.* object Dependencies: // versions lazy val toolkitV = \"0.2.0\" // libraries val toolkit = \"org.scala-lang\" %% \"toolkit\" % toolkitV val toolkitTest = \"org.scala-lang\" %% \"toolkit-test\" % toolkitV\nend Dependencies The Dependencies object will be available in build.sbt. To make it easier to use the vals defined in it, import Dependencies.* in your build.sbt file. import Dependencies.* scalaVersion := \"3.3.3\"\nname := \"something\"\nlibraryDependencies += toolkit\nlibraryDependencies += toolkitTest % Test","breadcrumbs":"Getting Started » Library dependency basics » Tracking dependencies in one place","id":"73","title":"Tracking dependencies in one place"},"74":{"body":"Type in Compile/dependencyTree in the sbt shell to show the library dependency tree, including the transitive dependencies: > Compile/dependencyTree This should display something like the following: sbt:bar> Compile/dependencyTree\n[info] default:bar_3:0.1.0-SNAPSHOT\n[info] +-org.scala-lang:scala3-library_3:3.3.1 [S]\n[info] +-org.scala-lang:toolkit_3:0.2.0\n[info] +-com.lihaoyi:os-lib_3:0.9.1\n[info] | +-com.lihaoyi:geny_3:1.0.0\n[info] | | +-org.scala-lang:scala3-library_3:3.1.3 (evicted by: 3.3.1)\n[info] | | +-org.scala-lang:scala3-library_3:3.3.1 [S]\n....","breadcrumbs":"Getting Started » Library dependency basics » Viewing library dependencies","id":"74","title":"Viewing library dependencies"},"75":{"body":"While a simple program can start out as a single-project build, it's more common for a build to split into smaller, multiple subprojects. Each subproject in a build has its own source directories, generates its own JAR file when you run packageBin, and in general works like any other project. A project is defined by declaring a lazy val of type Project . For example, : scalaVersion := \"3.3.3\" lazy val core = (project in file(\"core\")) .settings( name := \"core\", ) lazy val util = (project in file(\"util\")) .dependsOn(core) .settings( name := \"util\", ) The name of the val is used as the subproject's ID, which is used to refer to the subproject at the sbt shell.","breadcrumbs":"Getting Started » Multi project basics » Multi project basics","id":"75","title":"Multi project basics"},"76":{"body":"sbt uses conventions for file placement to make it easy to dive into a new sbt build: .\n├── build.sbt\n├── project/\n│ ├── build.properties\n│ ├── Dependencies.scala\n│ └── plugins.sbt\n├── src/\n│ ├── main/\n│ │ ├── java/\n│ │ ├── resources/\n│ │ ├── scala/\n│ │ └── scala-2.13/\n│ └── test/\n│ ├── java/\n│ ├── resources/\n│ ├── scala/\n│ └── scala-2.13/\n├── subproject-core/\n│ └── src/\n│ ├── main/\n│ └── test/\n├─── subproject-util/\n│ └── src/\n│ ├── main/\n│ └── test/\n└── target/ The local root directory . is the starting point of your build. In sbt's terminology, the base directory is the directory containing the subproject. In the above, ., subproject-core, and subproject-util are base directories. The build definition is described in build.sbt (actually any files named *.sbt) in the local root directory. The sbt version is tracked in project/build.properties. Generated files (compiled classes, packaged jars, managed files, caches, and documentation) will be written to the target directory by default.","breadcrumbs":"Getting Started » Build layout » Build layout","id":"76","title":"Build layout"},"77":{"body":"In addition to build.sbt, project directory can contain .scala files that define helper objects and one-off plugins. See organizing the build for more. .\n├── build.sbt\n├── project/\n│ ├── build.properties\n│ ├── Dependencies.scala\n│ └── plugins.sbt\n.... You may see .sbt files inside project/ but they are not equivalent to .sbt files in the project's base directory. Explaining this will come later , since you'll need some background information first.","breadcrumbs":"Getting Started » Build layout » Build support files","id":"77","title":"Build support files"},"78":{"body":"sbt uses the same directory structure as Maven for source files by default (all paths are relative to the base directory): ....\n├── src/\n│ ├── main/\n│ │ ├── java/ \n│ │ ├── resources/ \n│ │ ├── scala/ \n│ │ └── scala-2.13/ \n│ └── test/\n│ ├── java/ \n│ ├── resources/ \n│ ├── scala/ \n│ └── scala-2.13/ \n.... Other directories in src/ will be ignored. Additionally, all hidden directories will be ignored. Source code can be placed in the project's base directory as hello/app.scala, which may be OK for small projects, though for normal projects people tend to keep the projects in the src/main/ directory to keep things neat. The fact that you can place *.scala source code in the base directory might seem like an odd trick, but this fact becomes relevant later .","breadcrumbs":"Getting Started » Build layout » Source code","id":"78","title":"Source code"},"79":{"body":"Your .gitignore (or equivalent for other version control systems) should contain: target/ Note that this deliberately has a trailing / (to match only directories) and it deliberately has no leading / (to match project/target/ in addition to plain target/). sbt automates building, testing, and deployment of your subprojects from information in the build definition.","breadcrumbs":"Getting Started » Build layout » Configuring version control","id":"79","title":"Configuring version control"},"8":{"body":"$ sbt\n[info] welcome to sbt 2.0.0-alpha7 (Azul Systems, Inc. Java)\n....\n[info] started sbt server\nsbt:foo-build>","breadcrumbs":"Quick Start » sbt by example » Start sbt shell","id":"8","title":"Start sbt shell"},"80":{"body":"While it's possible to code Scala with just an editor and sbt, most programmers today use an Integrated Development Environment, or IDE for short. Two of the popular IDEs in Scala are Metals and IntelliJ IDEA , and they both integrate with sbt builds. Using sbt as Metals build server Importing to IntelliJ IDEA Using sbt as IntelliJ IDEA build server Using Neovim as Metals frontend","breadcrumbs":"Getting Started » sbt with IDEs » sbt with IDEs","id":"80","title":"sbt with IDEs"},"81":{"body":"Metals is an open source language server for Scala, which can act as the backend for VS Code and other editors that support LSP . Metals in turn supports different build servers including sbt via the Build Server Protocol (BSP). To use Metals on VS Code: Install Metals from Extensions tab: Metals Open a directory containing a build.sbt file. From the menubar, run View > Command Palette... (Cmd-Shift-P on macOS) \"Metals: Switch build server\", and select \"sbt\" Metals Once the import process is complete, open a Scala file to see that code completion works: Metals Use the following setting to opt-out some of the subprojects from BSP. bspEnabled := false When you make changes to the code and save them (Cmd-S on macOS), Metals will invoke sbt to do the actual building work. Interactive debugging on VS Code Metals supports interactive debugging by setting break points in the code: Metals Interactive debugging can be started by right-clicking on an unit test, and selecting \"Debug Test.\" When the test hits a break point, you can inspect the values of the variables: Metals See Debugging page on VS Code documentation for more details on how to navigate an interactive debugging session. Logging into sbt session While Metals uses sbt as the build server, we can also log into the same sbt session using a thin client. From Terminal section, type in sbt --client Metals This lets you log into the sbt session Metals has started. In there you can call testOnly and other tasks with the code already compiled.","breadcrumbs":"Getting Started » sbt with IDEs » Using sbt as Metals build server","id":"81","title":"Using sbt as Metals build server"},"82":{"body":"IntelliJ IDEA is an IDE created by JetBrains, and the Community Edition is open source under Apache v2 license. IntelliJ integrates with many build tools, including sbt, to import the project. This is a more traditional approach that might be more reliable than using BSP approach. To import a build to IntelliJ IDEA: Install Scala plugin on the Plugins tab: IntelliJ From Projects, open a directory containing a build.sbt file. IntelliJ Once the import process is complete, open a Scala file to see that code completion works. IntelliJ Scala plugin uses its own lightweight compilation engine to detect errors, which is fast but sometimes incorrect. Per compiler-based highlighting , IntelliJ can be configured to use the Scala compiler for error highlighting. Interactive debugging with IntelliJ IDEA IntelliJ supports interactive debugging by setting break points in the code: IntelliJ Interactive debugging can be started by right-clicking on an unit test, and selecting \"Debug ''.\" Alternatively, you can click the green \"run\" icon on the left part of the editor near the unit test. When the test hits a break point, you can inspect the values of the variables: IntelliJ See Debug Code page on IntelliJ documentation for more details on how to navigate an interactive debugging session.","breadcrumbs":"Getting Started » sbt with IDEs » Importing to IntelliJ IDEA","id":"82","title":"Importing to IntelliJ IDEA"},"83":{"body":"Importing the build to IntelliJ means that you're effectively using IntelliJ as the build tool and the compiler while you code (see also compiler-based highlighting ). While many users are happy with the experience, depending on the code base some of the compilation errors may be false, it may not work well with plugins that generate sources, and generally you might want to code with the identical build semantics as sbt. Thankfully, modern IntelliJ supports alternative build servers including sbt via the Build Server Protocol (BSP). The benefit of using BSP with IntelliJ is that you're using sbt to do the actual build work, so if you are the kind of programmer who had sbt session up on the side, this avoids double compilation. Import to IntelliJ BSP with IntelliJ Reliability ✅ Reliable behavior ⚠️ Less mature. Might encounter UX issues. Responsiveness ✅ ⚠️ Correctness ⚠️ Uses its own compiler for type checking, but can be configured to use scalac ✅ Uses Zinc + Scala compiler for type checking Generated source ❌ Generated source requires resync ✅ Build reuse ❌ Using sbt side-by-side requires double build ✅ To use sbt as build server on IntelliJ: Install Scala plugin on the Plugins tab. To use the BSP approach, do not use Open button on the Project tab: IntelliJ From menubar, click New > \"Project From Existing Sources\", or Find Action (Cmd-Shift-P on macOS) and type \"Existing\" to find \"Import Project From Existing Sources\": IntelliJ Open a build.sbt file. Select BSP when prompted: IntelliJ Select sbt (recommended) as the tool to import the BSP workspace: IntelliJ Once the import process is complete, open a Scala file to see that code completion works: IntelliJ Use the following setting to opt-out some of the subprojects from BSP. bspEnabled := false Open Preferences, search BSP and check \"build automatically on file save\", and uncheck \"export sbt projects to Bloop before import\": IntelliJ When you make changes to the code and save them (Cmd-S on macOS), IntelliJ will invoke sbt to do the actual building work. See also Igal Tabachnik's Using BSP effectively in IntelliJ and Scala for more details. Logging into sbt session We can also log into the existing sbt session using the thin client. From Terminal section, type in sbt --client IntelliJ This lets you log into the sbt session IntelliJ has started. In there you can call testOnly and other tasks with the code already compiled.","breadcrumbs":"Getting Started » sbt with IDEs » Using sbt as IntelliJ IDEA build server (advanced)","id":"83","title":"Using sbt as IntelliJ IDEA build server (advanced)"},"84":{"body":"Neovim is a modern fork of Vim that supports LSP out-of-box, which means it can be configured as a frontend for Metals. Chris Kipp, who is a maintainer of Metals, created nvim-metals plugin that provides comprehensive Metals support on Neovim. To install nvim-metals, create lsp.lua under \\$XDG_CONFIG_HOME/nvim/lua/ based on Chris's lsp.lua and adjust to your preference. For example, comment out its plugins section and load the listed plugins using the plugin manager of your choice such as vim-plug. In init.vim, the file can be loaded as: lua << END\nrequire('lsp')\nEND Per lsp.lua, g:metals_status should be displayed on the status line, which can be done using lualine.nvim etc. Next, open a Scala file in an sbt build using Neovim. Run :MetalsInstall when prompted. Run :MetalsStartServer. If the status line is set up, you should see something like \"Connecting to sbt\" or \"Indexing.\" Code completion works when you're in Insert mode, and you can tab through the candidates: A build is triggered upon saving changes, and compilation errors are displayed inline: Go to definition You can jump to definition of the symbol under cursor by using gD (exact keybinding can be customized): Use Ctrl-O to return to the old buffer. Hover To display the type information of the symbol under cursor, like hovering, use K in Normal mode: Listing diagnostics To list all compilation errors and warnings, use aa: Since this is in the standard quickfix list, you can use the command such as :cnext and :cprev to nagivate through the errors and warnings. To list just the errors, use ae. Interactive debugging with Neovim Thanks to nvim-dap, Neovim supports interactive debugging. Set break points in the code using dt: Nagivate to a unit test, confirm that it's built by hovering (K), and then \"debug continue\" (dc) to start a debugger. Choose \"1: RunOrTest\" when prompted. When the test hits a break point, you can inspect the values of the variables by debug hovering (dK): \"debug continue\" (dc) again to end the session. See nvim-metals regarding further details. Logging into sbt session We can also log into the existing sbt session using the thin client. In a new vim window type :terminal to start the built-in terminal. Type in sbt --client Even though it's inside Neovim, tab completion etc works fine inside.","breadcrumbs":"Getting Started » sbt with IDEs » Using Neovim as Metals frontend (advanced)","id":"84","title":"Using Neovim as Metals frontend (advanced)"},"85":{"body":"See Installing sbt runner for the instruction on general setup. Using Coursier or SDKMAN has two advantages. They will install the official packaging by Eclipse Adoptium etc, as opposed to the \"mystery meat OpenJDK builds\" . They will install tgz packaging of sbt that contains all JAR files. (DEB and RPM packages do not to save bandwidth) This page describes alternative ways of installing the sbt runner. Note that some of the third-party packages may not provide the latest version.","breadcrumbs":"Appendix » Setup notes » Setup Notes","id":"85","title":"Setup Notes"},"86":{"body":"","breadcrumbs":"Appendix » Setup notes » OS specific setup","id":"86","title":"OS specific setup"},"87":{"body":"Homebrew $ brew install sbt Warning Homebrew maintainers have added a dependency to JDK 13 because they want to use more brew dependencies ( brew#50649 ). This causes sbt to use JDK 13 even when java available on PATH is JDK 8 or 11. To prevent sbt from running on JDK 13, install jEnv or switch to using SDKMAN .","breadcrumbs":"Appendix » Setup notes » macOS","id":"87","title":"macOS"},"88":{"body":"sbt-.msi Chocolatey > choco install sbt Scoop > scoop install sbt","breadcrumbs":"Appendix » Setup notes » Windows","id":"88","title":"Windows"},"89":{"body":"Ubuntu and other Debian-based distributions DEB package is officially supported by sbt, but it does not contain JAR files to save bandwidth. Ubuntu and other Debian-based distributions use the DEB format, but usually you don't install your software from a local DEB file. Instead they come with package managers both for the command line (e.g. apt-get, aptitude) or with a graphical user interface (e.g. Synaptic). Run the following from the terminal to install sbt (You'll need superuser privileges to do so, hence the sudo). sudo apt-get update\nsudo apt-get install apt-transport-https curl gnupg -yqq\necho \"deb https://repo.scala-sbt.org/scalasbt/debian all main\" | sudo tee /etc/apt/sources.list.d/sbt.list\necho \"deb https://repo.scala-sbt.org/scalasbt/debian /\" | sudo tee /etc/apt/sources.list.d/sbt_old.list\ncurl -sL \"https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x2EE0EA64E40A89B84B2DF73499E82A75642AC823\" | sudo -H gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/scalasbt-release.gpg --import\nsudo chmod 644 /etc/apt/trusted.gpg.d/scalasbt-release.gpg\nsudo apt-get update\nsudo apt-get install sbt Package managers will check a number of configured repositories for packages to offer for installation. You just have to add the repository to the places your package manager will check. Once sbt is installed, you'll be able to manage the package in aptitude or Synaptic after you updated their package cache. You should also be able to see the added repository at the bottom of the list in System Settings -> Software & Updates -> Other Software: Ubuntu Software & Updates Screenshot sudo apt-key adv --keyserver hkps://keyserver.ubuntu.com:443 --recv 2EE0EA64E40A89B84B2DF73499E82A75642AC823 may not work on Ubuntu Bionic LTS (18.04) since it's using a buggy GnuPG, so we are advising to use web API to download the public key in the above. Red Hat Enterprise Linux and other RPM-based distributions RPM package is officially supported by sbt, but it does not contain JAR files to save bandwidth. Red Hat Enterprise Linux and other RPM-based distributions use the RPM format. Run the following from the terminal to install sbt (You'll need superuser privileges to do so, hence the sudo). # remove old Bintray repo file\nsudo rm -f /etc/yum.repos.d/bintray-rpm.repo\ncurl -L https://www.scala-sbt.org/sbt-rpm.repo > sbt-rpm.repo\nsudo mv sbt-rpm.repo /etc/yum.repos.d/\nsudo yum install sbt On Fedora (31 and above), use sbt-rpm.repo: # remove old Bintray repo file\nsudo rm -f /etc/yum.repos.d/bintray-rpm.repo\ncurl -L https://www.scala-sbt.org/sbt-rpm.repo > sbt-rpm.repo\nsudo mv sbt-rpm.repo /etc/yum.repos.d/\nsudo dnf install sbt","breadcrumbs":"Appendix » Setup notes » Linux","id":"89","title":"Linux"},"9":{"body":"To leave sbt shell, type exit or use Ctrl+D (Unix) or Ctrl+Z (Windows). sbt:foo-build> exit","breadcrumbs":"Quick Start » sbt by example » Exit sbt shell","id":"9","title":"Exit sbt shell"}},"length":90,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{"1":{"2":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"7":{"df":6,"docs":{"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":4,"docs":{"43":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"1":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"7":{"0":{"4":{"5":{"4":{"0":{"2":{"5":{"2":{"6":{"8":{"5":{"5":{"4":{"7":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{":":{"1":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"26":{"tf":1.0}},"t":{"1":{"0":{":":{"0":{"0":{"\"":{"df":0,"docs":{},"}":{"df":0,"docs":{},"}":{",":{"2":{"0":{"0":{",":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":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":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":8,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":2.23606797749979}}},"1":{".":{"1":{"0":{".":{"0":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"4":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"4":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"5":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"_":{"3":{"5":{"2":{"df":4,"docs":{"2":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"2":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"8":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"0":{"tf":1.0}}}},"0":{"0":{"df":2,"docs":{"11":{"tf":1.0},"44":{"tf":1.0}}},"6":{"df":1,"docs":{"63":{"tf":1.0}}},":":{"0":{"9":{":":{"1":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":2,"docs":{"1":{"tf":1.0},"87":{"tf":1.0}}},"2":{"8":{"5":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"df":1,"docs":{"87":{"tf":1.7320508075688772}}},"6":{".":{"7":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"1":{"tf":1.0}}},"8":{".":{"0":{"4":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"63":{"tf":1.0}}},"df":1,"docs":{"43":{"tf":1.0}}},"9":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}},"df":12,"docs":{"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"26":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"84":{"tf":1.0}}},"2":{".":{"0":{".":{"0":{"df":2,"docs":{"54":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"df":1,"docs":{"40":{"tf":1.0}}},"3":{"/":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"40":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"19":{"tf":1.0}}}},"0":{"0":{"df":1,"docs":{"26":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"3":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"43":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"1":{".":{"3":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"7":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"3":{"8":{":":{"1":{"0":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"26":{"tf":1.0},"43":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"e":{"a":{"6":{"4":{"df":0,"docs":{},"e":{"4":{"0":{"a":{"8":{"9":{"b":{"8":{"4":{"b":{"2":{"d":{"df":0,"docs":{},"f":{"7":{"3":{"4":{"9":{"9":{"df":0,"docs":{},"e":{"8":{"2":{"a":{"7":{"5":{"6":{"4":{"2":{"a":{"c":{"8":{"2":{"3":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"3":{".":{"1":{".":{"3":{"/":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"74":{"tf":1.0}}},"3":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":17,"docs":{"0":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":2.0},"51":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":2,"docs":{"40":{"tf":1.0},"72":{"tf":1.0}}}},"1":{"df":1,"docs":{"89":{"tf":1.0}}},"2":{"df":1,"docs":{"63":{"tf":1.0}}},"4":{"1":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0}}},"4":{"0":{".":{"7":{"1":{"0":{"3":{"3":{"5":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":3,"docs":{"23":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}},"5":{"0":{"df":2,"docs":{"15":{"tf":1.0},"23":{"tf":1.0}}},"1":{"df":3,"docs":{"16":{"tf":1.0},"26":{"tf":1.0},"61":{"tf":1.0}}},"8":{"df":1,"docs":{"63":{"tf":1.0}}},"df":1,"docs":{"23":{"tf":1.0}}},"6":{"4":{"4":{"df":1,"docs":{"89":{"tf":1.0}}},"df":1,"docs":{"26":{"tf":1.0}}},"df":2,"docs":{"23":{"tf":1.0},"59":{"tf":1.0}}},"7":{"3":{".":{"9":{"9":{"3":{"0":{"7":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"0":{"6":{"&":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"2":{"tf":1.0},"26":{"tf":1.0},"87":{"tf":1.0}}},"9":{"]":{"*":{"\\":{".":{"[":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"3":{"tf":1.0},"63":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}},"v":{"df":3,"docs":{"69":{"tf":1.0},"76":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"49":{"tf":1.0},"81":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"49":{"tf":1.0},"60":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"d":{"d":{"df":7,"docs":{"20":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"44":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"17":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"89":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"31":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"1":{"tf":1.0},"52":{"tf":1.0},"69":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"0":{"a":{"c":{"1":{"4":{"0":{"9":{"c":{"0":{"1":{"1":{"7":{"a":{"9":{"4":{"9":{"d":{"4":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"47":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"81":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":3,"docs":{"51":{"tf":1.0},"60":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"p":{"df":3,"docs":{"15":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"60":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"36":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"89":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":2.449489742783178}}}}}}}},"m":{"df":1,"docs":{"1":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"13":{"tf":1.0},"54":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"47":{"tf":1.0},"60":{"tf":2.6457513110645907},"72":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"\"":{"df":0,"docs":{},"h":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"57":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"26":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.0}}}},"df":1,"docs":{"79":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":3,"docs":{"14":{"tf":1.4142135623730951},"73":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"40":{"tf":1.0},"42":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":5,"docs":{"19":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0}}}}}},"b":{"8":{"\\":{".":{"[":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"60":{"tf":1.4142135623730951},"77":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"d":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"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":{"85":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"43":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"37":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":2.0}}},"i":{"c":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.4142135623730951},"75":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"35":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"43":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"73":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"43":{"tf":1.0},"58":{"tf":1.0}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"42":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"t":{"a":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":1.0},"40":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"0":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"69":{"tf":1.0},"89":{"tf":1.0}}}}}},"x":{"df":1,"docs":{"84":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"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":{},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"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":{"#":{"5":{"0":{"6":{"4":{"9":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.4142135623730951}}}},"o":{"a":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"52":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":3.0}},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"81":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"43":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}}}}}}},"s":{"b":{"df":0,"docs":{},"t":{"df":25,"docs":{"0":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":2.0},"43":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":2.0},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"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":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{":":{"5":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":50,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":2.449489742783178},"16":{"tf":2.0},"17":{"tf":2.449489742783178},"19":{"tf":2.23606797749979},"28":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":2.0},"43":{"tf":2.23606797749979},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":2.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951},"83":{"tf":3.4641016151377544},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"15":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"47":{"tf":1.0},"60":{"tf":1.0},"76":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"41":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"81":{"tf":1.0},"83":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"68":{"tf":1.0},"69":{"tf":1.0}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"87":{"tf":1.0}}}}},"d":{"df":3,"docs":{"43":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0}}},"df":2,"docs":{"33":{"tf":1.4142135623730951},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":20,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"r":{"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":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"16":{"tf":1.0},"34":{"tf":1.0},"83":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"1":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"88":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}},"s":{"'":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"14":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"60":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"69":{"tf":1.0},"76":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"35":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"43":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"54":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"58":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"57":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"m":{"d":{"df":2,"docs":{"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":10,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":2.8284271247461903},"82":{"tf":1.7320508075688772},"83":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"2":{".":{"1":{"2":{"_":{"1":{".":{"0":{"/":{"0":{".":{"2":{".":{"1":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"3":{":":{"1":{".":{"0":{".":{"0":{"df":1,"docs":{"74":{"tf":1.0}}},"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":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"77":{"tf":1.0},"89":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":22,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":2.449489742783178},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":2.23606797749979},"64":{"tf":1.7320508075688772},"81":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"42":{"tf":1.0},"52":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":28,"docs":{"0":{"tf":1.0},"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":2.6457513110645907},"64":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":2.6457513110645907},"84":{"tf":1.4142135623730951}},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"43":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"i":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"45":{"tf":1.0},"46":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"38":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"42":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.7320508075688772},"79":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"24":{"tf":1.0},"84":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"26":{"tf":1.0},"60":{"tf":1.0}},"e":{"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":{"60":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"17":{"tf":1.0},"43":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"22":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"47":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"41":{"tf":1.0},"76":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"y":{"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":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"50":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"0":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"70":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"12":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"23":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"s":{"c":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"+":{"d":{"df":2,"docs":{"26":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"z":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":2,"docs":{"54":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":2.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"14":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"84":{"tf":1.0}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}},"t":{"a":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}},"y":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}},"df":2,"docs":{"43":{"tf":1.0},"54":{"tf":1.0}},"e":{"b":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":2.23606797749979}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"81":{"tf":2.449489742783178},"82":{"tf":2.449489742783178},"84":{"tf":2.23606797749979}},"g":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"67":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{"b":{"a":{"df":0,"docs":{},"r":{"_":{"3":{":":{"0":{".":{"1":{".":{"0":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"43":{"tf":1.7320508075688772},"60":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.0}}}}}},"df":5,"docs":{"12":{"tf":1.0},"33":{"tf":1.4142135623730951},"40":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"19":{"tf":1.0},"38":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"0":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"50":{"tf":1.0},"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":2.6457513110645907},"74":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"76":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{},"i":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"57":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"0":{"tf":1.0},"16":{"tf":1.0},"38":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"17":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"42":{"tf":1.0},"51":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"12":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"35":{"tf":1.0},"40":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"12":{"tf":1.7320508075688772},"36":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.449489742783178},"77":{"tf":1.4142135623730951},"78":{"tf":2.6457513110645907},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}},"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":3,"docs":{"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":3,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"4":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":8,"docs":{"14":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}}}}},"m":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"89":{"tf":1.0}}}},"o":{"c":{"df":2,"docs":{"0":{"tf":1.0},"60":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"60":{"tf":1.7320508075688772},"76":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"84":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"26":{"tf":2.0},"72":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"43":{"tf":1.0},"56":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"l":{"df":4,"docs":{"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":1.0}}}},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"35":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"57":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"7":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":2,"docs":{"1":{"tf":1.0},"85":{"tf":1.0}}}}}},"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":{"40":{"tf":1.7320508075688772},"41":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"82":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":10,"docs":{"12":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"49":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}}}},"df":1,"docs":{"43":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":5,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"26":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"d":{"df":5,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"33":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"42":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"41":{"tf":1.0},"72":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"24":{"tf":1.0},"31":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"77":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"23":{"tf":2.449489742783178},"42":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}},"t":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"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":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"d":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"d":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"d":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"52":{"tf":1.0},"70":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"84":{"tf":1.0},"87":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":14,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"75":{"tf":1.0},"84":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"33":{"tf":1.0}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.4142135623730951}},"e":{".":{"$":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"$":{"$":{"$":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"$":{"1":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{":":{"5":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.0},"43":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"39":{"tf":1.0},"57":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.0}}}},"t":{"df":8,"docs":{"12":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"43":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"58":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"6":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"26":{"tf":1.0},"68":{"tf":2.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"42":{"tf":1.0},"81":{"tf":1.0}}},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"23":{"tf":2.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"81":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"41":{"tf":1.0},"82":{"tf":1.0}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"df":2,"docs":{"43":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"42":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"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":{"63":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":2,"docs":{"43":{"tf":1.0},"63":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"44":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"/":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":5,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":25,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.0},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"23":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"60":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":2.0},"75":{"tf":1.0},"76":{"tf":2.0},"77":{"tf":2.0},"78":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"89":{"tf":2.23606797749979}}}},"n":{"d":{"df":3,"docs":{"13":{"tf":1.0},"26":{"tf":1.0},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":1,"docs":{"84":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"57":{"tf":1.0},"60":{"tf":1.0},"77":{"tf":1.0}}}}},"x":{"df":1,"docs":{"69":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":18,"docs":{"12":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}},"o":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"r":{"c":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"84":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"42":{"tf":1.0},"43":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}}}}},"v":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}},"g":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":1,"docs":{"43":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":6,"docs":{"0":{"tf":1.0},"60":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":1.0}}}}},"t":{"df":4,"docs":{"14":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.0},"72":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"57":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"8":{"df":1,"docs":{"44":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"44":{"tf":1.0},"57":{"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":{"79":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"t":{")":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{")":{",":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"g":{"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":{":":{"/":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":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":{"26":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.7320508075688772}}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":3,"docs":{"34":{"tf":1.0},"69":{"tf":1.0},"84":{"tf":1.0}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}}}},"r":{"a":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}},"p":{"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"w":{"df":2,"docs":{"42":{"tf":1.0},"67":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"38":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}}},"t":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"38":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"89":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"12":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"78":{"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":7,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0}},"e":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":16,"docs":{"15":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":2.0},"32":{"tf":2.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":2.23606797749979},"40":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"35":{"tf":1.0}}}}}}}},"p":{"df":4,"docs":{"14":{"tf":2.23606797749979},"26":{"tf":1.0},"42":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"n":{"c":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"43":{"tf":1.0},"69":{"tf":1.0}}},"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"40":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"t":{"df":7,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"4":{"4":{"3":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":{},"g":{"8":{"df":1,"docs":{"43":{"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":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":2.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"/":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"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":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}},"d":{"df":5,"docs":{"0":{"tf":1.0},"52":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"72":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"83":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"72":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"63":{"tf":1.0},"78":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.0}}}},"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":1,"docs":{"70":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"26":{"tf":2.0},"33":{"tf":1.7320508075688772},"46":{"tf":1.0},"60":{"tf":1.0},"73":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":2.449489742783178},"89":{"tf":1.0}}}}}}},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0}},"e":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":5,"docs":{"19":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"u":{"d":{"df":6,"docs":{"59":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"22":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":18,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":2.449489742783178},"17":{"tf":1.4142135623730951},"19":{"tf":2.0},"28":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":2.6457513110645907},"43":{"tf":3.3166247903554},"54":{"tf":3.0},"58":{"tf":3.0},"59":{"tf":2.6457513110645907},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":3.3166247903554},"74":{"tf":2.6457513110645907},"8":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"14":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"[":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"a":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"67":{"tf":1.0},"69":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"[":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}},"i":{"d":{"df":3,"docs":{"43":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"60":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"1":{"tf":1.7320508075688772},"3":{"tf":2.0},"47":{"tf":1.0},"6":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":3.0}}},"n":{"c":{"df":5,"docs":{"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"1":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"44":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":5,"docs":{"0":{"tf":1.0},"52":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":3.605551275463989},"83":{"tf":4.242640687119285}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":2.0},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":6,"docs":{"1":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0}}}}}},"s":{"_":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"83":{"tf":1.0}}}}},"t":{"'":{"df":6,"docs":{"46":{"tf":1.0},"57":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"0":{"tf":1.0},"40":{"tf":1.0},"60":{"tf":2.0},"71":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"v":{"a":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"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":{},"i":{"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":14,"docs":{"0":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"54":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":2.0},"8":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.7320508075688772},"2":{"tf":1.0},"3":{"tf":1.0},"87":{"tf":2.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"87":{"tf":1.0}}}},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"o":{"b":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"40":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"(":{"\"":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{")":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"33":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"44":{"tf":1.0},"84":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":4,"docs":{"0":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0}}}}},"k":{"df":1,"docs":{"84":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"42":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"y":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"43":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":2.23606797749979},"71":{"tf":1.0},"89":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"3":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"3":{":":{"0":{".":{"2":{".":{"0":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":10,"docs":{"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"69":{"tf":2.449489742783178},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"41":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"42":{"tf":1.0},"67":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"68":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"i":{"df":8,"docs":{"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":2.8284271247461903},"73":{"tf":1.0},"75":{"tf":1.7320508075688772}}}}},"df":1,"docs":{"89":{"tf":1.4142135623730951}},"e":{"a":{"d":{"df":1,"docs":{"79":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{">":{"a":{"a":{"df":1,"docs":{"84":{"tf":1.0}}},"df":1,"docs":{"84":{"tf":1.0}}},"d":{"c":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":1,"docs":{"84":{"tf":1.0}}},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":4,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"54":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"68":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}},"t":{"'":{"df":7,"docs":{"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"43":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0}}},"df":3,"docs":{"41":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"40":{"tf":1.0},"69":{"tf":1.0}}}}}},"i":{"b":{"_":{"3":{":":{"0":{".":{"9":{".":{"1":{"df":1,"docs":{"74":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"0":{"tf":1.0},"25":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.4142135623730951},"61":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.4142135623730951}}},"y":{"_":{"3":{":":{"3":{".":{"1":{".":{"3":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"89":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"14":{"tf":1.7320508075688772},"28":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"66":{"tf":1.0},"84":{"tf":2.23606797749979},"89":{"tf":1.0}}}}},"o":{"a":{"d":{"df":5,"docs":{"19":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"69":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{":":{"/":{"/":{"/":{"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":{},"e":{"d":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"9":{"df":0,"docs":{},"n":{"/":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"/":{"1":{".":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"0":{"a":{"c":{"1":{"4":{"0":{"9":{"c":{"0":{"1":{"1":{"7":{"a":{"9":{"4":{"9":{"d":{"4":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"9":{"8":{"2":{"df":0,"docs":{},"e":{"0":{"7":{"df":0,"docs":{},"e":{"8":{"5":{"c":{"7":{"d":{"df":0,"docs":{},"e":{"1":{"b":{"6":{"1":{"8":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"44":{"tf":1.0},"60":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":3,"docs":{"81":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"43":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":2,"docs":{"81":{"tf":1.0},"84":{"tf":1.0}}}},"t":{"df":1,"docs":{"89":{"tf":1.0}}},"u":{"a":{"df":1,"docs":{"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1":{"tf":1.0},"47":{"tf":1.0},"56":{"tf":1.0}}}}},"o":{"df":4,"docs":{"1":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"87":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"12":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.4142135623730951},"60":{"tf":2.6457513110645907},"62":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"78":{"tf":2.23606797749979},"89":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"38":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"0":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"12":{"tf":1.0},"70":{"tf":1.7320508075688772},"76":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":2.0}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"38":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"66":{"tf":1.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"72":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"df":3,"docs":{"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"41":{"tf":1.0},"60":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":1,"docs":{"43":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"10":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"u":{"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"81":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"52":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":4.0},"84":{"tf":2.6457513110645907}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"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":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"?":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{".":{"7":{"1":{"4":{"3":{"&":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"o":{"d":{"df":2,"docs":{"60":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"63":{"tf":2.449489742783178}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"43":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"26":{"tf":1.0},"35":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"64":{"tf":1.0},"84":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"51":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":16,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"32":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"35":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"75":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"62":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{":":{"1":{"1":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":1,"docs":{"89":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"e":{"df":18,"docs":{"14":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"40":{"tf":1.0},"66":{"tf":2.0},"68":{"tf":2.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"40":{"tf":1.0},"48":{"tf":1.7320508075688772},"59":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":1,"docs":{"43":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":9,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":2.6457513110645907}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}},"w":{"df":11,"docs":{"12":{"tf":1.0},"14":{"tf":2.0},"16":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":2.0},"43":{"tf":2.23606797749979},"44":{"tf":2.0},"76":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"84":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"40":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"78":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"w":{"df":4,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"70":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":{"69":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"38":{"tf":1.0},"42":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":2.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"33":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"3":{"tf":1.0},"43":{"tf":1.0},"84":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"k":{"df":1,"docs":{"78":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"84":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"c":{"df":5,"docs":{"57":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":11,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"42":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"44":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.7320508075688772},"83":{"tf":2.0},"84":{"tf":1.0}},"j":{"d":{"df":0,"docs":{},"k":{"df":3,"docs":{"2":{"tf":1.0},"26":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"2":{"tf":1.0},"68":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"42":{"tf":1.0},"85":{"tf":1.0}}}}},"t":{"df":2,"docs":{"81":{"tf":1.0},"83":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"60":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":11,"docs":{"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"69":{"tf":2.449489742783178},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"74":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":12,"docs":{"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.7320508075688772},"77":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"s":{"df":1,"docs":{"86":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"26":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"51":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"33":{"tf":1.4142135623730951},"4":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.4142135623730951},"70":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":2.0},"89":{"tf":2.8284271247461903}},"e":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"60":{"tf":1.0},"75":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":9,"docs":{"37":{"tf":1.0},"57":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}}},"s":{"df":1,"docs":{"33":{"tf":1.0}}},"t":{"df":3,"docs":{"68":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"14":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"35":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0}}},"t":{"df":2,"docs":{"26":{"tf":1.0},"69":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"78":{"tf":1.0},"87":{"tf":1.0}}}}},"df":3,"docs":{"43":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"78":{"tf":1.0}}}}},"r":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"12":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"73":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"89":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"40":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"43":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"14":{"tf":1.0},"42":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":2.0}},"s":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":3,"docs":{"58":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"m":{"df":1,"docs":{"43":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"76":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"11":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"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":{"2":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"12":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"/":{"b":{"a":{"df":0,"docs":{},"r":{"/":{"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":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"58":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"40":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"60":{"tf":2.6457513110645907}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"75":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":2,"docs":{"80":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":3,"docs":{"72":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"41":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":34,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":2.449489742783178},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"36":{"tf":2.0},"43":{"tf":3.3166247903554},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"66":{"tf":2.0},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":2.6457513110645907},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"83":{"tf":2.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"48":{"tf":1.0},"52":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"14":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"51":{"tf":1.0},"60":{"tf":2.23606797749979},"84":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"0":{"tf":1.0},"41":{"tf":1.0},"60":{"tf":2.0}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"q":{"df":2,"docs":{"26":{"tf":1.0},"43":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"84":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"43":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"j":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{")":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"d":{"df":4,"docs":{"19":{"tf":1.0},"38":{"tf":1.4142135623730951},"47":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"34":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"1":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"11":{"tf":1.0},"64":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"89":{"tf":1.0}}}},"d":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"69":{"tf":1.7320508075688772},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"84":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"l":{"df":1,"docs":{"78":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"78":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"1":{"tf":1.0}}},"o":{"a":{"d":{"df":8,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":2.0},"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":1,"docs":{"26":{"tf":1.0}}},"o":{"df":1,"docs":{"89":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"41":{"tf":1.0},"57":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"35":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"(":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":5,"docs":{"50":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"60":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"26":{"tf":1.4142135623730951},"33":{"tf":1.0},"83":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"\"":{":":{"4":{"0":{".":{"7":{"1":{"0":{"3":{"3":{"5":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"43":{"tf":1.0},"84":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"68":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{":":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"d":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"59":{"tf":1.4142135623730951},"66":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":3.0}}}}}}},"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":2.0}}}},"u":{"df":0,"docs":{},"n":{"df":32,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"41":{"tf":1.0},"43":{"tf":2.0},"46":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":2.23606797749979},"62":{"tf":2.23606797749979},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"71":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"1":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"42":{"tf":1.0},"47":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"17":{"tf":2.0},"64":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"76":{"tf":1.0}}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"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":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"2":{".":{"0":{".":{"0":{"df":2,"docs":{"47":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"43":{"tf":1.0}}}}}}}}}},"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{"b":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"43":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":6,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":10,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951}}}}}}}},"df":61,"docs":{"0":{"tf":2.449489742783178},"1":{"tf":2.449489742783178},"10":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"16":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":2.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"41":{"tf":2.23606797749979},"42":{"tf":1.4142135623730951},"43":{"tf":3.605551275463989},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":2.449489742783178},"47":{"tf":2.6457513110645907},"48":{"tf":2.449489742783178},"49":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":3.4641016151377544},"55":{"tf":2.0},"56":{"tf":2.0},"57":{"tf":1.7320508075688772},"58":{"tf":2.6457513110645907},"6":{"tf":1.7320508075688772},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":2.0},"80":{"tf":2.23606797749979},"81":{"tf":3.0},"82":{"tf":1.0},"83":{"tf":3.7416573867739413},"84":{"tf":2.23606797749979},"85":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":3.605551275463989},"9":{"tf":1.4142135623730951}},"n":{"df":5,"docs":{"48":{"tf":2.0},"49":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}},"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"3":{".":{"df":0,"docs":{},"g":{"8":{"df":2,"docs":{"43":{"tf":1.0},"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"36":{"tf":1.0},"43":{"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":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"c":{"df":2,"docs":{"40":{"tf":2.0},"83":{"tf":1.0}}},"df":29,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":1.0},"26":{"tf":2.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":2.8284271247461903},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":3.605551275463989},"44":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"76":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":3.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":2.0},"83":{"tf":2.0},"84":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":21,"docs":{"0":{"tf":1.0},"16":{"tf":2.23606797749979},"17":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":2.23606797749979},"42":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"43":{"tf":1.0}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"60":{"tf":1.0},"62":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.7320508075688772}},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"8":{"df":2,"docs":{"36":{"tf":1.0},"43":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":10,"docs":{"33":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"89":{"tf":1.0}},"m":{"df":1,"docs":{"78":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"43":{"tf":2.0},"60":{"tf":1.0},"62":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"d":{"df":3,"docs":{"26":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":4,"docs":{"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"26":{"tf":1.0},"43":{"tf":2.449489742783178},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"52":{"tf":2.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951},"58":{"tf":2.0},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":2.449489742783178},"83":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"14":{"tf":1.0},"17":{"tf":1.7320508075688772},"81":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.7320508075688772}}}}}}},"t":{"df":22,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":2.23606797749979},"17":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"34":{"tf":2.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"[":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"36":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":15,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.4142135623730951},"46":{"tf":1.0},"54":{"tf":2.23606797749979},"58":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"81":{"tf":1.0},"83":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":1,"docs":{"80":{"tf":1.0}}}},"w":{"df":3,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":4,"docs":{"43":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"58":{"tf":1.0}}}}}},"df":2,"docs":{"43":{"tf":1.0},"56":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"68":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"0":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"75":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"51":{"tf":1.0},"75":{"tf":1.0}}}}}},"l":{"df":1,"docs":{"89":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"40":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"38":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"4":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":2.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"36":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":15,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":3.1622776601683795},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.23606797749979}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":5,"docs":{"14":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.4142135623730951},"86":{"tf":1.0}},"i":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"78":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"43":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"48":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"41":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"0":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"38":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":2.6457513110645907},"44":{"tf":1.0},"54":{"tf":2.0},"57":{"tf":1.0},"58":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":2.23606797749979},"75":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"1":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"64":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"12":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"42":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"4":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{".":{"_":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"33":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"75":{"tf":1.0}}},"df":17,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"66":{"tf":2.0},"67":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":2.23606797749979},"79":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"60":{"tf":2.23606797749979},"71":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":4.123105625617661}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"38":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"34":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":11,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":5,"docs":{"54":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"43":{"tf":1.0},"52":{"tf":1.0},"76":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"df":14,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":2.23606797749979},"60":{"tf":3.4641016151377544},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"[":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"44":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"m":{"df":1,"docs":{"3":{"tf":1.0}},"p":{"df":1,"docs":{"33":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"36":{"tf":1.0},"43":{"tf":2.6457513110645907},"44":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"n":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"35":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"24":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"55":{"tf":1.0}}},"df":25,"docs":{"0":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":2.0},"31":{"tf":2.0},"32":{"tf":1.7320508075688772},"35":{"tf":1.0},"43":{"tf":1.7320508075688772},"60":{"tf":2.23606797749979},"63":{"tf":2.23606797749979},"64":{"tf":1.4142135623730951},"69":{"tf":2.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"78":{"tf":2.23606797749979},"79":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":2.0},"84":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"35":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"35":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"85":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"84":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"43":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"g":{"df":2,"docs":{"41":{"tf":1.0},"78":{"tf":1.0}}},"k":{"df":1,"docs":{"69":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"s":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"78":{"tf":1.0},"84":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"68":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":9,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}},"e":{"_":{"a":{"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":6,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"44":{"tf":1.0}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"42":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":7,"docs":{"0":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"49":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"3":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"df":11,"docs":{"20":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"43":{"tf":2.6457513110645907},"69":{"tf":3.1622776601683795},"72":{"tf":1.4142135623730951},"73":{"tf":2.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"69":{"tf":2.0},"73":{"tf":1.4142135623730951}}}}}},"v":{"df":3,"docs":{"43":{"tf":1.7320508075688772},"69":{"tf":3.1622776601683795},"73":{"tf":1.7320508075688772}}}}}}}},"p":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"41":{"tf":1.0},"47":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"79":{"tf":1.0}}}},"n":{"df":1,"docs":{"63":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"40":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"74":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":2,"docs":{"26":{"tf":1.0},"64":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"84":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":2,"docs":{"80":{"tf":1.0},"85":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":14,"docs":{"26":{"tf":1.4142135623730951},"36":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":2.23606797749979},"74":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.7320508075688772},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"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":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"i":{"c":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"89":{"tf":2.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"36":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"69":{"tf":1.7320508075688772}}}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"42":{"tf":1.0}}}},"t":{"df":6,"docs":{"12":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"x":{"df":2,"docs":{"54":{"tf":1.0},"9":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"43":{"tf":1.0},"60":{"tf":1.0},"89":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":8,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.0},"84":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":49,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"60":{"tf":2.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":2.23606797749979},"82":{"tf":1.7320508075688772},"83":{"tf":3.7416573867739413},"84":{"tf":3.4641016151377544},"85":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":2.23606797749979},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"9":{"df":0,"docs":{},"n":{"/":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"/":{"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":1,"docs":{"58":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}},"x":{"df":1,"docs":{"83":{"tf":1.0}}}},"v":{"2":{"df":1,"docs":{"82":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"26":{"tf":2.449489742783178},"27":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"66":{"tf":1.0},"69":{"tf":4.0},"73":{"tf":2.0},"75":{"tf":2.0}},"u":{"df":10,"docs":{"16":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"60":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"42":{"tf":1.0},"69":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"b":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":20,"docs":{"1":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"34":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":2.23606797749979},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.7320508075688772},"62":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":2.23606797749979},"73":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}}},"i":{"a":{"df":4,"docs":{"0":{"tf":1.0},"42":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"60":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0}}}},"m":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"43":{"tf":1.0}}}},"z":{"df":1,"docs":{"59":{"tf":1.0}}}},"m":{"df":1,"docs":{"26":{"tf":1.0}}},"s":{"df":2,"docs":{"0":{"tf":1.0},"81":{"tf":2.0}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"83":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"17":{"tf":2.6457513110645907},"84":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":3,"docs":{"53":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.4142135623730951}}}}}}},"b":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":6,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"43":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"11":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"43":{"tf":1.0},"58":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"49":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"n":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"54":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":12,"docs":{"33":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":3,"docs":{"36":{"tf":1.0},"40":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"23":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"37":{"tf":1.0},"43":{"tf":1.0},"76":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"x":{"d":{"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":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"23":{"tf":1.0}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"42":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.4142135623730951}}}},"u":{"'":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.7320508075688772}}}},"r":{"df":3,"docs":{"70":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"v":{"df":2,"docs":{"57":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"q":{"df":1,"docs":{"89":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}},"z":{"df":1,"docs":{"54":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"41":{"tf":1.0},"51":{"tf":2.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{"1":{"2":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"7":{"df":6,"docs":{"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":4,"docs":{"43":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"1":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"7":{"0":{"4":{"5":{"4":{"0":{"2":{"5":{"2":{"6":{"8":{"5":{"5":{"4":{"7":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{":":{"1":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"26":{"tf":1.0}},"t":{"1":{"0":{":":{"0":{"0":{"\"":{"df":0,"docs":{},"}":{"df":0,"docs":{},"}":{",":{"2":{"0":{"0":{",":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":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":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":8,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":2.23606797749979}}},"1":{".":{"1":{"0":{".":{"0":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"4":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"4":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"5":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"_":{"3":{"5":{"2":{"df":4,"docs":{"2":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"2":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"8":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"0":{"tf":1.0}}}},"0":{"0":{"df":2,"docs":{"11":{"tf":1.0},"44":{"tf":1.0}}},"6":{"df":1,"docs":{"63":{"tf":1.0}}},":":{"0":{"9":{":":{"1":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":2,"docs":{"1":{"tf":1.0},"87":{"tf":1.0}}},"2":{"8":{"5":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"df":1,"docs":{"87":{"tf":1.7320508075688772}}},"6":{".":{"7":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"1":{"tf":1.0}}},"8":{".":{"0":{"4":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"63":{"tf":1.0}}},"df":1,"docs":{"43":{"tf":1.0}}},"9":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}},"df":12,"docs":{"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"26":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"84":{"tf":1.0}}},"2":{".":{"0":{".":{"0":{"df":2,"docs":{"54":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"df":1,"docs":{"40":{"tf":1.0}}},"3":{"/":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"40":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"19":{"tf":1.0}}}},"0":{"0":{"df":1,"docs":{"26":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"3":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"43":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"1":{".":{"3":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"7":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"3":{"8":{":":{"1":{"0":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"26":{"tf":1.0},"43":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"e":{"a":{"6":{"4":{"df":0,"docs":{},"e":{"4":{"0":{"a":{"8":{"9":{"b":{"8":{"4":{"b":{"2":{"d":{"df":0,"docs":{},"f":{"7":{"3":{"4":{"9":{"9":{"df":0,"docs":{},"e":{"8":{"2":{"a":{"7":{"5":{"6":{"4":{"2":{"a":{"c":{"8":{"2":{"3":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"3":{".":{"1":{".":{"3":{"/":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"74":{"tf":1.0}}},"3":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":17,"docs":{"0":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":2.0},"51":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":2,"docs":{"40":{"tf":1.0},"72":{"tf":1.0}}}},"1":{"df":1,"docs":{"89":{"tf":1.0}}},"2":{"df":1,"docs":{"63":{"tf":1.0}}},"4":{"1":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0}}},"4":{"0":{".":{"7":{"1":{"0":{"3":{"3":{"5":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":3,"docs":{"23":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}},"5":{"0":{"df":2,"docs":{"15":{"tf":1.0},"23":{"tf":1.0}}},"1":{"df":3,"docs":{"16":{"tf":1.0},"26":{"tf":1.0},"61":{"tf":1.0}}},"8":{"df":1,"docs":{"63":{"tf":1.0}}},"df":1,"docs":{"23":{"tf":1.0}}},"6":{"4":{"4":{"df":1,"docs":{"89":{"tf":1.0}}},"df":1,"docs":{"26":{"tf":1.0}}},"df":2,"docs":{"23":{"tf":1.0},"59":{"tf":1.0}}},"7":{"3":{".":{"9":{"9":{"3":{"0":{"7":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"0":{"6":{"&":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"2":{"tf":1.0},"26":{"tf":1.0},"87":{"tf":1.0}}},"9":{"]":{"*":{"\\":{".":{"[":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"3":{"tf":1.0},"63":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}},"v":{"df":3,"docs":{"69":{"tf":1.0},"76":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"49":{"tf":1.0},"81":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"49":{"tf":1.0},"60":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"d":{"d":{"df":7,"docs":{"20":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"44":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"17":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"89":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"31":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"1":{"tf":1.0},"52":{"tf":1.0},"69":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"0":{"a":{"c":{"1":{"4":{"0":{"9":{"c":{"0":{"1":{"1":{"7":{"a":{"9":{"4":{"9":{"d":{"4":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"47":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"81":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":3,"docs":{"51":{"tf":1.0},"60":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"p":{"df":3,"docs":{"15":{"tf":1.4142135623730951},"33":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":5,"docs":{"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}},"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":1,"docs":{"60":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"36":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"89":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":2.449489742783178}}}}}}}},"m":{"df":1,"docs":{"1":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"13":{"tf":1.0},"54":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"47":{"tf":1.0},"60":{"tf":2.6457513110645907},"72":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"\"":{"df":0,"docs":{},"h":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"57":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"26":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.0}}}},"df":1,"docs":{"79":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":3,"docs":{"14":{"tf":1.4142135623730951},"73":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"40":{"tf":1.0},"42":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":5,"docs":{"19":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0}}}}}},"b":{"8":{"\\":{".":{"[":{"0":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"60":{"tf":1.4142135623730951},"77":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"d":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"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":{"85":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"43":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"37":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":2.0}}},"i":{"c":{"df":12,"docs":{"14":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"35":{"tf":2.0},"55":{"tf":1.7320508075688772},"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"43":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"73":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"43":{"tf":1.0},"58":{"tf":1.0}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"42":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"t":{"a":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"40":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"0":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"69":{"tf":1.0},"89":{"tf":1.0}}}}}},"x":{"df":1,"docs":{"84":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"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":{},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"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":{"#":{"5":{"0":{"6":{"4":{"9":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.4142135623730951}}}},"o":{"a":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"52":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":3.0}},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"81":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"43":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}}}}}}},"s":{"b":{"df":0,"docs":{},"t":{"df":25,"docs":{"0":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":2.23606797749979},"43":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"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":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{":":{"5":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":55,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":2.449489742783178},"16":{"tf":2.0},"17":{"tf":2.449489742783178},"19":{"tf":2.449489742783178},"28":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":2.0},"43":{"tf":2.6457513110645907},"44":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":2.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":2.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":2.449489742783178},"77":{"tf":2.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":2.6457513110645907},"82":{"tf":1.4142135623730951},"83":{"tf":3.605551275463989},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"15":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"47":{"tf":1.0},"60":{"tf":1.0},"76":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"41":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"81":{"tf":1.0},"83":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"68":{"tf":1.0},"69":{"tf":1.0}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"87":{"tf":1.0}}}}},"d":{"df":3,"docs":{"43":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0}}},"df":2,"docs":{"33":{"tf":1.4142135623730951},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":20,"docs":{"0":{"tf":1.0},"11":{"tf":1.4142135623730951},"14":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"33":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"r":{"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":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"16":{"tf":1.0},"34":{"tf":1.0},"83":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"1":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"88":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}},"s":{"'":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"14":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"60":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"69":{"tf":1.0},"76":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"35":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"43":{"tf":1.7320508075688772},"48":{"tf":2.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"58":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"57":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"m":{"d":{"df":2,"docs":{"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":10,"docs":{"0":{"tf":1.0},"11":{"tf":1.4142135623730951},"35":{"tf":1.0},"48":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":1.0},"81":{"tf":2.8284271247461903},"82":{"tf":1.7320508075688772},"83":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"2":{".":{"1":{"2":{"_":{"1":{".":{"0":{"/":{"0":{".":{"2":{".":{"1":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"3":{":":{"1":{".":{"0":{".":{"0":{"df":1,"docs":{"74":{"tf":1.0}}},"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":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"77":{"tf":1.0},"89":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":22,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"14":{"tf":2.449489742783178},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":2.449489742783178},"64":{"tf":2.0},"81":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"42":{"tf":1.0},"52":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":28,"docs":{"0":{"tf":1.0},"10":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":2.8284271247461903},"64":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":2.6457513110645907},"84":{"tf":1.4142135623730951}},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"43":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"i":{"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"45":{"tf":1.7320508075688772},"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}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"38":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"42":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"24":{"tf":1.0},"84":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.7320508075688772},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"26":{"tf":1.0},"60":{"tf":1.0}},"e":{"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":{"60":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"17":{"tf":1.0},"43":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"47":{"tf":1.0},"79":{"tf":1.7320508075688772}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"41":{"tf":1.0},"76":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"y":{"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":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"50":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"0":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"70":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"12":{"tf":2.0},"14":{"tf":1.4142135623730951},"23":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":2.0},"44":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"73":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"s":{"c":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"+":{"d":{"df":2,"docs":{"26":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"z":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":2,"docs":{"54":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":2.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"14":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"84":{"tf":1.0}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}},"t":{"a":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}},"y":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}},"df":2,"docs":{"43":{"tf":1.0},"54":{"tf":1.0}},"e":{"b":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":2.23606797749979}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"81":{"tf":2.449489742783178},"82":{"tf":2.449489742783178},"84":{"tf":2.23606797749979}},"g":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"67":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{"b":{"a":{"df":0,"docs":{},"r":{"_":{"3":{":":{"0":{".":{"1":{".":{"0":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"43":{"tf":1.7320508075688772},"60":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.0}}}}}},"df":5,"docs":{"12":{"tf":1.0},"33":{"tf":1.4142135623730951},"40":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"19":{"tf":1.0},"38":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":2.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"0":{"tf":1.0},"25":{"tf":1.4142135623730951},"32":{"tf":2.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"50":{"tf":1.0},"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":3.0},"74":{"tf":2.23606797749979},"83":{"tf":1.0},"87":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"76":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{},"i":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"57":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"0":{"tf":1.0},"16":{"tf":1.0},"38":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"17":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"42":{"tf":1.0},"51":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"12":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"35":{"tf":1.0},"40":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"12":{"tf":1.7320508075688772},"36":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.449489742783178},"77":{"tf":1.4142135623730951},"78":{"tf":2.6457513110645907},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}},"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":3,"docs":{"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":3,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"4":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":8,"docs":{"14":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"46":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}}}}},"m":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"89":{"tf":1.0}}}},"o":{"c":{"df":2,"docs":{"0":{"tf":1.0},"60":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"60":{"tf":1.7320508075688772},"76":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"84":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"26":{"tf":2.0},"72":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"43":{"tf":1.0},"56":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"l":{"df":4,"docs":{"41":{"tf":1.4142135623730951},"42":{"tf":2.0},"67":{"tf":2.23606797749979},"68":{"tf":1.0}}}},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"35":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"57":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"7":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":2,"docs":{"1":{"tf":1.0},"85":{"tf":1.0}}}}}},"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":{"40":{"tf":1.7320508075688772},"41":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"82":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":10,"docs":{"12":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"49":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}}}},"df":1,"docs":{"43":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":5,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"26":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"d":{"df":5,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"33":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"42":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"41":{"tf":1.0},"72":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"24":{"tf":1.0},"31":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"77":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"23":{"tf":2.449489742783178},"42":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}},"t":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"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":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"d":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"d":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"d":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"52":{"tf":1.0},"70":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"84":{"tf":1.0},"87":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":40,"docs":{"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":2.0},"64":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"33":{"tf":1.0}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.4142135623730951}},"e":{".":{"$":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"$":{"$":{"$":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"$":{"1":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{":":{"5":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.0},"43":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":14,"docs":{"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.0}}}},"t":{"df":8,"docs":{"12":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"43":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"9":{"tf":2.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"58":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"6":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"26":{"tf":1.0},"68":{"tf":2.23606797749979}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"42":{"tf":1.0},"81":{"tf":1.0}}},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"23":{"tf":2.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"81":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"41":{"tf":1.0},"82":{"tf":1.0}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"df":2,"docs":{"43":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"42":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"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":{"63":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":2,"docs":{"43":{"tf":1.0},"63":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"44":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"/":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":5,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":25,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.23606797749979},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"23":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"60":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":2.0},"75":{"tf":1.0},"76":{"tf":2.0},"77":{"tf":2.23606797749979},"78":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"89":{"tf":2.23606797749979}}}},"n":{"d":{"df":3,"docs":{"13":{"tf":1.0},"26":{"tf":1.0},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":1,"docs":{"84":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"57":{"tf":1.0},"60":{"tf":1.0},"77":{"tf":1.0}}}}},"x":{"df":1,"docs":{"69":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":18,"docs":{"12":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}},"o":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"r":{"c":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":1,"docs":{"84":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"42":{"tf":1.0},"43":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}}}}},"v":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}},"g":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":1,"docs":{"43":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":6,"docs":{"0":{"tf":1.0},"60":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":1.0}}}}},"t":{"df":48,"docs":{"14":{"tf":1.4142135623730951},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"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.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"57":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"8":{"df":1,"docs":{"44":{"tf":2.0}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"44":{"tf":1.0},"57":{"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":{"79":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"t":{")":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{")":{",":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"g":{"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":{":":{"/":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":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":{"26":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.7320508075688772}}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":3,"docs":{"34":{"tf":1.0},"69":{"tf":1.0},"84":{"tf":1.0}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}}}},"r":{"a":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}},"p":{"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"w":{"df":2,"docs":{"42":{"tf":1.0},"67":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"38":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}}},"t":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"38":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"89":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"12":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"78":{"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":7,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":2.0},"33":{"tf":1.0},"34":{"tf":1.0}},"e":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":16,"docs":{"15":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":2.0},"32":{"tf":2.23606797749979},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":2.23606797749979},"40":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"35":{"tf":1.0}}}}}}}},"p":{"df":4,"docs":{"14":{"tf":2.449489742783178},"26":{"tf":1.0},"42":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"n":{"c":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"43":{"tf":1.0},"69":{"tf":1.0}}},"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"40":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"t":{"df":7,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"4":{"4":{"3":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":{},"g":{"8":{"df":1,"docs":{"43":{"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":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":2.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"/":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"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":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}},"d":{"df":8,"docs":{"0":{"tf":1.0},"52":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":2.23606797749979},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"72":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.23606797749979},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"72":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"63":{"tf":1.0},"78":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.0}}}},"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":1,"docs":{"70":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"26":{"tf":2.0},"33":{"tf":1.7320508075688772},"46":{"tf":1.0},"60":{"tf":1.0},"73":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.23606797749979},"83":{"tf":2.449489742783178},"89":{"tf":1.0}}}}}}},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0}},"e":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":5,"docs":{"19":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"u":{"d":{"df":6,"docs":{"59":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"22":{"tf":1.4142135623730951},"41":{"tf":1.0},"51":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":18,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":2.449489742783178},"17":{"tf":1.4142135623730951},"19":{"tf":2.0},"28":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":2.6457513110645907},"43":{"tf":3.3166247903554},"54":{"tf":3.0},"58":{"tf":3.0},"59":{"tf":2.6457513110645907},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":3.3166247903554},"74":{"tf":2.6457513110645907},"8":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"14":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"[":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"a":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"67":{"tf":1.0},"69":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"[":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}},"i":{"d":{"df":3,"docs":{"43":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"60":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"1":{"tf":2.23606797749979},"2":{"tf":1.0},"3":{"tf":2.449489742783178},"4":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":3.0}}},"n":{"c":{"df":5,"docs":{"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"1":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"44":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":5,"docs":{"0":{"tf":1.0},"52":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":3.7416573867739413},"83":{"tf":4.358898943540674}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":2.0},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"40":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":6,"docs":{"1":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0}}}}}},"s":{"_":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"83":{"tf":1.0}}}}},"t":{"'":{"df":6,"docs":{"46":{"tf":1.0},"57":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"0":{"tf":1.0},"40":{"tf":1.0},"60":{"tf":2.0},"71":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"v":{"a":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"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":{},"i":{"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":14,"docs":{"0":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"54":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":2.0},"8":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.7320508075688772},"2":{"tf":1.0},"3":{"tf":1.0},"87":{"tf":2.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"87":{"tf":1.0}}}},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"o":{"b":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"40":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"(":{"\"":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{")":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"33":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"44":{"tf":1.0},"84":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":4,"docs":{"0":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0}}}}},"k":{"df":1,"docs":{"84":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"42":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"y":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"43":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":2.23606797749979},"71":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"3":{"df":1,"docs":{"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"3":{":":{"0":{".":{"2":{".":{"0":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":10,"docs":{"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"69":{"tf":2.449489742783178},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"41":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"42":{"tf":1.0},"67":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"68":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"76":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"i":{"df":8,"docs":{"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":3.0},"73":{"tf":1.0},"75":{"tf":1.7320508075688772}}}}},"df":1,"docs":{"89":{"tf":1.4142135623730951}},"e":{"a":{"d":{"df":1,"docs":{"79":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{">":{"a":{"a":{"df":1,"docs":{"84":{"tf":1.0}}},"df":1,"docs":{"84":{"tf":1.0}}},"d":{"c":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":1,"docs":{"84":{"tf":1.0}}},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":4,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"54":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"68":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}},"t":{"'":{"df":7,"docs":{"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"43":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0}}},"df":3,"docs":{"41":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"40":{"tf":1.0},"69":{"tf":1.0}}}}}},"i":{"b":{"_":{"3":{":":{"0":{".":{"9":{".":{"1":{"df":1,"docs":{"74":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"0":{"tf":1.0},"25":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.4142135623730951},"61":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":2.0}}},"y":{"_":{"3":{":":{"3":{".":{"1":{".":{"3":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"20":{"tf":1.7320508075688772},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":2.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"89":{"tf":2.0}}}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"14":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"3":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"66":{"tf":1.0},"84":{"tf":2.23606797749979},"89":{"tf":1.0}}}}},"o":{"a":{"d":{"df":5,"docs":{"19":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"69":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{":":{"/":{"/":{"/":{"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":{},"e":{"d":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"9":{"df":0,"docs":{},"n":{"/":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"/":{"1":{".":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"0":{"a":{"c":{"1":{"4":{"0":{"9":{"c":{"0":{"1":{"1":{"7":{"a":{"9":{"4":{"9":{"d":{"4":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"9":{"8":{"2":{"df":0,"docs":{},"e":{"0":{"7":{"df":0,"docs":{},"e":{"8":{"5":{"c":{"7":{"d":{"df":0,"docs":{},"e":{"1":{"b":{"6":{"1":{"8":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"44":{"tf":1.0},"60":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":3,"docs":{"81":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"43":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":2,"docs":{"81":{"tf":1.0},"84":{"tf":1.0}}}},"t":{"df":1,"docs":{"89":{"tf":1.0}}},"u":{"a":{"df":1,"docs":{"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1":{"tf":1.0},"47":{"tf":1.0},"56":{"tf":1.0}}}}},"o":{"df":4,"docs":{"1":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"12":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"33":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.4142135623730951},"60":{"tf":2.6457513110645907},"62":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"78":{"tf":2.23606797749979},"89":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"38":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"0":{"tf":1.0},"24":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"42":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"12":{"tf":1.0},"70":{"tf":1.7320508075688772},"76":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":2.0}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"38":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"66":{"tf":1.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"72":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"df":3,"docs":{"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"41":{"tf":1.0},"60":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":1,"docs":{"43":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"10":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"u":{"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"81":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"52":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":4.123105625617661},"84":{"tf":2.8284271247461903}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"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":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"?":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{".":{"7":{"1":{"4":{"3":{"&":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"o":{"d":{"df":2,"docs":{"60":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"63":{"tf":2.449489742783178}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"36":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"43":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"26":{"tf":1.0},"35":{"tf":2.0},"55":{"tf":1.7320508075688772},"64":{"tf":1.0},"84":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"51":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.0},"17":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"12":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":16,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"32":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"35":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"75":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"62":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{":":{"1":{"1":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":1,"docs":{"89":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"e":{"df":18,"docs":{"14":{"tf":1.0},"18":{"tf":1.7320508075688772},"20":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"40":{"tf":1.0},"66":{"tf":2.0},"68":{"tf":2.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"40":{"tf":1.0},"48":{"tf":1.7320508075688772},"59":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":1,"docs":{"43":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":9,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":2.8284271247461903}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}},"w":{"df":11,"docs":{"12":{"tf":1.0},"14":{"tf":2.0},"16":{"tf":1.0},"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":2.23606797749979},"43":{"tf":2.6457513110645907},"44":{"tf":2.23606797749979},"76":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"84":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"40":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"78":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"19":{"tf":1.0},"35":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"w":{"df":4,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"70":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":{"69":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"38":{"tf":1.0},"42":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":2.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"33":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"3":{"tf":1.0},"43":{"tf":1.0},"84":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"k":{"df":1,"docs":{"78":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"84":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"c":{"df":5,"docs":{"57":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":11,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"42":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"77":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"44":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.7320508075688772},"83":{"tf":2.0},"84":{"tf":1.0}},"j":{"d":{"df":0,"docs":{},"k":{"df":3,"docs":{"2":{"tf":1.0},"26":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"2":{"tf":1.0},"68":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"42":{"tf":1.0},"85":{"tf":1.0}}}}},"t":{"df":2,"docs":{"81":{"tf":1.0},"83":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"60":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":11,"docs":{"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"69":{"tf":2.449489742783178},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"74":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":12,"docs":{"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.7320508075688772},"77":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"s":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"26":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"44":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"51":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"33":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.4142135623730951},"70":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":2.0},"89":{"tf":2.8284271247461903}},"e":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"60":{"tf":1.0},"75":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":9,"docs":{"37":{"tf":1.0},"57":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}}},"s":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"68":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"14":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"35":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0}}},"t":{"df":2,"docs":{"26":{"tf":1.0},"69":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"78":{"tf":1.0},"87":{"tf":1.0}}}}},"df":3,"docs":{"43":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"78":{"tf":1.0}}}}},"r":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"12":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"73":{"tf":2.0},"78":{"tf":1.4142135623730951},"89":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"40":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"43":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"14":{"tf":1.0},"42":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":2.0}},"s":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":3,"docs":{"58":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"m":{"df":1,"docs":{"43":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"76":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"11":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}}}},"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":{"2":{"tf":1.4142135623730951}}}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"23":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"12":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"/":{"b":{"a":{"df":0,"docs":{},"r":{"/":{"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":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"58":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"40":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"60":{"tf":2.6457513110645907}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"75":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":2,"docs":{"80":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":3,"docs":{"72":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"41":{"tf":1.0},"47":{"tf":1.7320508075688772},"49":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":34,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"14":{"tf":2.449489742783178},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"36":{"tf":2.0},"43":{"tf":3.3166247903554},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"60":{"tf":1.7320508075688772},"66":{"tf":2.0},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":3.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"83":{"tf":2.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"48":{"tf":1.0},"52":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"14":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"51":{"tf":1.0},"60":{"tf":2.23606797749979},"84":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"0":{"tf":1.0},"41":{"tf":1.0},"60":{"tf":2.0}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"2":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"q":{"df":2,"docs":{"26":{"tf":1.0},"43":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":37,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"84":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"43":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"j":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{")":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"d":{"df":4,"docs":{"19":{"tf":1.0},"38":{"tf":1.4142135623730951},"47":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"34":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"1":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"89":{"tf":1.0}}}},"d":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"69":{"tf":1.7320508075688772},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"84":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"l":{"df":1,"docs":{"78":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"78":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"1":{"tf":1.0}}},"o":{"a":{"d":{"df":8,"docs":{"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"o":{"df":1,"docs":{"89":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"41":{"tf":1.0},"57":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"35":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"(":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":5,"docs":{"50":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"60":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"26":{"tf":1.4142135623730951},"33":{"tf":1.0},"83":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"\"":{":":{"4":{"0":{".":{"7":{"1":{"0":{"3":{"3":{"5":{",":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"43":{"tf":1.0},"84":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"68":{"tf":1.0},"72":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{":":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"d":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"59":{"tf":1.4142135623730951},"66":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":3.0}}}}}}},"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":2.0}}}},"u":{"df":0,"docs":{},"n":{"df":32,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"15":{"tf":2.0},"16":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"41":{"tf":1.0},"43":{"tf":2.0},"46":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":2.23606797749979},"62":{"tf":2.449489742783178},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"71":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"1":{"tf":2.23606797749979},"2":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"6":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"42":{"tf":1.0},"47":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"17":{"tf":2.23606797749979},"64":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"76":{"tf":1.0}}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"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":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"2":{".":{"0":{".":{"0":{"df":2,"docs":{"47":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"43":{"tf":1.0}}}}}}}}}},"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{"b":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"43":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":6,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":10,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951}}}}}}}},"df":82,"docs":{"0":{"tf":2.6457513110645907},"1":{"tf":2.8284271247461903},"10":{"tf":2.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":2.23606797749979},"36":{"tf":2.23606797749979},"37":{"tf":1.4142135623730951},"38":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"4":{"tf":2.0},"40":{"tf":1.0},"41":{"tf":2.6457513110645907},"42":{"tf":1.7320508075688772},"43":{"tf":3.605551275463989},"44":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"46":{"tf":2.8284271247461903},"47":{"tf":3.0},"48":{"tf":2.8284271247461903},"49":{"tf":2.23606797749979},"5":{"tf":2.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"53":{"tf":2.0},"54":{"tf":3.7416573867739413},"55":{"tf":2.23606797749979},"56":{"tf":2.449489742783178},"57":{"tf":1.7320508075688772},"58":{"tf":2.8284271247461903},"6":{"tf":2.23606797749979},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":2.449489742783178},"80":{"tf":2.6457513110645907},"81":{"tf":3.3166247903554},"82":{"tf":1.4142135623730951},"83":{"tf":4.0},"84":{"tf":2.449489742783178},"85":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":3.605551275463989},"9":{"tf":2.0}},"n":{"df":5,"docs":{"48":{"tf":2.23606797749979},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}},"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"3":{".":{"df":0,"docs":{},"g":{"8":{"df":2,"docs":{"43":{"tf":1.0},"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"36":{"tf":1.0},"43":{"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":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"c":{"df":2,"docs":{"40":{"tf":2.0},"83":{"tf":1.0}}},"df":29,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":1.0},"26":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":2.8284271247461903},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":3.605551275463989},"44":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":2.0},"73":{"tf":1.0},"76":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":3.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":2.0},"83":{"tf":2.0},"84":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":21,"docs":{"0":{"tf":1.0},"16":{"tf":2.449489742783178},"17":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":2.449489742783178},"42":{"tf":1.0},"43":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"43":{"tf":1.0}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"60":{"tf":1.0},"62":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.7320508075688772}},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"8":{"df":2,"docs":{"36":{"tf":1.0},"43":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":10,"docs":{"33":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"89":{"tf":1.0}},"m":{"df":1,"docs":{"78":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"43":{"tf":2.0},"60":{"tf":1.0},"62":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"d":{"df":3,"docs":{"26":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":4,"docs":{"25":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"26":{"tf":1.0},"43":{"tf":2.449489742783178},"48":{"tf":1.4142135623730951},"49":{"tf":2.0},"50":{"tf":1.0},"52":{"tf":2.23606797749979},"53":{"tf":1.7320508075688772},"54":{"tf":2.23606797749979},"56":{"tf":1.7320508075688772},"58":{"tf":2.0},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":2.6457513110645907},"83":{"tf":2.23606797749979}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"14":{"tf":1.0},"17":{"tf":2.0},"81":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.7320508075688772}}}}}}},"t":{"df":22,"docs":{"14":{"tf":1.4142135623730951},"16":{"tf":2.449489742783178},"17":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"34":{"tf":2.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":2.0},"75":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"[":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"36":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":15,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.4142135623730951},"35":{"tf":1.0},"43":{"tf":1.4142135623730951},"46":{"tf":1.0},"54":{"tf":2.449489742783178},"58":{"tf":1.7320508075688772},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"81":{"tf":1.0},"83":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":1,"docs":{"80":{"tf":1.0}}}},"w":{"df":3,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":4,"docs":{"43":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"58":{"tf":1.0}}}}}},"df":2,"docs":{"43":{"tf":1.0},"56":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"68":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"0":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"75":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"51":{"tf":1.0},"75":{"tf":1.0}}}}}},"l":{"df":1,"docs":{"89":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"40":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"38":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"4":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":2.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"36":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":15,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.0},"17":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":3.3166247903554},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.23606797749979}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":5,"docs":{"14":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{"8":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"78":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"/":{"df":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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"43":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"48":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"41":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":85,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":2.8284271247461903},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":2.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":2.0},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"9":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"1":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"64":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"12":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"42":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"4":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{".":{"_":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"33":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"75":{"tf":1.0}}},"df":17,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"66":{"tf":2.0},"67":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":2.23606797749979},"79":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"60":{"tf":2.23606797749979},"71":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":4.123105625617661}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"38":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"81":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":11,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":5,"docs":{"54":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"43":{"tf":1.0},"52":{"tf":1.0},"76":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"df":14,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":2.23606797749979},"60":{"tf":3.605551275463989},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"[":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"44":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"m":{"df":1,"docs":{"3":{"tf":1.0}},"p":{"df":1,"docs":{"33":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"36":{"tf":1.0},"43":{"tf":2.6457513110645907},"44":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"34":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"n":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"35":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"24":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"55":{"tf":1.0}}},"df":25,"docs":{"0":{"tf":1.0},"20":{"tf":2.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"24":{"tf":2.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":2.23606797749979},"31":{"tf":2.0},"32":{"tf":1.7320508075688772},"35":{"tf":1.0},"43":{"tf":1.7320508075688772},"60":{"tf":2.23606797749979},"63":{"tf":2.23606797749979},"64":{"tf":1.4142135623730951},"69":{"tf":2.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"78":{"tf":2.23606797749979},"79":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":2.0},"84":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"35":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"35":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"85":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"84":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"43":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"g":{"df":2,"docs":{"41":{"tf":1.0},"78":{"tf":1.0}}},"k":{"df":1,"docs":{"69":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"s":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"78":{"tf":1.0},"84":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"68":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":9,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}},"e":{"_":{"a":{"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":6,"docs":{"12":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"44":{"tf":1.0}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"42":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":7,"docs":{"0":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"49":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"3":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"df":11,"docs":{"20":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":2.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"43":{"tf":2.6457513110645907},"69":{"tf":3.1622776601683795},"72":{"tf":1.4142135623730951},"73":{"tf":2.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"69":{"tf":2.0},"73":{"tf":1.4142135623730951}}}}}},"v":{"df":3,"docs":{"43":{"tf":1.7320508075688772},"69":{"tf":3.1622776601683795},"73":{"tf":1.7320508075688772}}}}}}}},"p":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"41":{"tf":1.0},"47":{"tf":1.0},"73":{"tf":1.7320508075688772},"76":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"79":{"tf":1.0}}}},"n":{"df":1,"docs":{"63":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"40":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"74":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":2,"docs":{"26":{"tf":1.0},"64":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"84":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":2,"docs":{"80":{"tf":1.0},"85":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":14,"docs":{"26":{"tf":1.4142135623730951},"36":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":2.449489742783178},"74":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.7320508075688772},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"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":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"i":{"c":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"89":{"tf":2.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"33":{"tf":1.7320508075688772}}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"36":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"69":{"tf":1.7320508075688772}}}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"42":{"tf":1.0}}}},"t":{"df":6,"docs":{"12":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.4142135623730951}}}}}},"x":{"df":2,"docs":{"54":{"tf":1.0},"9":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"43":{"tf":1.0},"60":{"tf":1.0},"89":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":8,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.0},"84":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":49,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"60":{"tf":2.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"83":{"tf":3.872983346207417},"84":{"tf":3.605551275463989},"85":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":2.23606797749979},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"9":{"df":0,"docs":{},"n":{"/":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"/":{"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":1,"docs":{"58":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}},"x":{"df":1,"docs":{"83":{"tf":1.0}}}},"v":{"2":{"df":1,"docs":{"82":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"26":{"tf":2.449489742783178},"27":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"66":{"tf":1.0},"69":{"tf":4.242640687119285},"73":{"tf":2.0},"75":{"tf":2.0}},"u":{"df":10,"docs":{"16":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"60":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"42":{"tf":1.0},"69":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"b":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":20,"docs":{"1":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"34":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":2.449489742783178},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.7320508075688772},"62":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":2.449489742783178},"73":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.7320508075688772},"85":{"tf":1.0}}}}}}}},"i":{"a":{"df":4,"docs":{"0":{"tf":1.0},"42":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"60":{"tf":1.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"m":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"43":{"tf":1.0}}}},"z":{"df":1,"docs":{"59":{"tf":1.0}}}},"m":{"df":1,"docs":{"26":{"tf":1.0}}},"s":{"df":2,"docs":{"0":{"tf":1.0},"81":{"tf":2.0}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"83":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"17":{"tf":2.6457513110645907},"84":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"y":{"df":3,"docs":{"53":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"33":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.4142135623730951}}}}}}},"b":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":6,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"43":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"11":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"43":{"tf":1.0},"58":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"49":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"n":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"54":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":19,"docs":{"33":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":3,"docs":{"36":{"tf":1.0},"40":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"23":{"tf":1.4142135623730951},"51":{"tf":1.0},"72":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"37":{"tf":1.0},"43":{"tf":1.0},"76":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"x":{"d":{"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":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"23":{"tf":1.0}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"42":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"26":{"tf":1.0},"33":{"tf":1.4142135623730951}}}},"u":{"'":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.7320508075688772}}}},"r":{"df":3,"docs":{"70":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"v":{"df":2,"docs":{"57":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"q":{"df":1,"docs":{"89":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}},"z":{"df":1,"docs":{"54":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"41":{"tf":1.0},"51":{"tf":2.23606797749979},"83":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"title":{"root":{"a":{"d":{"d":{"df":3,"docs":{"20":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"15":{"tf":1.0}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"65":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"35":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"a":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":10,"docs":{"19":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"13":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"29":{"tf":1.0},"61":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"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":1,"docs":{"79":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"22":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"12":{"tf":1.0},"43":{"tf":1.0},"7":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.0},"66":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"25":{"tf":1.0},"32":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"57":{"tf":1.0}}}},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"38":{"tf":1.0},"72":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"8":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":1,"docs":{"32":{"tf":1.0}}}},"p":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"80":{"tf":1.0}},"e":{"a":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}}}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"71":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"25":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}}},"y":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"20":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"89":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"24":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"81":{"tf":1.0},"84":{"tf":1.0}}}},"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":{"7":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"35":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"18":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"w":{"df":2,"docs":{"36":{"tf":1.0},"43":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}},"s":{"df":1,"docs":{"86":{"tf":1.0}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"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":{"2":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"10":{"tf":1.0},"18":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":5,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"62":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"t":{"df":24,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"16":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0}},"n":{"df":4,"docs":{"48":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"26":{"tf":1.0},"72":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"16":{"tf":1.0},"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"49":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"t":{"df":2,"docs":{"16":{"tf":1.0},"68":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"85":{"tf":1.0},"86":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"16":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"12":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"86":{"tf":1.0}},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"38":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"b":{"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":4,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"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":2,"docs":{"20":{"tf":1.0},"30":{"tf":1.0}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}}}}}},"s":{"df":7,"docs":{"26":{"tf":1.0},"33":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"47":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"51":{"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