Hello World!
-Now that you have successfully installed Haskall, let's write our first program with it. You will write a program that prints Hello World!
on the terminal.
Now that you have successfully installed Hascal, let's write our first program with it. You will write a program that prints Hello World!
on the terminal.
Creating a project directory
-You can wite your hascal programs every where but We suggest that you create a directory for your project.
-First create a directory in your home directory(or anywhere else):
+You can write your Hascal programs every where but, we suggest that you create a directory for your project.
+At first, create a directory in your home directory(or anywhere else):
mkdir hello_world
cd hello_wrold
Writing the code
Next make a new file and name it main.has
. Hascal files should end with .has
extension.
Now open your code editor(If you are using vscode
install hascal extension for better coding from this link) and write following code in main.has
:
Now open your code editor (If you are using vscode
install hascal extension for better coding from this link) and write the following code in main.has
:
function main() : int {
print("Hello World!")
return 0
}
-Save the file, and back to terminal and enter following command to build your program :
+Save the file, and return to the terminal and enter the following command to build your program :
hascal main.has
Now run the generated excutable file :
@@ -171,24 +171,24 @@Writing the
Congratulations - you just wrote and executed your first Hascal program!
Reviewing the code
-Let's review the our simple program. Here's the first piece of the program :
+Let's review our simple program. Here's the first piece of the program:
function main() : int {
}
-These lines defines a function that returns an integer number. The main
function is the entry point of your program and it always should return int
(an integer), if there were parameters, they would go inside the parentheses, ()
.
-Also, note function statements should be in {}
and you write function codes inside {}
.
+These lines define a function that returns an integer number. The main
function is the entry point of your program and it should always return int
(an integer). If there were parameters, they would go inside the parentheses, ()
.
+Also, note that function statements should be in {}
and you can write function codes inside {}
.
Inside the main
function is the following code :
print("Hello World!")
This code print the passed arguments, you can pass more parameters :
print("Hello World!",42,3.14)
-After the calling print
command is following statemetn :
+After the calling print
command, there is the following statement :
return 0
-It returns 0
at end of the function, every function that returns a value(declared with :
after ()
in function declaration) should return a value with mentioned type.
-Returning the 0
value in main function tell the OS that your program executed successfully.
+It returns 0
at the end of the function, every function that returns a value(declared with :
after ()
in a function declaration) should return a value corresponding to the type.
+Returning the 0
value in main function tell the OS that your program has executed successfully.
function main() : int {
}
main
function is the entry point of your program and it always should return int
(an integer), if there were parameters, they would go inside the parentheses, ()
.{}
and you write function codes inside {}
.main
function is the entry point of your program and it should always return int
(an integer). If there were parameters, they would go inside the parentheses, ()
.{}
and you can write function codes inside {}
.main
function is the following code :print("Hello World!")
print("Hello World!",42,3.14)
print
command is following statemetn :print
command, there is the following statement :return 0
0
at end of the function, every function that returns a value(declared with :
after ()
in function declaration) should return a value with mentioned type. 0
value in main function tell the OS that your program executed successfully.0
at the end of the function, every function that returns a value(declared with :
after ()
in a function declaration) should return a value corresponding to the type.0
value in main function tell the OS that your program has executed successfully.Hascal Documentation
Project Manager
-Hascal has a builtin build system and project manager. This tool builds and runs your project, installs dependencies.
+Hascal has a builtin build system and project manager. This tool builds and runs your project, and installs dependencies.
Creating a new project
Let's create a new project and compare it with the Hello World example in previous chapter.
To create a project you should create a directory for your project :
diff --git a/docs/latest/print.html b/docs/latest/print.html index b9ebd94..a4d8b0f 100644 --- a/docs/latest/print.html +++ b/docs/latest/print.html @@ -145,7 +145,7 @@Hascal Documentation
Overview
Introduction
-Hascal is a general-purpose open source programming language that makes it easy to build simple,optimal, reliable, and efficient software. More features of Hascal :
+Hascal is a general purpose and open source programming language designed to build optimal, maintainable, reliable, and efficient software. More features of Hascal :
- Easy to use and easy to learn @@ -194,24 +194,24 @@
Windows Users > make windows
Now your Hascal compiler is ready to use in dist
folder, you can add it to $PATH
.
NOTE: The latest version of Hascal should always be used, older versions have bugs when running binary versions of Hascal.
+NOTE: The latest version of Hascal should always be used. Old versions have bugs when running binary versions of Hascal.
Hello World!
-Now that you have successfully installed Haskall, let's write our first program with it. You will write a program that prints Hello World!
on the terminal.
Now that you have successfully installed Hascal, let's write our first program with it. You will write a program that prints Hello World!
on the terminal.
Creating a project directory
-You can wite your hascal programs every where but We suggest that you create a directory for your project.
-First create a directory in your home directory(or anywhere else):
+You can write your Hascal programs every where but, we suggest that you create a directory for your project.
+At first, create a directory in your home directory(or anywhere else):
mkdir hello_world
cd hello_wrold
Writing the code
Next make a new file and name it main.has
. Hascal files should end with .has
extension.
Now open your code editor(If you are using vscode
install hascal extension for better coding from this link) and write following code in main.has
:
Now open your code editor (If you are using vscode
install hascal extension for better coding from this link) and write the following code in main.has
:
function main() : int {
print("Hello World!")
return 0
}
-Save the file, and back to terminal and enter following command to build your program :
+Save the file, and return to the terminal and enter the following command to build your program :
hascal main.has
Now run the generated excutable file :
@@ -224,26 +224,26 @@Writing the
Congratulations - you just wrote and executed your first Hascal program!
Reviewing the code
-Let's review the our simple program. Here's the first piece of the program :
+Let's review our simple program. Here's the first piece of the program:
function main() : int {
}
-These lines defines a function that returns an integer number. The main
function is the entry point of your program and it always should return int
(an integer), if there were parameters, they would go inside the parentheses, ()
.
-Also, note function statements should be in {}
and you write function codes inside {}
.
+These lines define a function that returns an integer number. The main
function is the entry point of your program and it should always return int
(an integer). If there were parameters, they would go inside the parentheses, ()
.
+Also, note that function statements should be in {}
and you can write function codes inside {}
.
Inside the main
function is the following code :
print("Hello World!")
This code print the passed arguments, you can pass more parameters :
print("Hello World!",42,3.14)
-After the calling print
command is following statemetn :
+After the calling print
command, there is the following statement :
return 0
-It returns 0
at end of the function, every function that returns a value(declared with :
after ()
in function declaration) should return a value with mentioned type.
-Returning the 0
value in main function tell the OS that your program executed successfully.
+It returns 0
at the end of the function, every function that returns a value(declared with :
after ()
in a function declaration) should return a value corresponding to the type.
+Returning the 0
value in main function tell the OS that your program has executed successfully.
Project Manager
-Hascal has a builtin build system and project manager. This tool builds and runs your project, installs dependencies.
+Hascal has a builtin build system and project manager. This tool builds and runs your project, and installs dependencies.
Creating a new project
Let's create a new project and compare it with the Hello World example in previous chapter.
To create a project you should create a directory for your project :
diff --git a/docs/latest/searchindex.js b/docs/latest/searchindex.js
index 30fa039..908c911 100644
--- a/docs/latest/searchindex.js
+++ b/docs/latest/searchindex.js
@@ -1 +1 @@
-Object.assign(window.search, {"doc_urls":["index.html#overview","index.html#introduction","index.html#standard-library-documentation","index.html#contributing","lang/0_install.html#installation","lang/0_install.html#nix-usersrecommended","lang/0_install.html#windows-users","lang/1_hello_world.html#hello-world","lang/1_hello_world.html#creating-a-project-directory","lang/1_hello_world.html#writing-the-code","lang/1_hello_world.html#reviewing-the-code","lang/2_project_manager.html#project-manager","lang/2_project_manager.html#creating-a-new-project","lang/2_project_manager.html#building-a-project","lang/2_project_manager.html#running-a-project","lang/3_config.html#configure-the-compiler","lang/4_guessing_game.html#write-a-guessing-game","lang/5_comments.html#comments","lang/6_types.html#primitive-types","lang/7_00_variables.html#variables","lang/7_00_variables.html#non-nullable-and-nullable","lang/7_00_variables.html#pointers","lang/7_00_variables.html#static-variables","lang/7_01_numbers.html#numbers","lang/7_02_strings.html#strings","lang/7_03_arrays.html#arrays","lang/7_04_type_compatibility.html#type-compatibility","lang/8_conditional_statements.html#conditional-statements","lang/8_conditional_statements.html#if","lang/8_conditional_statements.html#else","lang/8_conditional_statements.html#else-if","lang/8_conditional_statements.html#and-and-or-and-not","lang/8_conditional_statements.html#conditional-operators","lang/9_loops.html#loops","lang/10_functions.html#functions","lang/10_functions.html#calling-a-function","lang/10_functions.html#function-overloading","lang/10_functions.html#passing-function-as-parameter","lang/10_functions.html#function-decorators","lang/11_importing.html#importing--creating-modules","lang/11_importing.html#importing-a-module","lang/11_importing.html#importing-multiple-modules","lang/11_importing.html#creating-a-module","lang/12_structs.html#structures","lang/12_structs.html#structures-as-return-values","lang/12_structs.html#structures-as-arguments","lang/12_structs.html#structure-inheritance","lang/13_memory_management.html#memory-management","lang/13_memory_management.html#allocation","lang/13_memory_management.html#reallocation","lang/13_memory_management.html#deallocation","lang/13_memory_management.html#accessing-memory","lang/13_memory_management.html#critical-notes","lang/14_interfacing_with_cpp.html#interfacing-with-c","lang/14_interfacing_with_cpp.html#inline-c-code","lang/14_interfacing_with_cpp.html#externing-functions","lang/14_interfacing_with_cpp.html#include-c-headers","lang/14_interfacing_with_cpp.html#accessing-to-values-and-types-in-inline-c-code","stdlib.html#standard-library-documentation","hpm.html#package-manager","hpm.html#installing-a-package","hpm.html#updating-a-package","hpm.html#listing-packages","ide.html#ide-integration","ROADMAP.html#hascals-roadmap","ROADMAP.html#language","ROADMAP.html#standard-library","ROADMAP.html#package-manager","CHANGELOG.html#hascals-changelog"],"index":{"documentStore":{"docInfo":{"0":{"body":0,"breadcrumbs":2,"title":1},"1":{"body":44,"breadcrumbs":2,"title":1},"10":{"body":83,"breadcrumbs":4,"title":2},"11":{"body":12,"breadcrumbs":4,"title":2},"12":{"body":81,"breadcrumbs":5,"title":3},"13":{"body":15,"breadcrumbs":4,"title":2},"14":{"body":13,"breadcrumbs":4,"title":2},"15":{"body":86,"breadcrumbs":4,"title":2},"16":{"body":1,"breadcrumbs":6,"title":3},"17":{"body":16,"breadcrumbs":2,"title":1},"18":{"body":37,"breadcrumbs":3,"title":2},"19":{"body":25,"breadcrumbs":2,"title":1},"2":{"body":5,"breadcrumbs":4,"title":3},"20":{"body":62,"breadcrumbs":4,"title":3},"21":{"body":64,"breadcrumbs":2,"title":1},"22":{"body":22,"breadcrumbs":3,"title":2},"23":{"body":62,"breadcrumbs":3,"title":1},"24":{"body":146,"breadcrumbs":3,"title":1},"25":{"body":79,"breadcrumbs":3,"title":1},"26":{"body":38,"breadcrumbs":5,"title":2},"27":{"body":9,"breadcrumbs":4,"title":2},"28":{"body":15,"breadcrumbs":2,"title":0},"29":{"body":17,"breadcrumbs":2,"title":0},"3":{"body":35,"breadcrumbs":2,"title":1},"30":{"body":22,"breadcrumbs":2,"title":0},"31":{"body":62,"breadcrumbs":2,"title":0},"32":{"body":84,"breadcrumbs":4,"title":2},"33":{"body":38,"breadcrumbs":2,"title":1},"34":{"body":50,"breadcrumbs":2,"title":1},"35":{"body":24,"breadcrumbs":3,"title":2},"36":{"body":32,"breadcrumbs":3,"title":2},"37":{"body":87,"breadcrumbs":4,"title":3},"38":{"body":27,"breadcrumbs":3,"title":2},"39":{"body":8,"breadcrumbs":6,"title":3},"4":{"body":13,"breadcrumbs":2,"title":1},"40":{"body":17,"breadcrumbs":5,"title":2},"41":{"body":21,"breadcrumbs":6,"title":3},"42":{"body":66,"breadcrumbs":5,"title":2},"43":{"body":52,"breadcrumbs":2,"title":1},"44":{"body":8,"breadcrumbs":4,"title":3},"45":{"body":10,"breadcrumbs":3,"title":2},"46":{"body":22,"breadcrumbs":3,"title":2},"47":{"body":27,"breadcrumbs":4,"title":2},"48":{"body":36,"breadcrumbs":3,"title":1},"49":{"body":26,"breadcrumbs":3,"title":1},"5":{"body":19,"breadcrumbs":3,"title":2},"50":{"body":12,"breadcrumbs":3,"title":1},"51":{"body":13,"breadcrumbs":4,"title":2},"52":{"body":36,"breadcrumbs":4,"title":2},"53":{"body":8,"breadcrumbs":4,"title":2},"54":{"body":30,"breadcrumbs":5,"title":3},"55":{"body":15,"breadcrumbs":4,"title":2},"56":{"body":76,"breadcrumbs":5,"title":3},"57":{"body":50,"breadcrumbs":8,"title":6},"58":{"body":5,"breadcrumbs":6,"title":3},"59":{"body":9,"breadcrumbs":5,"title":2},"6":{"body":32,"breadcrumbs":3,"title":2},"60":{"body":29,"breadcrumbs":5,"title":2},"61":{"body":12,"breadcrumbs":5,"title":2},"62":{"body":35,"breadcrumbs":5,"title":2},"63":{"body":2,"breadcrumbs":4,"title":2},"64":{"body":0,"breadcrumbs":3,"title":2},"65":{"body":61,"breadcrumbs":2,"title":1},"66":{"body":2,"breadcrumbs":3,"title":2},"67":{"body":0,"breadcrumbs":3,"title":2},"68":{"body":766,"breadcrumbs":4,"title":2},"7":{"body":14,"breadcrumbs":4,"title":2},"8":{"body":17,"breadcrumbs":5,"title":3},"9":{"body":66,"breadcrumbs":4,"title":2}},"docs":{"0":{"body":"","breadcrumbs":"Overview » Overview","id":"0","title":"Overview"},"1":{"body":"Hascal is a general-purpose open source programming language that makes it easy to build simple,optimal, reliable, and efficient software. More features of Hascal : Easy to use and easy to learn Multi-paradigm Null safety by default Fast and powerful Inspired by Swift, Pascal Compiles to C++ Compatible with C\\C++\\Obj-C Builtin compile time FFI system Built-in HTTP Library","breadcrumbs":"Overview » Introduction","id":"1","title":"Introduction"},"10":{"body":"Let's review the our simple program. Here's the first piece of the program : function main() : int { } These lines defines a function that returns an integer number. The main function is the entry point of your program and it always should return int(an integer), if there were parameters, they would go inside the parentheses, (). Also, note function statements should be in {} and you write function codes inside {}. Inside the main function is the following code : print(\"Hello World!\") This code print the passed arguments, you can pass more parameters : print(\"Hello World!\",42,3.14) After the calling print command is following statemetn : return 0 It returns 0 at end of the function, every function that returns a value(declared with : after () in function declaration) should return a value with mentioned type. Returning the 0 value in main function tell the OS that your program executed successfully.","breadcrumbs":"Hello World! » Reviewing the code","id":"10","title":"Reviewing the code"},"11":{"body":"Hascal has a builtin build system and project manager. This tool builds and runs your project, installs dependencies.","breadcrumbs":"Project Manager » Project Manager","id":"11","title":"Project Manager"},"12":{"body":"Let's create a new project and compare it with the Hello World example in previous chapter. To create a project you should create a directory for your project : $ mkdir hello_world_2\n$ cd hello_world_2 Now we create a new project with following command : $ hascal init After running above command, you’ll see Hascal has generated two files and one directory for us: a config.json file, a .gitignore file and a src directory with a app.has file inside. config.json : { \"filename\": \"src/app.has\", \"outfile\": \"build/app\", } The filename field contains your main file that contains your entry function(main) and outfile field is output path of excutable file. src/app.has : function main():int{ print(\"Hello World!\") return 0\n} The generated Hascal file contains Hello World! program, you can edit it.","breadcrumbs":"Project Manager » Creating a new project","id":"12","title":"Creating a new project"},"13":{"body":"You can build the project with following command : $ hascal build Excutable file will generate in build directory and you can run it with following command : $ ./build/app","breadcrumbs":"Project Manager » Building a project","id":"13","title":"Building a project"},"14":{"body":"To run the project, you can use run command : $ hascal run\nHello World! That builds excutable file and runs it.","breadcrumbs":"Project Manager » Running a project","id":"14","title":"Running a project"},"15":{"body":"You can use config.json file to configure your Hascal compiler. The following configuration options are available: filename : your main file name, if you set it, you will no longer need to pass the file name to the compiler. compiler : your c++ compiler name(e.g : g++,clang++) optimize : optimize level(0,1,2,3)(default : no optimize, e.g: -O2) flags : custom flags(e.g:[\"-pthread\"]) c++_version : your c++ standard(e.g:c++17 or c++20), note: c++ version must be greater than or equal to c++17 and compiler must support c++17 compiler_output : if you want to see c++ compiler output, set this to true c++_out : if you want to see generated c++ code, set this to true, the generated c++ code are in your_filename.cc fil. only_compile if you want only to compile and not link program, set this to true. no_std : if it is true, the runtime library will not link with your code(you will not be able to use builtin functions).","breadcrumbs":"Configure the compiler » Configure the compiler","id":"15","title":"Configure the compiler"},"16":{"body":"TODO","breadcrumbs":"Write a guessing game » Write a guessing game","id":"16","title":"Write a guessing game"},"17":{"body":"Comments are used to document code and to explain what the code does, they are not executed. // This is a single line comment /*\nThis is a multi-line comment\nThis is a multi-line comment\n*/","breadcrumbs":"Comments » Comments","id":"17","title":"Comments"},"18":{"body":"The following types are primitive: bool // boolean value string // string literal int8 uint8 // 8-bit integer\nint16 uint16 // 16-bit integer\nint int32 uint32 // 32-bit integer\nint64 uint64 // 64-bit integer float // floating point double // double floating point","breadcrumbs":"Types » Primitive types","id":"18","title":"Primitive types"},"19":{"body":"A variable is a named storage for a value. Variables are declared using the var keyword : var foo : int = 1 Also you can declare a variable without type, in this case, the type will be inferred by the value assigned to it: var foo = 1","breadcrumbs":"Variables » Variables","id":"19","title":"Variables"},"2":{"body":"Standard Library Documentation available here .","breadcrumbs":"Overview » Standard Library Documentation","id":"2","title":"Standard Library Documentation"},"20":{"body":"Null safety is a feature that allows you to declare that a variable can be null or not null, and Hascal uses this feature to make sure that your code is safe. Hascal's variables and constants are non-nullable by default that means that they cannot be null(NULL) and you can't assign NULL to them and you should assign a value to them when you declare them . var foo : int = 1 // non-nullable\nvar foo_error : int // error : nullable variable must be assigned a value But you can make variables and constants nullable by adding ? to their type: var bar : int? = 1 // nullable so you can use NULL to set a variable to null : bar = NULL // ok","breadcrumbs":"Variables » Non nullable and nullable","id":"20","title":"Non nullable and nullable"},"21":{"body":"Pointers are a way to access the memory address of a variable. You can declare a pointer using the ^ operator after the type: var foo : int^? NOTE: pointers are non-nullable by default, use ? to make it nullable: You use cast to assign a value to a pointer: foo = (int^)1 Finally, you can use the ^ operator to access the value stored in a pointer: var foo : int^ = (int^)1\nprint(^foo) // 1 NOTE : We recommend you to always allocate pointers with new keyword and deallocate with delete keyword, for more information go to Memory management chapter . NOTE: Currently only one level of pointers are supported.","breadcrumbs":"Variables » Pointers","id":"21","title":"Pointers"},"22":{"body":"Static variables are variables that are declared outside of a function and are accessible from anywhere in the program. Static variables are declared using the static keyword before the type: var foo : static int = 1","breadcrumbs":"Variables » Static variables","id":"22","title":"Static variables"},"23":{"body":"Numbers are either integers or floating point numbers. You can declare a number using the following types: int8 uint8 // 8-bit integer\nint16 uint16 // 16-bit integer\nint int32 uint32 // 32-bit integer\nint64 uint64 // 64-bit integer float // floating point double // double floating point So you can use the following operators to perform arithmetic operations: + : addition - : subtraction * : multiplication / : division See the following example: var a : int = 123\nvar b : float = 1.23\nvar c : double = 1.2313213215648789798","breadcrumbs":"Variables » Numbers » Numbers","id":"23","title":"Numbers"},"24":{"body":"Strings are a sequence of characters. You can declare a string using the string keyword: var foo : string = \"Hello World\" You can use the + operator to concatenate strings: var foo : string = \"Hello\" + \" World\" And you can use the [] operator to access a character in a string: var foo : string = \"Hello\"\nprint(foo[1]) // 'e' Note: type of accessed character is char Note: the first character in a string is at index 0. With len function you can get the length of a string: var foo : string = \"Hello\"\nprint(len(foo)) // 5 Note: len function is a built-in function. Escape sequences You can use escape sequences to print special characters: var foo : string = \"Hello\\tWorld\"\nprint(foo) // Hello World The following escape sequences are supported: \\n : newline \\t : tab \\r : carriage return \\\\ : backslash \\' : single quote \\\" : double quote \\? : question mark \\a : bell \\b : backspace \\f : form feed \\v : vertical tab \\0 : null character \\x____ : hexadecimal character \\u____ : unicode character \\U____ : unicode character \\_____ : arbitrary octal value Note: _____ means you should specify the id of the character you want to print. Reverse a string You can reverse a string by using the string_reverse function in the strings package: use strings function main() { var foo : string = \"Hello World\" print(string_reverse(foo)) // dlroW olleH\n}","breadcrumbs":"Variables » Strings » Strings","id":"24","title":"Strings"},"25":{"body":"Arrays are collections of data elements of the same type. They can be represented by a list of elements surrounded by brackets. The elements can be accessed by appending an index (starting with 0) in brackets to the array variable: Arrays declare like following: var foo : [int] = [1,2,3]\nvar bar : [string] = [\"Hello\", \"World\"] You can use the [] operator to access an element in an array: var foo : [int] = [1,2,3]\nprint(foo[1]) // 2 And you can assign a value to an array element: var foo : [int] = [1,2,3]\nfoo[1] = 4\nprint(foo[1]) // 4 With append built-in function you can append an element to an array: var foo : [int] = [1,2,3]\nfoo.append(4)\nprint(foo[3]) // 4 And you can get the length of an array with the len built-in function: var foo : [int] = [1,2,3]\nprint(len(foo)) // 3","breadcrumbs":"Variables » Arrays » Arrays","id":"25","title":"Arrays"},"26":{"body":"Type compatibility is very close to automatic or implicit type conversion. The type compatibility is being able to use two types together without modification and being able to subsititute one for the other without modification. Compatible types are: int (and its subtypes like uint8,etc) and float. int(and its subtypes like uint8,etc) and double. float and double Note: strings are not compatible with characters.","breadcrumbs":"Variables » Type compatibility » Type compatibility","id":"26","title":"Type compatibility"},"27":{"body":"Conditional statements are used to execute a block of code if a condition is true or false.","breadcrumbs":"Conditional statements » Conditional statements","id":"27","title":"Conditional statements"},"28":{"body":"You can use the if keyword to execute a block of code, if a condition is true: var foo : int = 1\nif foo == 1 { print(\"foo is 1\")\n}","breadcrumbs":"Conditional statements » If","id":"28","title":"If"},"29":{"body":"You can use the else keyword to execute a block of code, if a condition is false: var foo : int = 1\nif foo == 1 { print(\"foo is 1\")\n} else { print(\"foo is not 1\")\n}","breadcrumbs":"Conditional statements » Else","id":"29","title":"Else"},"3":{"body":"We welcome contributions of all kinds. You can contribute to this book by opening an issue or forking and sending a pull request to the main Hascal repository. Knowing what people use this book for the most helps direct our attention to making those sections the best that they can be. We also want the reference to be as normative as possible, so if you see anything that is wrong, please also file an issue.","breadcrumbs":"Overview » Contributing","id":"3","title":"Contributing"},"30":{"body":"You can use the else if statement to execute a block of code, if else if a condition is true: var foo : int = 1\nif foo == 1 { print(\"foo is 1\")\n} else if foo == 2 { print(\"foo is 2\")\n} else { print(\"foo is not 1 or 2\")\n}","breadcrumbs":"Conditional statements » Else if","id":"30","title":"Else if"},"31":{"body":"You can use the and keyword to execute a block of code, if all conditions are true: var foo : int = 1\nvar bar : int = 2\nif foo == 1 and bar == 2 { print(\"foo is 1 and bar is 2\")\n} You can use the or keyword to execute a block of code, if at least one condition is true: var foo : int = 1\nvar bar : int = 2\nif foo == 1 or bar == 2 { print(\"foo is 1 or bar is 2\")\n} You can use the not keyword to execute a block of code, if a condition is false: var foo : int = 1\nif not foo == 1 { print(\"foo is not 1\")\n}","breadcrumbs":"Conditional statements » and and or and not","id":"31","title":"and and or and not"},"32":{"body":"Operator Description Example == Returns true if the operands are equal. var1 == var2 != Returns true if the operands are not equal. var1 != var2 > Returns true if the left operand is greater than the right operand. var1 > var2 >= Returns true if the left operand is greater than or equal to the right operand. var1 >= var2 < Returns true if the left operand is less than the right operand. var1 < var2 <= Returns true if the left operand is less than or equal to the right operand. var1 <= var2 and Returns true if the left operand and right operand are true var1 == 1 and var2 == 2 or Returns true if the left operand or right operand are true var1 == 1 or var2 == 2 not Returns true if the operand are false or if the operand is true returns false not true","breadcrumbs":"Conditional statements » Conditional Operators","id":"32","title":"Conditional Operators"},"33":{"body":"You can use the while keyword to execute a block of code, if a condition is true: var foo : int = 1\nwhile foo == 1 { print(\"foo is 1\") foo = 2\n} The for keyword is used to execute a block of code for a number of times: for i in range(0, 10) { print(i)\n} Also you can use the for keyword for iterating over an array: var foo : [int] = [1,2,3]\nfor i in foo { print(i)\n}","breadcrumbs":"Loops » Loops","id":"33","title":"Loops"},"34":{"body":"Functions are a way to group code that can be called to perform a specific task. You can declare a function using the function keyword: function foo() { print(\"Hello World\")\n} Also your function block should be outside of a function. Your function can have parameters and return a value. You can declare parameters and return type, like variable declarations: function add(x:int,y:int): int { return x + y\n} In the example above, x and y are parameters and their type(int) is your return type. Note: you can use ? to make a parameter nullable.","breadcrumbs":"Functions » Functions","id":"34","title":"Functions"},"35":{"body":"You can call a function by using the function name followed by parentheses: foo() If you want to pass some arguments to your function, you can use them in the parentheses(separate with ,): foo(1,2,3) Also you can assign the return value of a function to a variable: var foo : int = add(1,2)","breadcrumbs":"Functions » Calling a function","id":"35","title":"Calling a function"},"36":{"body":"You can overload functions by defining a new function and changing the number of parameters or the type of parameters or return type of function : function add(x:int,y:int,z:int): int { return x + y + z\n} // overloading function `add`\nfunction add(x:int,y:int){ print(x + y)\n} function main(): int { print(add(1,2)) print(add(1,2,3))\n}","breadcrumbs":"Functions » Function overloading","id":"36","title":"Function overloading"},"37":{"body":"To passing a function as parameter you should define a parameter in with Function type with following syntax : Function[,,...] For example : function foo(func: Function[float, int]int) : int{ } At above we defined a function with name foo that takes a function as its parameter and given function should has two parameters with types float and int(respectively) and it should returns int. Also we can call given function like other functions, change the foo function code to following code : function foo(func: Function[float, int]int){ print(func(1.0,2))\n} Now we define a function to pass to foo func and must have the properties specified in the foo function(two parameters with types int and float and int as return type): function bar(a:float, b:int) : int { print(\"Hello from bar function!\") return a + b\n} Now we can pass bar function to foo function as parameter : foo(bar) Output : Hello from bar function!\n3","breadcrumbs":"Functions » Passing function as parameter","id":"37","title":"Passing function as parameter"},"38":{"body":"Decorator is a way to add some properties to a function and it is used with @ character + decorator name before function declaration. List of available decorators in Hascal : | Decorator | Description | | :------------- | :----------: | | @static_function | Makes function static | | @extern | Externs function( like extern in C++ ) |","breadcrumbs":"Functions » Function decorators","id":"38","title":"Function decorators"},"39":{"body":"A module is a package of code that can be imported into another module to use its code.","breadcrumbs":"Importing & Creating modules » Importing & Creating modules","id":"39","title":"Importing & Creating modules"},"4":{"body":"Requirements : python>=3.7 gcc>=8(or any c++ compiler that supports c++17) libcurl,libssl,libcrypt git(to clone Hascal's source code)","breadcrumbs":"Installation » Installation","id":"4","title":"Installation"},"40":{"body":"You can use other modules by importing them. You can import a module by using the use keyword: use os function main() : int { system(\"start http://www.google.com\") return 0\n}","breadcrumbs":"Importing & Creating modules » Importing a module","id":"40","title":"Importing a module"},"41":{"body":"You can import multiple modules by using the use keyword and separating the module names with a comma: use os, math, conv For importing a submodule of a module, you can use the . operator: use crypto.sha256","breadcrumbs":"Importing & Creating modules » Importing multiple modules","id":"41","title":"Importing multiple modules"},"42":{"body":"For creating a module, you can create a file with the same name as the module and with the extension .has and put the module code inside it: add.has: function add(x:int, y:int) : int { return x + y\n} main.has: use add function main() : int { print(add(1,2)) return 0\n} Creating foldered modules Module files can be placed in a folder, for creating a foldered module you should first create the folder and then create the _.has file inside it. The _.has file is the main file of the module and compiler will look for it. You can also import submodules in _.has file. Note: Any submodule that is not imported in _.has file will be ignored. Note: Any submodule can have other submodules.","breadcrumbs":"Importing & Creating modules » Creating a module","id":"42","title":"Creating a module"},"43":{"body":"Structures are a way to group data together. You can declare a structure using the struct keyword: struct Color { var r : int var g : int var b : int var name = \"Anything...\" // optional\n} Note: Declaring a structure member without a type will make it optional. After declaring a structure, you can create an instance of it: var red = Color(255,0,0) For accessing the fields of a structure, you should use the . operator: var red = Color(255,0,0)\nprint(red.r)\nprint(red.g)\nprint(red.b)\nprint(red.name)","breadcrumbs":"Structures » Structures","id":"43","title":"Structures"},"44":{"body":"You can return a structure from a function: function foo() : Color { return Color(1,2,3)\n}","breadcrumbs":"Structures » Structures as return values","id":"44","title":"Structures as return values"},"45":{"body":"You can pass a structure as an argument to a function: function foo(c:Color) { print(c.r) print(c.g) print(c.b) print(c.name)\n}","breadcrumbs":"Structures » Structures as arguments","id":"45","title":"Structures as arguments"},"46":{"body":"You can inherit a structure from another structure with : operator after the structure name: struct RGB : Color { } And you can access the fields of the inherited structure: var foo : RGB = RGB(1,2,3)\nprint(foo.r,foo.g,foo.b) var bar = RGB(255,0,0,\"AColor\")","breadcrumbs":"Structures » Structure inheritance","id":"46","title":"Structure inheritance"},"47":{"body":"Memory management is a way to manage the memory of your program. Hascal use manual memory management because it is used in most performance-critical applications like games,OSes, embedded systems, etc. Hascal uses new and delete keywords to manage memory manually.","breadcrumbs":"Memory management » Memory management","id":"47","title":"Memory management"},"48":{"body":"For allocating memory, you should use the new keyword. Note that type of the allocated memory should be pointer or reference type and passed type to new keyword should be a var foo : int^ = new int(1) // allocating For easily declaring and allocating memory, use var = new () statement, like this: var foo = new int(1)","breadcrumbs":"Memory management » Allocation","id":"48","title":"Allocation"},"49":{"body":"For reallocating memory and assigning the new value to the pointer, use = new () statement, like this: var foo : int^ = new int(1) // allocate memory\nfoo = new int(2) // reallocate memory and assign new value","breadcrumbs":"Memory management » Reallocation","id":"49","title":"Reallocation"},"5":{"body":"You can use the hascal.sh script to automate the process of installing and adding hascal to PATH: git clone https://github.com/hascal/hascal.git\ncd hascal/\nchmod +x ./hascal.sh\nbash ./hascal.sh","breadcrumbs":"Installation » *Nix Users(recommended)","id":"5","title":"*Nix Users(recommended)"},"50":{"body":"For deallocating memory, you should use the delete keyword and pass the pointer to the memory that you want to deallocate: delete foo","breadcrumbs":"Memory management » Deallocation","id":"50","title":"Deallocation"},"51":{"body":"Like pointer types, you can access the allocated memory value with the ^ operator: var foo : int^ = new int(1)\nprint(^foo)","breadcrumbs":"Memory management » Accessing memory","id":"51","title":"Accessing memory"},"52":{"body":"Don't forget to use the delete keyword at end of scope and before the end of the program.. In future, we will add a feature to show warnings when you forget to use the delete keyword. You can't deallocate memory that you haven't allocated it without new keyword. You can allocate, not allocated pointers : var foo : int^?\nfoo = new int(1)","breadcrumbs":"Memory management » Critical notes","id":"52","title":"Critical notes"},"53":{"body":"Hascal is based on C++, so you can use C++ functions and classes in your program.","breadcrumbs":"Interfacing with C++ » Interfacing with C++","id":"53","title":"Interfacing with C++"},"54":{"body":"You can use inline c++ code in Hascal with cuse keyword : cuse '#include '\ncuse 'int main(){printf(\"%d\",1);return 0;}'\n// output : 1 Or you can use multiline c++ code, like following example: cuse \"\"\"\n#include int main(){ printf(\"%d\",1); return 0;\n}\n\"\"\"","breadcrumbs":"Interfacing with C++ » Inline C++ Code","id":"54","title":"Inline C++ Code"},"55":{"body":"For using C++ functions in your program, you should at first declare them with following syntax: function () : Example : function system(command:char^):int","breadcrumbs":"Interfacing with C++ » Externing functions","id":"55","title":"Externing functions"},"56":{"body":"Also Hascal can include C++ headers in your program. We need two files, one for headers and one for main part of the library. You should put #include,... in your_cpp_lib.hpp and main part of library in your_cpp_lib.cc. The specified files should exist in the same folder. See the example below: add.cc : void __hascal__cpp_print(int x){ printf(\"%d\",x);\n} add __hascal__ to your C++ functions, structs name. Hascal transpiles to C++ and it adds __hascal__ prefix to your C++ names. add.hpp : #include main.has : cuse add function cpp_print(x:int) function main() : int { cpp_print(12) return 0\n} Also you can put the C++ files in a folder and rename they to _.cc and _.hpp. Note that don't include local headers in *.hpp file.","breadcrumbs":"Interfacing with C++ » Include C++ headers","id":"56","title":"Include C++ headers"},"57":{"body":"You can access to Hascal's variable and types in inline C++ codes in Hascal by adding __hascal__ prefix to a name, for example: main.has: function add(a:int,b:int){ cuse \"\"\" std::cout << a + b; \"\"\"\n} you can return a value in inline C++ codes by returning a meaningless value with same type as return type of the function(it may be ridiculous, we are currently working to improve it): function add(a:int,b:int){ cuse \"\"\" return a + b; \"\"\" return 0 // return a value with same type as return type of the function\n}","breadcrumbs":"Interfacing with C++ » Accessing to values and types in inline C++ code","id":"57","title":"Accessing to values and types in inline C++ code"},"58":{"body":"To read Hascal's stdlib go to this link .","breadcrumbs":"Standard Library Documentation » Standard Library Documentation","id":"58","title":"Standard Library Documentation"},"59":{"body":"Hascal has a built-in package manager that allows you to install packages from the a git repository.","breadcrumbs":"Package Manager Documentation » Package Manager","id":"59","title":"Package Manager"},"6":{"body":"> git clone https://github.com/hascal/hascal.git\n> cd hascal\n> make deps-windows\n> make windows Now your Hascal compiler is ready to use in dist folder, you can add it to $PATH. NOTE : The latest version of Hascal should always be used, older versions have bugs when running binary versions of Hascal.","breadcrumbs":"Installation » Windows Users","id":"6","title":"Windows Users"},"60":{"body":"To get and install a package, you can use the get command : hascal get is the url of the git repository is the name of the package(optional, recommended, default is the url) Note: If you don't specify the package name, you should import it like this : use github.com.foo.bar","breadcrumbs":"Package Manager Documentation » Installing a package","id":"60","title":"Installing a package"},"61":{"body":"To update a package, you can use the update command : hascal update ","breadcrumbs":"Package Manager Documentation » Updating a package","id":"61","title":"Updating a package"},"62":{"body":"To list all packages, you can use the list command : hascal list if you want to list all subpackages of a package, you can use the list command with name of the package : hascal list is the name of the package you want to list subpackages For example : $ hascal list crypto\nlist of all subpackages in crypto :\n- sha256","breadcrumbs":"Package Manager Documentation » Listing packages","id":"62","title":"Listing packages"},"63":{"body":"Vscode Extension","breadcrumbs":"IDE Integration » IDE Integration","id":"63","title":"IDE Integration"},"64":{"body":"","breadcrumbs":"Roadmap » Hascal's Roadmap","id":"64","title":"Hascal's Roadmap"},"65":{"body":"js backend lambdas : var mythread = thread(function(x:int,y:int){ print(x*y)\n}) generate html doc from a code classes class C : T { var foo : string var bar = 1 // constructor C(foo: string){ this.foo = foo } public f(x: string): string { return x } private f2(x: string): string { return x } // allocator __new__(foo: string): C { return new C(foo) } // deallocator __delete__(foo: string): C { delete this.foo delete this.bar }\n} generics #26 s rewrite compiler in hascal const correctness","breadcrumbs":"Roadmap » Language","id":"65","title":"Language"},"66":{"body":"thread library","breadcrumbs":"Roadmap » Standard Library","id":"66","title":"Standard Library"},"67":{"body":"","breadcrumbs":"Roadmap » Package Manager","id":"67","title":"Package Manager"},"68":{"body":"v1.4.2 New features Changes observe Hasca's coding style in libraries Bug fixes Removed v1.4.1 Bug fixes No errors when main doesn't return anything #67 (by @mehanalavimajd ) v1.4.0 New features add builtin range function function main(): int { // prints 1 to 10 for i in range(1,11){ print(i) } return 0\n} add asin, acos, asinh, acosh, exp, frexpr, ldexp, log, log10, fdim, sqrt, ceil, floor, NaN, max, min functions to math library, see documentation . Showing error for overloading function's return type. Changes Speedup parsing and compiling Bug fixes fix passing list to for in statement Removed v1.3.12 New features add support for multiline C-style comment add round function to math library Changes Hascal relicensed from MIT license to BSD-3-Clause license Bug fixes fix string subscripting bug fix empty list parsing bug fix random library bugs Removed v1.3.11 New features add uniform distribution based random number generator called uniform in random library Changes change static decorator name to static_function name rename times function to multiplies in functional library rename if_and, if_or, if_not functions to _and, _or, _not in functional library Bug fixes fix package manager bug Removed v1.3.10 New features show error for undeleted variables from heap Changes improve math,os library in functional library : change lessThanOrEqual to lessThanEqual, greaterThanOrEqual to greaterThanEqual improve error handler for conditions pytest based test runner(@mmdbalkhi) fix conflicting with C\\C++\\Obj-C in FFI features change static decorator name to static_function name Bug fixes fix math library bug fix import package bug with _.* name fix crypto.sha256 library bug Removed remove libtcc from stdlib v1.3.9x v1.3.9 New features add hascal list command to list all available packages add hascal init command to create a new project, that generates config.json, .gitignore and src/app.has files add hascal build command to build project add hascal run command to run project add string_reverse(str:string) function to strings module add assert function to runtime library add no_std compiler option add filename config option Changes change emitting std::string for strings to string(because in showing assertion errors, std::string is illusory). use sys.exit instead of exit in src/core/h_help.py(@mmdbalkhi) fix importing system bugs improve typeof builtin function Bug fixes fix assigning NULL to arrays and pointers bug, #36. fix check_g++ config option bugs fix not defined consts when importing packages fix random library bug fix browser library bug Removed remove windows,browser libraries v1.3.9-rc.2 Bug fixes fix a critical bug in importing system v1.3.9-rc.1 Changes upgrade importing system some changes in self hosted compiler(NOTE: self hosted compiler is not ready yet) Bug fixes fix import bug when importing one package in multiple files fix self hosted bugs v1.3.9-rc Changes Rewrite package manager Bug fixes fix http library bug fix cpp importing bug v1.3.9-beta New features passing functions as arguments function f(x: int): int { return x + 1\n} function g(func:Function[int]int): int { return func(1)\n} add static variables, See this example add only_compile config option Changes upgrade importing system Bug fixes fix pyinstaller build issue Removed v1.3.9-alpha.1 Changes add download,upload,post functions to http library https support for http library add windows library(that includes windows.h) add browser library to open urls in default browser(now only supports windows) Bug fixes fix linker flag import bug in cuse statement v1.3.8 New features non-nullable and nullable variables Changes change pointer unary from * to ^ improve importing system Bug fixes fix repetitious imports bug fix #29 bug(by @mmdbalkhi ) Removed remove token library v1.3.7 New features manual memory management with new and delete keyword functional programming paradigm speed up compilation time add typeof function now can print arrays and structures function decorators static and extern decorator multiple library import improve importing system improve stdlib architecture Bug fixes fix scoping bug fix conv library bug fix conditions bug Removed export library removed local use statement removed v1.3.6 New features more data types : int8,uint8,int16,uint16,int32,uint32,int64,uint64,double type compatibility multi line string pointers and references var x : *int = 20\nvar y : int = 10\nx = &y\nvar z = *x // type : int // Pointers fix incomplete types on struct defination\nstruct bar { var self : *bar\n} add sizeof function Bug fixes fix lexer bugs check if function returns a value at end of string else show error main function should returns int fix termcolor library bugs fix enum bugs Standart library add sdl2 wrapper add export library for exporting to C(see : haspy ) add crypto.sha256 for sha256 hashing Removed libcinfo library removed v1.3.5 Standard library Updated os : add compiler_name function to get the name of the compiler add arch function to get the architecture of the system add is_x86 function to check if the architecture is x86 add is_x64 function to check if the architecture is x64 add getenv function to get an environment variable Added add libcinfo library to get information about the libc add termcolor library to colorize the output assets/termcolor.png Bug fixes Fix incomplete type defination bug v1.3.4 New features compiler option : now can generate c++ code from hascal code with c++_code : 1 in config.json file use cuse keyword to include c++ files. Bug fixes Fix semantic analyser bugs Fix standard library bug v1.3.3 New features struct inheritance can use cuse statement on struct declaration Bug fixes Fix variable scope bug Fix variable declaration bug Fix semantic analyser bug v1.3.2 New features for in statement library manager flag option cuse statement Bug fixes Fix semantic analyser bugs Fix nested struct bug Removed for to and for downto statement removed v1.3.1 New features Basic Semantic Anaslyser Removed remove semicolon from syntax","breadcrumbs":"Change Log » Hascal's Changelog","id":"68","title":"Hascal's Changelog"},"7":{"body":"Now that you have successfully installed Haskall, let's write our first program with it. You will write a program that prints Hello World! on the terminal.","breadcrumbs":"Hello World! » Hello World!","id":"7","title":"Hello World!"},"8":{"body":"You can wite your hascal programs every where but We suggest that you create a directory for your project. First create a directory in your home directory(or anywhere else): mkdir hello_world\ncd hello_wrold","breadcrumbs":"Hello World! » Creating a project directory","id":"8","title":"Creating a project directory"},"9":{"body":"Next make a new file and name it main.has. Hascal files should end with .has extension. Now open your code editor(If you are using vscode install hascal extension for better coding from this link ) and write following code in main.has : function main() : int { print(\"Hello World!\") return 0\n} Save the file, and back to terminal and enter following command to build your program : hascal main.has Now run the generated excutable file : $ ./main\nHello World! On Windows you should use .\\main.exe instead of ./main : $ .\\main.exe\nHello World! Congratulations - you just wrote and executed your first Hascal program!","breadcrumbs":"Hello World! » Writing the code","id":"9","title":"Writing the code"}},"length":69,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{"df":11,"docs":{"10":{"tf":1.7320508075688772},"12":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0}}},"1":{",":{"2":{",":{"3":{"df":2,"docs":{"25":{"tf":2.23606797749979},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"2":{"3":{"1":{"3":{"2":{"1":{"3":{"2":{"1":{"5":{"6":{"4":{"8":{"7":{"8":{"9":{"7":{"9":{"8":{"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":{}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":2,"docs":{"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"2":{"3":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":13,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":2.0},"30":{"tf":2.0},"31":{"tf":3.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"54":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.7320508075688772}}},"2":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"6":{"df":1,"docs":{"65":{"tf":1.0}}},"9":{"df":1,"docs":{"68":{"tf":1.0}}},"df":5,"docs":{"25":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":2.449489742783178},"32":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"3":{"2":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"6":{"df":1,"docs":{"68":{"tf":1.0}}},"df":3,"docs":{"25":{"tf":1.0},"37":{"tf":1.0},"68":{"tf":1.0}}},"4":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"5":{"df":1,"docs":{"24":{"tf":1.0}}},"6":{"4":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"7":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"_":{".":{"c":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"42":{"tf":2.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"_":{"_":{"_":{"_":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"_":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"56":{"tf":1.4142135623730951},"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"_":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"68":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"43":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"d":{"d":{"(":{"1":{",":{"2":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"b":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"y":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"z":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"34":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}}},".":{"c":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":7,"docs":{"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.7320508075688772},"6":{"tf":1.0},"68":{"tf":5.477225575051661}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":4,"docs":{"20":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":6,"docs":{"21":{"tf":1.0},"48":{"tf":2.23606797749979},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"65":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":2,"docs":{"20":{"tf":1.0},"59":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{".":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"10":{"tf":1.0},"21":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"39":{"tf":1.0},"46":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"3":{"tf":1.0},"43":{"tf":1.0},"68":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"22":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":2.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"25":{"tf":2.8284271247461903},"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}},"h":{"df":1,"docs":{"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":7,"docs":{"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":1,"docs":{"5":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"15":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"9":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"(":{"a":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":2.449489742783178},"37":{"tf":1.7320508075688772},"46":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"h":{"df":1,"docs":{"5":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"26":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.0},"38":{"tf":1.0},"52":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"56":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"18":{"tf":2.0},"23":{"tf":2.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"18":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}},"s":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"(":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"6":{"tf":1.0},"68":{"tf":7.211102550927978}}},"i":{"df":0,"docs":{},"l":{"d":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"12":{"tf":1.0},"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":6,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"13":{"tf":2.0},"14":{"tf":1.0},"68":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"15":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}}}},"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"+":{"+":{"1":{"7":{"df":2,"docs":{"15":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"\\":{"c":{"+":{"+":{"\\":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"68":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}},"d":{"df":4,"docs":{"12":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}}},"df":12,"docs":{"1":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"23":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":2.449489742783178},"57":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"68":{"tf":2.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"68":{"tf":4.123105625617661}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"21":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"24":{"tf":3.1622776601683795},"26":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":1,"docs":{"68":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"y":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":20,"docs":{"10":{"tf":2.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"65":{"tf":1.0},"68":{"tf":1.7320508075688772},"9":{"tf":2.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"5":{",":{"0":{",":{"0":{"df":1,"docs":{"43":{"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":4,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"68":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"41":{"tf":1.0}},"n":{"d":{"df":9,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"68":{"tf":2.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":2.23606797749979},"68":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}},"t":{"df":3,"docs":{"1":{"tf":1.0},"26":{"tf":2.23606797749979},"68":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"15":{"tf":2.8284271247461903},"4":{"tf":1.0},"42":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"68":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.7320508075688772}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"65":{"tf":1.0},"68":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"41":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"68":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"12":{"tf":2.23606797749979},"39":{"tf":1.0},"42":{"tf":2.6457513110645907},"43":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"47":{"tf":1.0},"52":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":2,"docs":{"41":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"57":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"54":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"68":{"tf":2.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"25":{"tf":1.0},"43":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"21":{"tf":1.0},"50":{"tf":1.7320508075688772},"52":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":14,"docs":{"10":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.7320508075688772},"38":{"tf":1.0},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":2.23606797749979},"68":{"tf":2.0}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"10":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"21":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}},"p":{"df":1,"docs":{"6":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"8":{"tf":1.7320508075688772}}},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"o":{"c":{"df":1,"docs":{"65":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"17":{"tf":1.0},"2":{"tf":1.4142135623730951},"58":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"52":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"18":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"26":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"24":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}},"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":{"25":{"tf":2.449489742783178}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"n":{"d":{"df":4,"docs":{"10":{"tf":1.0},"52":{"tf":1.4142135623730951},"68":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"12":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"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":1,"docs":{"68":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"15":{"tf":1.0},"32":{"tf":2.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"68":{"tf":2.449489742783178}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":11,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"p":{"df":1,"docs":{"68":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"42":{"tf":1.0},"63":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.7320508075688772},"55":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"f":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"65":{"tf":1.0},"68":{"tf":1.0}}}},"2":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":1,"docs":{"24":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"20":{"tf":1.4142135623730951},"52":{"tf":1.0},"68":{"tf":3.872983346207417}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"43":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"15":{"tf":1.0}},"e":{"df":9,"docs":{"12":{"tf":2.6457513110645907},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.7320508075688772},"3":{"tf":1.0},"42":{"tf":2.6457513110645907},"56":{"tf":2.0},"68":{"tf":2.0},"9":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"10":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"x":{"df":1,"docs":{"68":{"tf":7.615773105863909}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"18":{"tf":1.7320508075688772},"23":{"tf":2.23606797749979},"26":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"42":{"tf":2.0},"56":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"o":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"c":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"4":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"[":{"1":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":22,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"24":{"tf":2.449489742783178},"25":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":2.449489742783178},"33":{"tf":2.23606797749979},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"44":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}}},"k":{"df":1,"docs":{"3":{"tf":1.0}}},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"(":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"37":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"68":{"tf":1.0}}},"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"[":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{",":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"2":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{",":{".":{".":{".":{"]":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":21,"docs":{"10":{"tf":3.1622776601683795},"12":{"tf":1.0},"15":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":2.23606797749979},"25":{"tf":1.4142135623730951},"34":{"tf":3.0},"35":{"tf":2.23606797749979},"36":{"tf":2.8284271247461903},"37":{"tf":4.123105625617661},"38":{"tf":2.23606797749979},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"68":{"tf":5.196152422706632},"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"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":{},"t":{"]":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"+":{"+":{",":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"16":{"tf":1.0}},"s":{",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"c":{">":{"=":{"8":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"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}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"1":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":5,"docs":{"5":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"o":{"df":3,"docs":{"10":{"tf":1.0},"21":{"tf":1.0},"58":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"15":{"tf":1.0},"32":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"34":{"tf":1.0},"43":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"c":{"a":{"'":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{},"l":{"'":{"df":6,"docs":{"20":{"tf":1.0},"4":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}}},"df":24,"docs":{"1":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":1.0},"68":{"tf":2.449489742783178},"8":{"tf":1.0},"9":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":2.0}}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"2":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"24":{"tf":2.449489742783178},"25":{"tf":1.0},"37":{"tf":1.0},"7":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"p":{"df":1,"docs":{"3":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"10":{"tf":1.0}}},"df":1,"docs":{"2":{"tf":1.0}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":2.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":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"d":{"df":2,"docs":{"24":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"39":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"60":{"tf":1.0},"68":{"tf":3.7416573867739413}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"57":{"tf":1.0},"68":{"tf":2.449489742783178}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"54":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"21":{"tf":1.0},"68":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"68":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"10":{"tf":1.7320508075688772},"12":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"11":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"7":{"tf":1.0},"9":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"68":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"(":{"1":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}},"2":{"df":1,"docs":{"49":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"1":{"6":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"8":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"6":{"4":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"6":{"4":{",":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"]":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"^":{")":{"1":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":29,"docs":{"10":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":2.8284271247461903},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"18":{"tf":2.0},"23":{"tf":2.23606797749979}},"r":{"df":1,"docs":{"63":{"tf":1.0}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"_":{"df":0,"docs":{},"x":{"6":{"4":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":18,"docs":{"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"m":{"b":{"d":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}},"n":{"df":2,"docs":{"24":{"tf":1.4142135623730951},"25":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"32":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"t":{"'":{"df":3,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"0":{",":{"1":{",":{"2":{",":{"3":{")":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"21":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"i":{"b":{"c":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"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":7,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":5.656854249492381}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"c":{"c":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"17":{"tf":1.7320508075688772},"68":{"tf":1.0}}},"k":{"df":3,"docs":{"15":{"tf":1.4142135623730951},"58":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"25":{"tf":1.0},"38":{"tf":1.0},"62":{"tf":3.1622776601683795},"68":{"tf":2.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"56":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"1":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"68":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"42":{"tf":1.0}}},"p":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{")":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"(":{"\"":{"%":{"d":{"\"":{",":{"1":{")":{";":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"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":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"h":{"a":{"df":4,"docs":{"42":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"9":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":12,"docs":{"10":{"tf":2.0},"12":{"tf":1.0},"15":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772}}}},"k":{"df":0,"docs":{},"e":{"df":9,"docs":{"1":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"11":{"tf":1.4142135623730951},"21":{"tf":1.0},"47":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":2.0}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"24":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{",":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":2,"docs":{"41":{"tf":1.0},"68":{"tf":1.7320508075688772}}}},"x":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"20":{"tf":1.0},"24":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"j":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"21":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"68":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"d":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":5,"docs":{"39":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"41":{"tf":2.0},"42":{"tf":2.8284271247461903},"68":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"21":{"tf":1.0},"68":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"17":{"tf":1.4142135623730951},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"68":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.0},"41":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},">":{"(":{"<":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"15":{"tf":1.4142135623730951},"19":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":2.0},"68":{"tf":2.449489742783178},"9":{"tf":1.0}}}},"n":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":1,"docs":{"24":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"15":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"w":{"df":11,"docs":{"12":{"tf":1.7320508075688772},"21":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.23606797749979},"49":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":4.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"5":{"tf":1.0}}}},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"68":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"10":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.7320508075688772},"24":{"tf":2.0},"26":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0}}}},"w":{"df":6,"docs":{"12":{"tf":1.0},"37":{"tf":1.4142135623730951},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"20":{"tf":2.6457513110645907},"21":{"tf":1.4142135623730951},"34":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"20":{"tf":2.6457513110645907},"24":{"tf":1.0},"68":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"10":{"tf":1.0},"23":{"tf":2.0},"33":{"tf":1.0},"36":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"2":{"df":1,"docs":{"15":{"tf":1.0}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"tf":1.0}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"n":{"df":6,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"32":{"tf":4.0}}},"df":0,"docs":{}}},"df":9,"docs":{"21":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"32":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":1.7320508075688772}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"15":{"tf":1.0},"43":{"tf":1.4142135623730951},"68":{"tf":2.449489742783178}}}}}}},"s":{"df":4,"docs":{"10":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.0}}},"t":{"df":1,"docs":{"61":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"37":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"22":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"36":{"tf":1.7320508075688772},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"24":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":2.23606797749979},"61":{"tf":1.7320508075688772},"62":{"tf":2.6457513110645907},"67":{"tf":1.0},"68":{"tf":2.449489742783178}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.4142135623730951},"34":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":2.6457513110645907}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"10":{"tf":1.0},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"15":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":2.0},"45":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"12":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"23":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"18":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"21":{"tf":2.8284271247461903},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"68":{"tf":2.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":5,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"33":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"9":{"tf":1.0}}}}}}}},"^":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"21":{"tf":1.0},"51":{"tf":1.0}}}}}},"a":{"d":{"d":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"36":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{".":{"b":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":1,"docs":{"45":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"b":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"[":{"1":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"24":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"c":{"(":{"1":{".":{"0":{",":{"2":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"d":{".":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"x":{"*":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":1,"docs":{"36":{"tf":1.0}}}},"df":4,"docs":{"10":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"7":{"tf":1.0}},"f":{"(":{"\"":{"%":{"d":{"\"":{",":{"1":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":14,"docs":{"1":{"tf":1.0},"10":{"tf":2.0},"12":{"tf":1.0},"15":{"tf":1.0},"22":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":2.23606797749979},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.0},"38":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"42":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{"=":{"3":{".":{"7":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"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":{"24":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":2.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}},"e":{"(":{"0":{"df":1,"docs":{"33":{"tf":1.0}}},"1":{",":{"1":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{".":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"68":{"tf":1.0}}},"df":2,"docs":{"24":{"tf":1.0},"43":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"58":{"tf":1.0}},"i":{"df":2,"docs":{"6":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"49":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"21":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"3":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"68":{"tf":4.47213595499958}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"56":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"3":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":18,"docs":{"10":{"tf":2.6457513110645907},"12":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":3.1622776601683795},"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.6457513110645907},"65":{"tf":1.7320508075688772},"68":{"tf":2.6457513110645907},"9":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.0},"68":{"tf":1.0}}}}}}},"g":{"b":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"5":{",":{"0":{",":{"0":{",":{"\"":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":7,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":2.23606797749979},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"9":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"d":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"20":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"25":{"tf":1.0},"42":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"52":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"65":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"12":{"tf":1.0},"15":{"tf":1.4142135623730951},"23":{"tf":1.0},"3":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":2.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":2.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":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"24":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"15":{"tf":2.0},"20":{"tf":1.0}}}},"h":{"a":{"2":{"5":{"6":{"df":2,"docs":{"62":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"52":{"tf":1.0},"68":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}},"e":{",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"17":{"tf":1.0},"24":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"1":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"df":4,"docs":{"24":{"tf":1.0},"37":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"68":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"(":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"d":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":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":{"12":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{":":{"c":{"+":{"+":{"1":{"7":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"2":{"tf":1.4142135623730951},"58":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":2.6457513110645907}}}},"t":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"38":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"22":{"tf":2.23606797749979},"38":{"tf":1.0},"68":{"tf":2.0}}},"df":0,"docs":{}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"58":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":6,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":4.242640687119285},"25":{"tf":1.0},"26":{"tf":1.0},"65":{"tf":2.8284271247461903},"68":{"tf":2.23606797749979}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"43":{"tf":1.4142135623730951},"46":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":2.23606797749979}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"43":{"tf":2.449489742783178},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":2.23606797749979},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"42":{"tf":2.0}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"7":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"15":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.7320508075688772}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":3,"docs":{"37":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{":":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"^":{")":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":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":{"1":{"tf":1.0},"11":{"tf":1.0},"47":{"tf":1.0},"68":{"tf":2.6457513110645907}}}}}}}},"t":{"a":{"b":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"37":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":2,"docs":{"24":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"7":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"x":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"y":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"26":{"tf":1.0},"43":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":7,"docs":{"15":{"tf":2.0},"27":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":3.605551275463989},"33":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":4,"docs":{"12":{"tf":1.0},"26":{"tf":1.0},"37":{"tf":1.0},"56":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}},">":{"(":{"<":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"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":2.449489742783178},"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":2.0},"43":{"tf":1.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":2.449489742783178},"68":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}},"u":{"_":{"_":{"_":{"_":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"8":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":2.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"68":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"l":{"df":3,"docs":{"60":{"tf":2.0},"61":{"tf":1.0},"68":{"tf":1.0}}}},"s":{"df":42,"docs":{"1":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":2.449489742783178},"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.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"68":{"tf":2.0},"9":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"1":{".":{"3":{".":{"1":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"1":{"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"3":{"df":1,"docs":{"68":{"tf":1.0}}},"4":{"df":1,"docs":{"68":{"tf":1.0}}},"5":{"df":1,"docs":{"68":{"tf":1.0}}},"6":{"df":1,"docs":{"68":{"tf":1.0}}},"7":{"df":1,"docs":{"68":{"tf":1.0}}},"8":{"df":1,"docs":{"68":{"tf":1.0}}},"9":{"df":1,"docs":{"68":{"tf":2.449489742783178}},"x":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"1":{"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":14,"docs":{"10":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"57":{"tf":2.0},"68":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"1":{"df":1,"docs":{"32":{"tf":2.8284271247461903}}},"2":{"df":1,"docs":{"32":{"tf":2.8284271247461903}}},"df":21,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":2.449489742783178},"25":{"tf":2.449489742783178},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"43":{"tf":2.449489742783178},"46":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":2.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"19":{"tf":2.0},"20":{"tf":2.23606797749979},"21":{"tf":1.0},"22":{"tf":2.0},"25":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"24":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"63":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"15":{"tf":1.7320508075688772},"24":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}},"y":{"df":5,"docs":{"21":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"6":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"9":{"tf":1.0}},"s":{",":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"26":{"tf":1.4142135623730951},"43":{"tf":1.0},"52":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":1.0}}},"l":{"d":{"!":{"\"":{",":{"4":{"2":{",":{"3":{".":{"1":{"4":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"10":{"tf":1.0},"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"24":{"tf":2.0},"25":{"tf":1.0},"34":{"tf":1.0},"7":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"7":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"x":{"6":{"4":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":2.0}}},"y":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":4,"docs":{"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"42":{"tf":1.0},"68":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"c":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"c":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"’":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"z":{"df":2,"docs":{"36":{"tf":1.0},"68":{"tf":1.0}}}}},"breadcrumbs":{"root":{"0":{"df":11,"docs":{"10":{"tf":1.7320508075688772},"12":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0}}},"1":{",":{"2":{",":{"3":{"df":2,"docs":{"25":{"tf":2.23606797749979},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"2":{"3":{"1":{"3":{"2":{"1":{"3":{"2":{"1":{"5":{"6":{"4":{"8":{"7":{"8":{"9":{"7":{"9":{"8":{"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":{}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":2,"docs":{"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"2":{"3":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":13,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":2.0},"30":{"tf":2.0},"31":{"tf":3.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"54":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.7320508075688772}}},"2":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"6":{"df":1,"docs":{"65":{"tf":1.0}}},"9":{"df":1,"docs":{"68":{"tf":1.0}}},"df":5,"docs":{"25":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":2.449489742783178},"32":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"3":{"2":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"6":{"df":1,"docs":{"68":{"tf":1.0}}},"df":3,"docs":{"25":{"tf":1.0},"37":{"tf":1.0},"68":{"tf":1.0}}},"4":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"5":{"df":1,"docs":{"24":{"tf":1.0}}},"6":{"4":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"7":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"_":{".":{"c":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"42":{"tf":2.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"_":{"_":{"_":{"_":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"_":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"56":{"tf":1.4142135623730951},"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"_":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"68":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"43":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"d":{"d":{"(":{"1":{",":{"2":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"b":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"y":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"z":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"34":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}}},".":{"c":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":7,"docs":{"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.7320508075688772},"6":{"tf":1.0},"68":{"tf":5.477225575051661}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":4,"docs":{"20":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":6,"docs":{"21":{"tf":1.0},"48":{"tf":2.449489742783178},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"65":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":2,"docs":{"20":{"tf":1.0},"59":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{".":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"10":{"tf":1.0},"21":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"39":{"tf":1.0},"46":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"3":{"tf":1.0},"43":{"tf":1.0},"68":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"22":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":2.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"25":{"tf":3.1622776601683795},"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}},"h":{"df":1,"docs":{"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":7,"docs":{"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":1,"docs":{"5":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"15":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"9":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"(":{"a":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":2.449489742783178},"37":{"tf":1.7320508075688772},"46":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"h":{"df":1,"docs":{"5":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"26":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.0},"38":{"tf":1.0},"52":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"56":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"18":{"tf":2.0},"23":{"tf":2.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"18":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}},"s":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"(":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"6":{"tf":1.0},"68":{"tf":7.211102550927978}}},"i":{"df":0,"docs":{},"l":{"d":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"12":{"tf":1.0},"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":6,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"13":{"tf":2.23606797749979},"14":{"tf":1.0},"68":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"15":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}}}},"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"+":{"+":{"1":{"7":{"df":2,"docs":{"15":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"\\":{"c":{"+":{"+":{"\\":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"37":{"tf":1.0},"68":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}},"d":{"df":4,"docs":{"12":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}}},"df":12,"docs":{"1":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"23":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":2.23606797749979},"55":{"tf":1.4142135623730951},"56":{"tf":2.8284271247461903},"57":{"tf":2.23606797749979},"65":{"tf":1.7320508075688772},"68":{"tf":2.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"68":{"tf":4.242640687119285}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"21":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"24":{"tf":3.1622776601683795},"26":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":1,"docs":{"68":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"y":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":20,"docs":{"10":{"tf":2.23606797749979},"15":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":2.0},"57":{"tf":2.0},"65":{"tf":1.0},"68":{"tf":1.7320508075688772},"9":{"tf":2.23606797749979}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"5":{",":{"0":{",":{"0":{"df":1,"docs":{"43":{"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":4,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"68":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"41":{"tf":1.0}},"n":{"d":{"df":9,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"68":{"tf":2.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":2.6457513110645907},"68":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}},"t":{"df":3,"docs":{"1":{"tf":1.0},"26":{"tf":2.6457513110645907},"68":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"15":{"tf":3.1622776601683795},"4":{"tf":1.0},"42":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"27":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":2.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"68":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":2.23606797749979}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"65":{"tf":1.0},"68":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":2.0}}}}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"41":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"68":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"12":{"tf":2.449489742783178},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":3.0},"43":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":2.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":2,"docs":{"41":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"57":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"54":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"68":{"tf":2.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"25":{"tf":1.0},"43":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"21":{"tf":1.0},"50":{"tf":2.0},"52":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":14,"docs":{"10":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.7320508075688772},"38":{"tf":1.0},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":2.449489742783178},"68":{"tf":2.0}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"10":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"21":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}},"p":{"df":1,"docs":{"6":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"8":{"tf":2.0}}},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"o":{"c":{"df":1,"docs":{"65":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"17":{"tf":1.0},"2":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"52":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"18":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"26":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"24":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}},"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":{"25":{"tf":2.449489742783178}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"n":{"d":{"df":4,"docs":{"10":{"tf":1.0},"52":{"tf":1.4142135623730951},"68":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"12":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"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":1,"docs":{"68":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"15":{"tf":1.0},"32":{"tf":2.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"68":{"tf":2.449489742783178}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":11,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"p":{"df":1,"docs":{"68":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"42":{"tf":1.0},"63":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}}},"f":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"65":{"tf":1.0},"68":{"tf":1.0}}}},"2":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":1,"docs":{"24":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"20":{"tf":1.4142135623730951},"52":{"tf":1.0},"68":{"tf":3.872983346207417}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"43":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"15":{"tf":1.0}},"e":{"df":9,"docs":{"12":{"tf":2.6457513110645907},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.7320508075688772},"3":{"tf":1.0},"42":{"tf":2.6457513110645907},"56":{"tf":2.0},"68":{"tf":2.0},"9":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"10":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"x":{"df":1,"docs":{"68":{"tf":7.615773105863909}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"18":{"tf":1.7320508075688772},"23":{"tf":2.23606797749979},"26":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"42":{"tf":2.0},"56":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"o":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"c":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"4":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"[":{"1":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":22,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"24":{"tf":2.449489742783178},"25":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":2.449489742783178},"33":{"tf":2.23606797749979},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"44":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}}},"k":{"df":1,"docs":{"3":{"tf":1.0}}},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"(":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"37":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"68":{"tf":1.0}}},"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"[":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{",":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"2":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{",":{".":{".":{".":{"]":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":21,"docs":{"10":{"tf":3.1622776601683795},"12":{"tf":1.0},"15":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":2.23606797749979},"25":{"tf":1.4142135623730951},"34":{"tf":3.3166247903554},"35":{"tf":2.6457513110645907},"36":{"tf":3.1622776601683795},"37":{"tf":4.358898943540674},"38":{"tf":2.6457513110645907},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":2.23606797749979},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"68":{"tf":5.196152422706632},"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"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":{},"t":{"]":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"+":{"+":{",":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"16":{"tf":1.7320508075688772}},"s":{",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"c":{">":{"=":{"8":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"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}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"1":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":5,"docs":{"5":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"o":{"df":3,"docs":{"10":{"tf":1.0},"21":{"tf":1.0},"58":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"15":{"tf":1.0},"32":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"34":{"tf":1.0},"43":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.7320508075688772}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"c":{"a":{"'":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{},"l":{"'":{"df":6,"docs":{"20":{"tf":1.0},"4":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}}},"df":24,"docs":{"1":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":1.0},"68":{"tf":2.449489742783178},"8":{"tf":1.0},"9":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"2":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":9,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"24":{"tf":2.449489742783178},"25":{"tf":1.0},"37":{"tf":1.0},"7":{"tf":2.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"p":{"df":1,"docs":{"3":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"10":{"tf":1.0}}},"df":1,"docs":{"2":{"tf":1.0}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":2.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":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"d":{"df":2,"docs":{"24":{"tf":1.0},"63":{"tf":1.7320508075688772}}},"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"39":{"tf":2.0},"40":{"tf":2.23606797749979},"41":{"tf":2.23606797749979},"42":{"tf":1.7320508075688772},"60":{"tf":1.0},"68":{"tf":3.7416573867739413}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"57":{"tf":1.0},"68":{"tf":2.449489742783178}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"54":{"tf":1.4142135623730951},"56":{"tf":2.449489742783178},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"21":{"tf":1.0},"68":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":2.0},"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"68":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.7320508075688772},"57":{"tf":2.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"10":{"tf":1.7320508075688772},"12":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"11":{"tf":1.0},"4":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"7":{"tf":1.0},"9":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"68":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"(":{"1":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}},"2":{"df":1,"docs":{"49":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"1":{"6":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"8":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"6":{"4":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"6":{"4":{",":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"]":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"^":{")":{"1":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":29,"docs":{"10":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":2.8284271247461903},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"18":{"tf":2.0},"23":{"tf":2.23606797749979}},"r":{"df":1,"docs":{"63":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":5,"docs":{"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"_":{"df":0,"docs":{},"x":{"6":{"4":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":18,"docs":{"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"m":{"b":{"d":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}},"n":{"df":2,"docs":{"24":{"tf":1.4142135623730951},"25":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"32":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"t":{"'":{"df":3,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"0":{",":{"1":{",":{"2":{",":{"3":{")":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"21":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"i":{"b":{"c":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"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":7,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"68":{"tf":5.656854249492381}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"c":{"c":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"17":{"tf":1.7320508075688772},"68":{"tf":1.0}}},"k":{"df":3,"docs":{"15":{"tf":1.4142135623730951},"58":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"25":{"tf":1.0},"38":{"tf":1.0},"62":{"tf":3.3166247903554},"68":{"tf":2.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"56":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"1":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"42":{"tf":1.0}}},"p":{"df":1,"docs":{"33":{"tf":1.7320508075688772}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{")":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"(":{"\"":{"%":{"d":{"\"":{",":{"1":{")":{";":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"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":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"h":{"a":{"df":4,"docs":{"42":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"9":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":12,"docs":{"10":{"tf":2.0},"12":{"tf":1.0},"15":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772}}}},"k":{"df":0,"docs":{},"e":{"df":9,"docs":{"1":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":17,"docs":{"11":{"tf":2.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"21":{"tf":1.0},"47":{"tf":2.6457513110645907},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.0}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"24":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{",":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":2,"docs":{"41":{"tf":1.0},"68":{"tf":1.7320508075688772}}}},"x":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"20":{"tf":1.0},"24":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"j":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"21":{"tf":1.4142135623730951},"47":{"tf":2.6457513110645907},"48":{"tf":2.0},"49":{"tf":2.0},"50":{"tf":1.7320508075688772},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"d":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":5,"docs":{"39":{"tf":2.23606797749979},"40":{"tf":2.23606797749979},"41":{"tf":2.449489742783178},"42":{"tf":3.1622776601683795},"68":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"21":{"tf":1.0},"68":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"17":{"tf":1.4142135623730951},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"68":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.0},"41":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},">":{"(":{"<":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"15":{"tf":1.4142135623730951},"19":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":2.0},"68":{"tf":2.449489742783178},"9":{"tf":1.0}}}},"n":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":1,"docs":{"24":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"15":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"w":{"df":11,"docs":{"12":{"tf":2.0},"21":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.23606797749979},"49":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":4.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":2.0},"21":{"tf":1.0},"68":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"10":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.7320508075688772},"24":{"tf":2.0},"26":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0}}}},"w":{"df":6,"docs":{"12":{"tf":1.0},"37":{"tf":1.4142135623730951},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"20":{"tf":3.0},"21":{"tf":1.4142135623730951},"34":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"20":{"tf":2.6457513110645907},"24":{"tf":1.0},"68":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"10":{"tf":1.0},"23":{"tf":2.449489742783178},"33":{"tf":1.0},"36":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"2":{"df":1,"docs":{"15":{"tf":1.0}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"tf":1.0}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"n":{"df":6,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"32":{"tf":4.0}}},"df":0,"docs":{}}},"df":9,"docs":{"21":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"32":{"tf":1.7320508075688772},"41":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":1.7320508075688772}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"15":{"tf":1.0},"43":{"tf":1.4142135623730951},"68":{"tf":2.449489742783178}}}}}}},"s":{"df":4,"docs":{"10":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.0}}},"t":{"df":1,"docs":{"61":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"37":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"22":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"36":{"tf":2.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"24":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":2.23606797749979},"60":{"tf":2.6457513110645907},"61":{"tf":2.23606797749979},"62":{"tf":3.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.449489742783178}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.4142135623730951},"34":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":2.8284271247461903}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"10":{"tf":1.0},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"15":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":2.23606797749979},"45":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"12":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"23":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"18":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"21":{"tf":3.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"68":{"tf":2.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":5,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"33":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"9":{"tf":1.0}}}}}}}},"^":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"21":{"tf":1.0},"51":{"tf":1.0}}}}}},"a":{"d":{"d":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"36":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{".":{"b":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":1,"docs":{"45":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"b":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"[":{"1":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"24":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"c":{"(":{"1":{".":{"0":{",":{"2":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"d":{".":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"x":{"*":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":1,"docs":{"36":{"tf":1.0}}}},"df":4,"docs":{"10":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"7":{"tf":1.0}},"f":{"(":{"\"":{"%":{"d":{"\"":{",":{"1":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":14,"docs":{"1":{"tf":1.0},"10":{"tf":2.0},"12":{"tf":1.0},"15":{"tf":1.0},"22":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":2.23606797749979},"12":{"tf":2.6457513110645907},"13":{"tf":2.0},"14":{"tf":2.0},"68":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.0},"38":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"42":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{"=":{"3":{".":{"7":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"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":{"24":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":2.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}},"e":{"(":{"0":{"df":1,"docs":{"33":{"tf":1.0}}},"1":{",":{"1":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{".":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"68":{"tf":1.0}}},"df":2,"docs":{"24":{"tf":1.0},"43":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"58":{"tf":1.0}},"i":{"df":2,"docs":{"6":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"49":{"tf":2.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"21":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"3":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"68":{"tf":4.47213595499958}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"56":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"3":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":18,"docs":{"10":{"tf":2.6457513110645907},"12":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":3.1622776601683795},"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.6457513110645907},"65":{"tf":1.7320508075688772},"68":{"tf":2.6457513110645907},"9":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":1.7320508075688772}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.0},"68":{"tf":1.0}}}}}}},"g":{"b":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"5":{",":{"0":{",":{"0":{",":{"\"":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":7,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":2.449489742783178},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"9":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"d":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"20":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"25":{"tf":1.0},"42":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"52":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"65":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"12":{"tf":1.0},"15":{"tf":1.4142135623730951},"23":{"tf":1.0},"3":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":2.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":2.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":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"24":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"15":{"tf":2.0},"20":{"tf":1.0}}}},"h":{"a":{"2":{"5":{"6":{"df":2,"docs":{"62":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"52":{"tf":1.0},"68":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}},"e":{",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"17":{"tf":1.0},"24":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"1":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"df":4,"docs":{"24":{"tf":1.0},"37":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"68":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"(":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"d":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":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":{"12":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{":":{"c":{"+":{"+":{"1":{"7":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"2":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"10":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":2.6457513110645907}}}},"t":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"38":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"22":{"tf":2.449489742783178},"38":{"tf":1.0},"68":{"tf":2.0}}},"df":0,"docs":{}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"58":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":6,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":4.47213595499958},"25":{"tf":1.0},"26":{"tf":1.0},"65":{"tf":2.8284271247461903},"68":{"tf":2.23606797749979}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"43":{"tf":1.4142135623730951},"46":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":2.23606797749979}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"43":{"tf":2.8284271247461903},"44":{"tf":2.0},"45":{"tf":2.0},"46":{"tf":2.6457513110645907},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"42":{"tf":2.0}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"7":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"15":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.7320508075688772}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":3,"docs":{"37":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{":":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"^":{")":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":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":{"1":{"tf":1.0},"11":{"tf":1.0},"47":{"tf":1.0},"68":{"tf":2.6457513110645907}}}}}}}},"t":{"a":{"b":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"37":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":2,"docs":{"24":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"7":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"x":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"y":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"26":{"tf":1.0},"43":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":7,"docs":{"15":{"tf":2.0},"27":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":3.605551275463989},"33":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":4,"docs":{"12":{"tf":1.0},"26":{"tf":1.0},"37":{"tf":1.0},"56":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}},">":{"(":{"<":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.0},"18":{"tf":2.0},"19":{"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":2.8284271247461903},"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":2.0},"43":{"tf":1.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":2.6457513110645907},"68":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}},"u":{"_":{"_":{"_":{"_":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"8":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":2.23606797749979},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"68":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"l":{"df":3,"docs":{"60":{"tf":2.0},"61":{"tf":1.0},"68":{"tf":1.0}}}},"s":{"df":42,"docs":{"1":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":2.449489742783178},"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.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"68":{"tf":2.0},"9":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"1":{".":{"3":{".":{"1":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"1":{"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"3":{"df":1,"docs":{"68":{"tf":1.0}}},"4":{"df":1,"docs":{"68":{"tf":1.0}}},"5":{"df":1,"docs":{"68":{"tf":1.0}}},"6":{"df":1,"docs":{"68":{"tf":1.0}}},"7":{"df":1,"docs":{"68":{"tf":1.0}}},"8":{"df":1,"docs":{"68":{"tf":1.0}}},"9":{"df":1,"docs":{"68":{"tf":2.449489742783178}},"x":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"1":{"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":14,"docs":{"10":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"57":{"tf":2.23606797749979},"68":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"1":{"df":1,"docs":{"32":{"tf":2.8284271247461903}}},"2":{"df":1,"docs":{"32":{"tf":2.8284271247461903}}},"df":21,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":2.449489742783178},"25":{"tf":2.449489742783178},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"43":{"tf":2.449489742783178},"46":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":2.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":12,"docs":{"19":{"tf":2.449489742783178},"20":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"22":{"tf":2.449489742783178},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"24":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"63":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"15":{"tf":1.7320508075688772},"24":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}},"y":{"df":5,"docs":{"21":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"6":{"tf":2.0},"68":{"tf":1.4142135623730951},"9":{"tf":1.0}},"s":{",":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"26":{"tf":1.4142135623730951},"43":{"tf":1.0},"52":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":1.0}}},"l":{"d":{"!":{"\"":{",":{"4":{"2":{",":{"3":{".":{"1":{"4":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"24":{"tf":2.0},"25":{"tf":1.0},"34":{"tf":1.0},"7":{"tf":2.0},"8":{"tf":1.0},"9":{"tf":2.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"10":{"tf":1.0},"16":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"x":{"6":{"4":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":2.0}}},"y":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":4,"docs":{"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"42":{"tf":1.0},"68":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"c":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"c":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"’":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"z":{"df":2,"docs":{"36":{"tf":1.0},"68":{"tf":1.0}}}}},"title":{"root":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"51":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":4,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"10":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"58":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"'":{"df":2,"docs":{"64":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"i":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"57":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"4":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"2":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"11":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"47":{"tf":1.0},"51":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"12":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"5":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.0}}}}},"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":1,"docs":{"21":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"2":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"18":{"tf":1.0},"26":{"tf":1.0},"57":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"44":{"tf":1.0},"57":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"16":{"tf":1.0},"9":{"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#overview","index.html#introduction","index.html#standard-library-documentation","index.html#contributing","lang/0_install.html#installation","lang/0_install.html#nix-usersrecommended","lang/0_install.html#windows-users","lang/1_hello_world.html#hello-world","lang/1_hello_world.html#creating-a-project-directory","lang/1_hello_world.html#writing-the-code","lang/1_hello_world.html#reviewing-the-code","lang/2_project_manager.html#project-manager","lang/2_project_manager.html#creating-a-new-project","lang/2_project_manager.html#building-a-project","lang/2_project_manager.html#running-a-project","lang/3_config.html#configure-the-compiler","lang/4_guessing_game.html#write-a-guessing-game","lang/5_comments.html#comments","lang/6_types.html#primitive-types","lang/7_00_variables.html#variables","lang/7_00_variables.html#non-nullable-and-nullable","lang/7_00_variables.html#pointers","lang/7_00_variables.html#static-variables","lang/7_01_numbers.html#numbers","lang/7_02_strings.html#strings","lang/7_03_arrays.html#arrays","lang/7_04_type_compatibility.html#type-compatibility","lang/8_conditional_statements.html#conditional-statements","lang/8_conditional_statements.html#if","lang/8_conditional_statements.html#else","lang/8_conditional_statements.html#else-if","lang/8_conditional_statements.html#and-and-or-and-not","lang/8_conditional_statements.html#conditional-operators","lang/9_loops.html#loops","lang/10_functions.html#functions","lang/10_functions.html#calling-a-function","lang/10_functions.html#function-overloading","lang/10_functions.html#passing-function-as-parameter","lang/10_functions.html#function-decorators","lang/11_importing.html#importing--creating-modules","lang/11_importing.html#importing-a-module","lang/11_importing.html#importing-multiple-modules","lang/11_importing.html#creating-a-module","lang/12_structs.html#structures","lang/12_structs.html#structures-as-return-values","lang/12_structs.html#structures-as-arguments","lang/12_structs.html#structure-inheritance","lang/13_memory_management.html#memory-management","lang/13_memory_management.html#allocation","lang/13_memory_management.html#reallocation","lang/13_memory_management.html#deallocation","lang/13_memory_management.html#accessing-memory","lang/13_memory_management.html#critical-notes","lang/14_interfacing_with_cpp.html#interfacing-with-c","lang/14_interfacing_with_cpp.html#inline-c-code","lang/14_interfacing_with_cpp.html#externing-functions","lang/14_interfacing_with_cpp.html#include-c-headers","lang/14_interfacing_with_cpp.html#accessing-to-values-and-types-in-inline-c-code","stdlib.html#standard-library-documentation","hpm.html#package-manager","hpm.html#installing-a-package","hpm.html#updating-a-package","hpm.html#listing-packages","ide.html#ide-integration","ROADMAP.html#hascals-roadmap","ROADMAP.html#language","ROADMAP.html#standard-library","ROADMAP.html#package-manager","CHANGELOG.html#hascals-changelog"],"index":{"documentStore":{"docInfo":{"0":{"body":0,"breadcrumbs":2,"title":1},"1":{"body":44,"breadcrumbs":2,"title":1},"10":{"body":83,"breadcrumbs":4,"title":2},"11":{"body":12,"breadcrumbs":4,"title":2},"12":{"body":81,"breadcrumbs":5,"title":3},"13":{"body":15,"breadcrumbs":4,"title":2},"14":{"body":13,"breadcrumbs":4,"title":2},"15":{"body":86,"breadcrumbs":4,"title":2},"16":{"body":1,"breadcrumbs":6,"title":3},"17":{"body":16,"breadcrumbs":2,"title":1},"18":{"body":37,"breadcrumbs":3,"title":2},"19":{"body":25,"breadcrumbs":2,"title":1},"2":{"body":5,"breadcrumbs":4,"title":3},"20":{"body":62,"breadcrumbs":4,"title":3},"21":{"body":64,"breadcrumbs":2,"title":1},"22":{"body":22,"breadcrumbs":3,"title":2},"23":{"body":62,"breadcrumbs":3,"title":1},"24":{"body":146,"breadcrumbs":3,"title":1},"25":{"body":79,"breadcrumbs":3,"title":1},"26":{"body":38,"breadcrumbs":5,"title":2},"27":{"body":9,"breadcrumbs":4,"title":2},"28":{"body":15,"breadcrumbs":2,"title":0},"29":{"body":17,"breadcrumbs":2,"title":0},"3":{"body":35,"breadcrumbs":2,"title":1},"30":{"body":22,"breadcrumbs":2,"title":0},"31":{"body":62,"breadcrumbs":2,"title":0},"32":{"body":84,"breadcrumbs":4,"title":2},"33":{"body":38,"breadcrumbs":2,"title":1},"34":{"body":50,"breadcrumbs":2,"title":1},"35":{"body":24,"breadcrumbs":3,"title":2},"36":{"body":32,"breadcrumbs":3,"title":2},"37":{"body":87,"breadcrumbs":4,"title":3},"38":{"body":27,"breadcrumbs":3,"title":2},"39":{"body":8,"breadcrumbs":6,"title":3},"4":{"body":13,"breadcrumbs":2,"title":1},"40":{"body":17,"breadcrumbs":5,"title":2},"41":{"body":21,"breadcrumbs":6,"title":3},"42":{"body":66,"breadcrumbs":5,"title":2},"43":{"body":52,"breadcrumbs":2,"title":1},"44":{"body":8,"breadcrumbs":4,"title":3},"45":{"body":10,"breadcrumbs":3,"title":2},"46":{"body":22,"breadcrumbs":3,"title":2},"47":{"body":27,"breadcrumbs":4,"title":2},"48":{"body":36,"breadcrumbs":3,"title":1},"49":{"body":26,"breadcrumbs":3,"title":1},"5":{"body":19,"breadcrumbs":3,"title":2},"50":{"body":12,"breadcrumbs":3,"title":1},"51":{"body":13,"breadcrumbs":4,"title":2},"52":{"body":36,"breadcrumbs":4,"title":2},"53":{"body":8,"breadcrumbs":4,"title":2},"54":{"body":30,"breadcrumbs":5,"title":3},"55":{"body":15,"breadcrumbs":4,"title":2},"56":{"body":76,"breadcrumbs":5,"title":3},"57":{"body":50,"breadcrumbs":8,"title":6},"58":{"body":5,"breadcrumbs":6,"title":3},"59":{"body":9,"breadcrumbs":5,"title":2},"6":{"body":32,"breadcrumbs":3,"title":2},"60":{"body":29,"breadcrumbs":5,"title":2},"61":{"body":12,"breadcrumbs":5,"title":2},"62":{"body":35,"breadcrumbs":5,"title":2},"63":{"body":2,"breadcrumbs":4,"title":2},"64":{"body":0,"breadcrumbs":3,"title":2},"65":{"body":61,"breadcrumbs":2,"title":1},"66":{"body":2,"breadcrumbs":3,"title":2},"67":{"body":0,"breadcrumbs":3,"title":2},"68":{"body":766,"breadcrumbs":4,"title":2},"7":{"body":14,"breadcrumbs":4,"title":2},"8":{"body":17,"breadcrumbs":5,"title":3},"9":{"body":66,"breadcrumbs":4,"title":2}},"docs":{"0":{"body":"","breadcrumbs":"Overview » Overview","id":"0","title":"Overview"},"1":{"body":"Hascal is a general purpose and open source programming language designed to build optimal, maintainable, reliable, and efficient software. More features of Hascal : Easy to use and easy to learn Multi-paradigm Null safety by default Fast and powerful Inspired by Swift, Pascal Compiles to C++ Compatible with C\\C++\\Obj-C Builtin compile time FFI system Built-in HTTP Library","breadcrumbs":"Overview » Introduction","id":"1","title":"Introduction"},"10":{"body":"Let's review our simple program. Here's the first piece of the program: function main() : int { } These lines define a function that returns an integer number. The main function is the entry point of your program and it should always return int(an integer). If there were parameters, they would go inside the parentheses, (). Also, note that function statements should be in {} and you can write function codes inside {}. Inside the main function is the following code : print(\"Hello World!\") This code print the passed arguments, you can pass more parameters : print(\"Hello World!\",42,3.14) After the calling print command, there is the following statement : return 0 It returns 0 at the end of the function, every function that returns a value(declared with : after () in a function declaration) should return a value corresponding to the type. Returning the 0 value in main function tell the OS that your program has executed successfully.","breadcrumbs":"Hello World! » Reviewing the code","id":"10","title":"Reviewing the code"},"11":{"body":"Hascal has a builtin build system and project manager. This tool builds and runs your project, and installs dependencies.","breadcrumbs":"Project Manager » Project Manager","id":"11","title":"Project Manager"},"12":{"body":"Let's create a new project and compare it with the Hello World example in previous chapter. To create a project you should create a directory for your project : $ mkdir hello_world_2\n$ cd hello_world_2 Now we create a new project with following command : $ hascal init After running above command, you’ll see Hascal has generated two files and one directory for us: a config.json file, a .gitignore file and a src directory with a app.has file inside. config.json : { \"filename\": \"src/app.has\", \"outfile\": \"build/app\", } The filename field contains your main file that contains your entry function(main) and outfile field is output path of excutable file. src/app.has : function main():int{ print(\"Hello World!\") return 0\n} The generated Hascal file contains Hello World! program, you can edit it.","breadcrumbs":"Project Manager » Creating a new project","id":"12","title":"Creating a new project"},"13":{"body":"You can build the project with following command : $ hascal build Excutable file will generate in build directory and you can run it with following command : $ ./build/app","breadcrumbs":"Project Manager » Building a project","id":"13","title":"Building a project"},"14":{"body":"To run the project, you can use run command : $ hascal run\nHello World! That builds excutable file and runs it.","breadcrumbs":"Project Manager » Running a project","id":"14","title":"Running a project"},"15":{"body":"You can use config.json file to configure your Hascal compiler. The following configuration options are available: filename : your main file name, if you set it, you will no longer need to pass the file name to the compiler. compiler : your c++ compiler name(e.g : g++,clang++) optimize : optimize level(0,1,2,3)(default : no optimize, e.g: -O2) flags : custom flags(e.g:[\"-pthread\"]) c++_version : your c++ standard(e.g:c++17 or c++20), note: c++ version must be greater than or equal to c++17 and compiler must support c++17 compiler_output : if you want to see c++ compiler output, set this to true c++_out : if you want to see generated c++ code, set this to true, the generated c++ code are in your_filename.cc fil. only_compile if you want only to compile and not link program, set this to true. no_std : if it is true, the runtime library will not link with your code(you will not be able to use builtin functions).","breadcrumbs":"Configure the compiler » Configure the compiler","id":"15","title":"Configure the compiler"},"16":{"body":"TODO","breadcrumbs":"Write a guessing game » Write a guessing game","id":"16","title":"Write a guessing game"},"17":{"body":"Comments are used to document code and to explain what the code does, they are not executed. // This is a single line comment /*\nThis is a multi-line comment\nThis is a multi-line comment\n*/","breadcrumbs":"Comments » Comments","id":"17","title":"Comments"},"18":{"body":"The following types are primitive: bool // boolean value string // string literal int8 uint8 // 8-bit integer\nint16 uint16 // 16-bit integer\nint int32 uint32 // 32-bit integer\nint64 uint64 // 64-bit integer float // floating point double // double floating point","breadcrumbs":"Types » Primitive types","id":"18","title":"Primitive types"},"19":{"body":"A variable is a named storage for a value. Variables are declared using the var keyword : var foo : int = 1 Also you can declare a variable without type, in this case, the type will be inferred by the value assigned to it: var foo = 1","breadcrumbs":"Variables » Variables","id":"19","title":"Variables"},"2":{"body":"Standard Library Documentation available here .","breadcrumbs":"Overview » Standard Library Documentation","id":"2","title":"Standard Library Documentation"},"20":{"body":"Null safety is a feature that allows you to declare that a variable can be null or not null, and Hascal uses this feature to make sure that your code is safe. Hascal's variables and constants are non-nullable by default that means that they cannot be null(NULL) and you can't assign NULL to them and you should assign a value to them when you declare them . var foo : int = 1 // non-nullable\nvar foo_error : int // error : nullable variable must be assigned a value But you can make variables and constants nullable by adding ? to their type: var bar : int? = 1 // nullable so you can use NULL to set a variable to null : bar = NULL // ok","breadcrumbs":"Variables » Non nullable and nullable","id":"20","title":"Non nullable and nullable"},"21":{"body":"Pointers are a way to access the memory address of a variable. You can declare a pointer using the ^ operator after the type: var foo : int^? NOTE: pointers are non-nullable by default, use ? to make it nullable: You use cast to assign a value to a pointer: foo = (int^)1 Finally, you can use the ^ operator to access the value stored in a pointer: var foo : int^ = (int^)1\nprint(^foo) // 1 NOTE : We recommend you to always allocate pointers with new keyword and deallocate with delete keyword, for more information go to Memory management chapter . NOTE: Currently only one level of pointers are supported.","breadcrumbs":"Variables » Pointers","id":"21","title":"Pointers"},"22":{"body":"Static variables are variables that are declared outside of a function and are accessible from anywhere in the program. Static variables are declared using the static keyword before the type: var foo : static int = 1","breadcrumbs":"Variables » Static variables","id":"22","title":"Static variables"},"23":{"body":"Numbers are either integers or floating point numbers. You can declare a number using the following types: int8 uint8 // 8-bit integer\nint16 uint16 // 16-bit integer\nint int32 uint32 // 32-bit integer\nint64 uint64 // 64-bit integer float // floating point double // double floating point So you can use the following operators to perform arithmetic operations: + : addition - : subtraction * : multiplication / : division See the following example: var a : int = 123\nvar b : float = 1.23\nvar c : double = 1.2313213215648789798","breadcrumbs":"Variables » Numbers » Numbers","id":"23","title":"Numbers"},"24":{"body":"Strings are a sequence of characters. You can declare a string using the string keyword: var foo : string = \"Hello World\" You can use the + operator to concatenate strings: var foo : string = \"Hello\" + \" World\" And you can use the [] operator to access a character in a string: var foo : string = \"Hello\"\nprint(foo[1]) // 'e' Note: type of accessed character is char Note: the first character in a string is at index 0. With len function you can get the length of a string: var foo : string = \"Hello\"\nprint(len(foo)) // 5 Note: len function is a built-in function. Escape sequences You can use escape sequences to print special characters: var foo : string = \"Hello\\tWorld\"\nprint(foo) // Hello World The following escape sequences are supported: \\n : newline \\t : tab \\r : carriage return \\\\ : backslash \\' : single quote \\\" : double quote \\? : question mark \\a : bell \\b : backspace \\f : form feed \\v : vertical tab \\0 : null character \\x____ : hexadecimal character \\u____ : unicode character \\U____ : unicode character \\_____ : arbitrary octal value Note: _____ means you should specify the id of the character you want to print. Reverse a string You can reverse a string by using the string_reverse function in the strings package: use strings function main() { var foo : string = \"Hello World\" print(string_reverse(foo)) // dlroW olleH\n}","breadcrumbs":"Variables » Strings » Strings","id":"24","title":"Strings"},"25":{"body":"Arrays are collections of data elements of the same type. They can be represented by a list of elements surrounded by brackets. The elements can be accessed by appending an index (starting with 0) in brackets to the array variable: Arrays declare like following: var foo : [int] = [1,2,3]\nvar bar : [string] = [\"Hello\", \"World\"] You can use the [] operator to access an element in an array: var foo : [int] = [1,2,3]\nprint(foo[1]) // 2 And you can assign a value to an array element: var foo : [int] = [1,2,3]\nfoo[1] = 4\nprint(foo[1]) // 4 With append built-in function you can append an element to an array: var foo : [int] = [1,2,3]\nfoo.append(4)\nprint(foo[3]) // 4 And you can get the length of an array with the len built-in function: var foo : [int] = [1,2,3]\nprint(len(foo)) // 3","breadcrumbs":"Variables » Arrays » Arrays","id":"25","title":"Arrays"},"26":{"body":"Type compatibility is very close to automatic or implicit type conversion. The type compatibility is being able to use two types together without modification and being able to subsititute one for the other without modification. Compatible types are: int (and its subtypes like uint8,etc) and float. int(and its subtypes like uint8,etc) and double. float and double Note: strings are not compatible with characters.","breadcrumbs":"Variables » Type compatibility » Type compatibility","id":"26","title":"Type compatibility"},"27":{"body":"Conditional statements are used to execute a block of code if a condition is true or false.","breadcrumbs":"Conditional statements » Conditional statements","id":"27","title":"Conditional statements"},"28":{"body":"You can use the if keyword to execute a block of code, if a condition is true: var foo : int = 1\nif foo == 1 { print(\"foo is 1\")\n}","breadcrumbs":"Conditional statements » If","id":"28","title":"If"},"29":{"body":"You can use the else keyword to execute a block of code, if a condition is false: var foo : int = 1\nif foo == 1 { print(\"foo is 1\")\n} else { print(\"foo is not 1\")\n}","breadcrumbs":"Conditional statements » Else","id":"29","title":"Else"},"3":{"body":"We welcome contributions of all kinds. You can contribute to this book by opening an issue or forking and sending a pull request to the main Hascal repository. Knowing what people use this book for the most helps direct our attention to making those sections the best that they can be. We also want the reference to be as normative as possible, so if you see anything that is wrong, please also file an issue.","breadcrumbs":"Overview » Contributing","id":"3","title":"Contributing"},"30":{"body":"You can use the else if statement to execute a block of code, if else if a condition is true: var foo : int = 1\nif foo == 1 { print(\"foo is 1\")\n} else if foo == 2 { print(\"foo is 2\")\n} else { print(\"foo is not 1 or 2\")\n}","breadcrumbs":"Conditional statements » Else if","id":"30","title":"Else if"},"31":{"body":"You can use the and keyword to execute a block of code, if all conditions are true: var foo : int = 1\nvar bar : int = 2\nif foo == 1 and bar == 2 { print(\"foo is 1 and bar is 2\")\n} You can use the or keyword to execute a block of code, if at least one condition is true: var foo : int = 1\nvar bar : int = 2\nif foo == 1 or bar == 2 { print(\"foo is 1 or bar is 2\")\n} You can use the not keyword to execute a block of code, if a condition is false: var foo : int = 1\nif not foo == 1 { print(\"foo is not 1\")\n}","breadcrumbs":"Conditional statements » and and or and not","id":"31","title":"and and or and not"},"32":{"body":"Operator Description Example == Returns true if the operands are equal. var1 == var2 != Returns true if the operands are not equal. var1 != var2 > Returns true if the left operand is greater than the right operand. var1 > var2 >= Returns true if the left operand is greater than or equal to the right operand. var1 >= var2 < Returns true if the left operand is less than the right operand. var1 < var2 <= Returns true if the left operand is less than or equal to the right operand. var1 <= var2 and Returns true if the left operand and right operand are true var1 == 1 and var2 == 2 or Returns true if the left operand or right operand are true var1 == 1 or var2 == 2 not Returns true if the operand are false or if the operand is true returns false not true","breadcrumbs":"Conditional statements » Conditional Operators","id":"32","title":"Conditional Operators"},"33":{"body":"You can use the while keyword to execute a block of code, if a condition is true: var foo : int = 1\nwhile foo == 1 { print(\"foo is 1\") foo = 2\n} The for keyword is used to execute a block of code for a number of times: for i in range(0, 10) { print(i)\n} Also you can use the for keyword for iterating over an array: var foo : [int] = [1,2,3]\nfor i in foo { print(i)\n}","breadcrumbs":"Loops » Loops","id":"33","title":"Loops"},"34":{"body":"Functions are a way to group code that can be called to perform a specific task. You can declare a function using the function keyword: function foo() { print(\"Hello World\")\n} Also your function block should be outside of a function. Your function can have parameters and return a value. You can declare parameters and return type, like variable declarations: function add(x:int,y:int): int { return x + y\n} In the example above, x and y are parameters and their type(int) is your return type. Note: you can use ? to make a parameter nullable.","breadcrumbs":"Functions » Functions","id":"34","title":"Functions"},"35":{"body":"You can call a function by using the function name followed by parentheses: foo() If you want to pass some arguments to your function, you can use them in the parentheses(separate with ,): foo(1,2,3) Also you can assign the return value of a function to a variable: var foo : int = add(1,2)","breadcrumbs":"Functions » Calling a function","id":"35","title":"Calling a function"},"36":{"body":"You can overload functions by defining a new function and changing the number of parameters or the type of parameters or return type of function : function add(x:int,y:int,z:int): int { return x + y + z\n} // overloading function `add`\nfunction add(x:int,y:int){ print(x + y)\n} function main(): int { print(add(1,2)) print(add(1,2,3))\n}","breadcrumbs":"Functions » Function overloading","id":"36","title":"Function overloading"},"37":{"body":"To passing a function as parameter you should define a parameter in with Function type with following syntax : Function[,,...] For example : function foo(func: Function[float, int]int) : int{ } At above we defined a function with name foo that takes a function as its parameter and given function should has two parameters with types float and int(respectively) and it should returns int. Also we can call given function like other functions, change the foo function code to following code : function foo(func: Function[float, int]int){ print(func(1.0,2))\n} Now we define a function to pass to foo func and must have the properties specified in the foo function(two parameters with types int and float and int as return type): function bar(a:float, b:int) : int { print(\"Hello from bar function!\") return a + b\n} Now we can pass bar function to foo function as parameter : foo(bar) Output : Hello from bar function!\n3","breadcrumbs":"Functions » Passing function as parameter","id":"37","title":"Passing function as parameter"},"38":{"body":"Decorator is a way to add some properties to a function and it is used with @ character + decorator name before function declaration. List of available decorators in Hascal : | Decorator | Description | | :------------- | :----------: | | @static_function | Makes function static | | @extern | Externs function( like extern in C++ ) |","breadcrumbs":"Functions » Function decorators","id":"38","title":"Function decorators"},"39":{"body":"A module is a package of code that can be imported into another module to use its code.","breadcrumbs":"Importing & Creating modules » Importing & Creating modules","id":"39","title":"Importing & Creating modules"},"4":{"body":"Requirements : python>=3.7 gcc>=8(or any c++ compiler that supports c++17) libcurl,libssl,libcrypt git(to clone Hascal's source code)","breadcrumbs":"Installation » Installation","id":"4","title":"Installation"},"40":{"body":"You can use other modules by importing them. You can import a module by using the use keyword: use os function main() : int { system(\"start http://www.google.com\") return 0\n}","breadcrumbs":"Importing & Creating modules » Importing a module","id":"40","title":"Importing a module"},"41":{"body":"You can import multiple modules by using the use keyword and separating the module names with a comma: use os, math, conv For importing a submodule of a module, you can use the . operator: use crypto.sha256","breadcrumbs":"Importing & Creating modules » Importing multiple modules","id":"41","title":"Importing multiple modules"},"42":{"body":"For creating a module, you can create a file with the same name as the module and with the extension .has and put the module code inside it: add.has: function add(x:int, y:int) : int { return x + y\n} main.has: use add function main() : int { print(add(1,2)) return 0\n} Creating foldered modules Module files can be placed in a folder, for creating a foldered module you should first create the folder and then create the _.has file inside it. The _.has file is the main file of the module and compiler will look for it. You can also import submodules in _.has file. Note: Any submodule that is not imported in _.has file will be ignored. Note: Any submodule can have other submodules.","breadcrumbs":"Importing & Creating modules » Creating a module","id":"42","title":"Creating a module"},"43":{"body":"Structures are a way to group data together. You can declare a structure using the struct keyword: struct Color { var r : int var g : int var b : int var name = \"Anything...\" // optional\n} Note: Declaring a structure member without a type will make it optional. After declaring a structure, you can create an instance of it: var red = Color(255,0,0) For accessing the fields of a structure, you should use the . operator: var red = Color(255,0,0)\nprint(red.r)\nprint(red.g)\nprint(red.b)\nprint(red.name)","breadcrumbs":"Structures » Structures","id":"43","title":"Structures"},"44":{"body":"You can return a structure from a function: function foo() : Color { return Color(1,2,3)\n}","breadcrumbs":"Structures » Structures as return values","id":"44","title":"Structures as return values"},"45":{"body":"You can pass a structure as an argument to a function: function foo(c:Color) { print(c.r) print(c.g) print(c.b) print(c.name)\n}","breadcrumbs":"Structures » Structures as arguments","id":"45","title":"Structures as arguments"},"46":{"body":"You can inherit a structure from another structure with : operator after the structure name: struct RGB : Color { } And you can access the fields of the inherited structure: var foo : RGB = RGB(1,2,3)\nprint(foo.r,foo.g,foo.b) var bar = RGB(255,0,0,\"AColor\")","breadcrumbs":"Structures » Structure inheritance","id":"46","title":"Structure inheritance"},"47":{"body":"Memory management is a way to manage the memory of your program. Hascal use manual memory management because it is used in most performance-critical applications like games,OSes, embedded systems, etc. Hascal uses new and delete keywords to manage memory manually.","breadcrumbs":"Memory management » Memory management","id":"47","title":"Memory management"},"48":{"body":"For allocating memory, you should use the new keyword. Note that type of the allocated memory should be pointer or reference type and passed type to new keyword should be a var foo : int^ = new int(1) // allocating For easily declaring and allocating memory, use var = new () statement, like this: var foo = new int(1)","breadcrumbs":"Memory management » Allocation","id":"48","title":"Allocation"},"49":{"body":"For reallocating memory and assigning the new value to the pointer, use = new () statement, like this: var foo : int^ = new int(1) // allocate memory\nfoo = new int(2) // reallocate memory and assign new value","breadcrumbs":"Memory management » Reallocation","id":"49","title":"Reallocation"},"5":{"body":"You can use the hascal.sh script to automate the process of installing and adding hascal to PATH: git clone https://github.com/hascal/hascal.git\ncd hascal/\nchmod +x ./hascal.sh\nbash ./hascal.sh","breadcrumbs":"Installation » *Nix Users(recommended)","id":"5","title":"*Nix Users(recommended)"},"50":{"body":"For deallocating memory, you should use the delete keyword and pass the pointer to the memory that you want to deallocate: delete foo","breadcrumbs":"Memory management » Deallocation","id":"50","title":"Deallocation"},"51":{"body":"Like pointer types, you can access the allocated memory value with the ^ operator: var foo : int^ = new int(1)\nprint(^foo)","breadcrumbs":"Memory management » Accessing memory","id":"51","title":"Accessing memory"},"52":{"body":"Don't forget to use the delete keyword at end of scope and before the end of the program.. In future, we will add a feature to show warnings when you forget to use the delete keyword. You can't deallocate memory that you haven't allocated it without new keyword. You can allocate, not allocated pointers : var foo : int^?\nfoo = new int(1)","breadcrumbs":"Memory management » Critical notes","id":"52","title":"Critical notes"},"53":{"body":"Hascal is based on C++, so you can use C++ functions and classes in your program.","breadcrumbs":"Interfacing with C++ » Interfacing with C++","id":"53","title":"Interfacing with C++"},"54":{"body":"You can use inline c++ code in Hascal with cuse keyword : cuse '#include '\ncuse 'int main(){printf(\"%d\",1);return 0;}'\n// output : 1 Or you can use multiline c++ code, like following example: cuse \"\"\"\n#include int main(){ printf(\"%d\",1); return 0;\n}\n\"\"\"","breadcrumbs":"Interfacing with C++ » Inline C++ Code","id":"54","title":"Inline C++ Code"},"55":{"body":"For using C++ functions in your program, you should at first declare them with following syntax: function () : Example : function system(command:char^):int","breadcrumbs":"Interfacing with C++ » Externing functions","id":"55","title":"Externing functions"},"56":{"body":"Also Hascal can include C++ headers in your program. We need two files, one for headers and one for main part of the library. You should put #include,... in your_cpp_lib.hpp and main part of library in your_cpp_lib.cc. The specified files should exist in the same folder. See the example below: add.cc : void __hascal__cpp_print(int x){ printf(\"%d\",x);\n} add __hascal__ to your C++ functions, structs name. Hascal transpiles to C++ and it adds __hascal__ prefix to your C++ names. add.hpp : #include main.has : cuse add function cpp_print(x:int) function main() : int { cpp_print(12) return 0\n} Also you can put the C++ files in a folder and rename they to _.cc and _.hpp. Note that don't include local headers in *.hpp file.","breadcrumbs":"Interfacing with C++ » Include C++ headers","id":"56","title":"Include C++ headers"},"57":{"body":"You can access to Hascal's variable and types in inline C++ codes in Hascal by adding __hascal__ prefix to a name, for example: main.has: function add(a:int,b:int){ cuse \"\"\" std::cout << a + b; \"\"\"\n} you can return a value in inline C++ codes by returning a meaningless value with same type as return type of the function(it may be ridiculous, we are currently working to improve it): function add(a:int,b:int){ cuse \"\"\" return a + b; \"\"\" return 0 // return a value with same type as return type of the function\n}","breadcrumbs":"Interfacing with C++ » Accessing to values and types in inline C++ code","id":"57","title":"Accessing to values and types in inline C++ code"},"58":{"body":"To read Hascal's stdlib go to this link .","breadcrumbs":"Standard Library Documentation » Standard Library Documentation","id":"58","title":"Standard Library Documentation"},"59":{"body":"Hascal has a built-in package manager that allows you to install packages from the a git repository.","breadcrumbs":"Package Manager Documentation » Package Manager","id":"59","title":"Package Manager"},"6":{"body":"> git clone https://github.com/hascal/hascal.git\n> cd hascal\n> make deps-windows\n> make windows Now your Hascal compiler is ready to use in dist folder, you can add it to $PATH. NOTE : The latest version of Hascal should always be used. Old versions have bugs when running binary versions of Hascal.","breadcrumbs":"Installation » Windows Users","id":"6","title":"Windows Users"},"60":{"body":"To get and install a package, you can use the get command : hascal get is the url of the git repository is the name of the package(optional, recommended, default is the url) Note: If you don't specify the package name, you should import it like this : use github.com.foo.bar","breadcrumbs":"Package Manager Documentation » Installing a package","id":"60","title":"Installing a package"},"61":{"body":"To update a package, you can use the update command : hascal update ","breadcrumbs":"Package Manager Documentation » Updating a package","id":"61","title":"Updating a package"},"62":{"body":"To list all packages, you can use the list command : hascal list if you want to list all subpackages of a package, you can use the list command with name of the package : hascal list is the name of the package you want to list subpackages For example : $ hascal list crypto\nlist of all subpackages in crypto :\n- sha256","breadcrumbs":"Package Manager Documentation » Listing packages","id":"62","title":"Listing packages"},"63":{"body":"Vscode Extension","breadcrumbs":"IDE Integration » IDE Integration","id":"63","title":"IDE Integration"},"64":{"body":"","breadcrumbs":"Roadmap » Hascal's Roadmap","id":"64","title":"Hascal's Roadmap"},"65":{"body":"js backend lambdas : var mythread = thread(function(x:int,y:int){ print(x*y)\n}) generate html doc from a code classes class C : T { var foo : string var bar = 1 // constructor C(foo: string){ this.foo = foo } public f(x: string): string { return x } private f2(x: string): string { return x } // allocator __new__(foo: string): C { return new C(foo) } // deallocator __delete__(foo: string): C { delete this.foo delete this.bar }\n} generics #26 s rewrite compiler in hascal const correctness","breadcrumbs":"Roadmap » Language","id":"65","title":"Language"},"66":{"body":"thread library","breadcrumbs":"Roadmap » Standard Library","id":"66","title":"Standard Library"},"67":{"body":"","breadcrumbs":"Roadmap » Package Manager","id":"67","title":"Package Manager"},"68":{"body":"v1.4.2 New features Changes observe Hasca's coding style in libraries Bug fixes Removed v1.4.1 Bug fixes No errors when main doesn't return anything #67 (by @mehanalavimajd ) v1.4.0 New features add builtin range function function main(): int { // prints 1 to 10 for i in range(1,11){ print(i) } return 0\n} add asin, acos, asinh, acosh, exp, frexpr, ldexp, log, log10, fdim, sqrt, ceil, floor, NaN, max, min functions to math library, see documentation . Showing error for overloading function's return type. Changes Speedup parsing and compiling Bug fixes fix passing list to for in statement Removed v1.3.12 New features add support for multiline C-style comment add round function to math library Changes Hascal relicensed from MIT license to BSD-3-Clause license Bug fixes fix string subscripting bug fix empty list parsing bug fix random library bugs Removed v1.3.11 New features add uniform distribution based random number generator called uniform in random library Changes change static decorator name to static_function name rename times function to multiplies in functional library rename if_and, if_or, if_not functions to _and, _or, _not in functional library Bug fixes fix package manager bug Removed v1.3.10 New features show error for undeleted variables from heap Changes improve math,os library in functional library : change lessThanOrEqual to lessThanEqual, greaterThanOrEqual to greaterThanEqual improve error handler for conditions pytest based test runner(@mmdbalkhi) fix conflicting with C\\C++\\Obj-C in FFI features change static decorator name to static_function name Bug fixes fix math library bug fix import package bug with _.* name fix crypto.sha256 library bug Removed remove libtcc from stdlib v1.3.9x v1.3.9 New features add hascal list command to list all available packages add hascal init command to create a new project, that generates config.json, .gitignore and src/app.has files add hascal build command to build project add hascal run command to run project add string_reverse(str:string) function to strings module add assert function to runtime library add no_std compiler option add filename config option Changes change emitting std::string for strings to string(because in showing assertion errors, std::string is illusory). use sys.exit instead of exit in src/core/h_help.py(@mmdbalkhi) fix importing system bugs improve typeof builtin function Bug fixes fix assigning NULL to arrays and pointers bug, #36. fix check_g++ config option bugs fix not defined consts when importing packages fix random library bug fix browser library bug Removed remove windows,browser libraries v1.3.9-rc.2 Bug fixes fix a critical bug in importing system v1.3.9-rc.1 Changes upgrade importing system some changes in self hosted compiler(NOTE: self hosted compiler is not ready yet) Bug fixes fix import bug when importing one package in multiple files fix self hosted bugs v1.3.9-rc Changes Rewrite package manager Bug fixes fix http library bug fix cpp importing bug v1.3.9-beta New features passing functions as arguments function f(x: int): int { return x + 1\n} function g(func:Function[int]int): int { return func(1)\n} add static variables, See this example add only_compile config option Changes upgrade importing system Bug fixes fix pyinstaller build issue Removed v1.3.9-alpha.1 Changes add download,upload,post functions to http library https support for http library add windows library(that includes windows.h) add browser library to open urls in default browser(now only supports windows) Bug fixes fix linker flag import bug in cuse statement v1.3.8 New features non-nullable and nullable variables Changes change pointer unary from * to ^ improve importing system Bug fixes fix repetitious imports bug fix #29 bug(by @mmdbalkhi ) Removed remove token library v1.3.7 New features manual memory management with new and delete keyword functional programming paradigm speed up compilation time add typeof function now can print arrays and structures function decorators static and extern decorator multiple library import improve importing system improve stdlib architecture Bug fixes fix scoping bug fix conv library bug fix conditions bug Removed export library removed local use statement removed v1.3.6 New features more data types : int8,uint8,int16,uint16,int32,uint32,int64,uint64,double type compatibility multi line string pointers and references var x : *int = 20\nvar y : int = 10\nx = &y\nvar z = *x // type : int // Pointers fix incomplete types on struct defination\nstruct bar { var self : *bar\n} add sizeof function Bug fixes fix lexer bugs check if function returns a value at end of string else show error main function should returns int fix termcolor library bugs fix enum bugs Standart library add sdl2 wrapper add export library for exporting to C(see : haspy ) add crypto.sha256 for sha256 hashing Removed libcinfo library removed v1.3.5 Standard library Updated os : add compiler_name function to get the name of the compiler add arch function to get the architecture of the system add is_x86 function to check if the architecture is x86 add is_x64 function to check if the architecture is x64 add getenv function to get an environment variable Added add libcinfo library to get information about the libc add termcolor library to colorize the output assets/termcolor.png Bug fixes Fix incomplete type defination bug v1.3.4 New features compiler option : now can generate c++ code from hascal code with c++_code : 1 in config.json file use cuse keyword to include c++ files. Bug fixes Fix semantic analyser bugs Fix standard library bug v1.3.3 New features struct inheritance can use cuse statement on struct declaration Bug fixes Fix variable scope bug Fix variable declaration bug Fix semantic analyser bug v1.3.2 New features for in statement library manager flag option cuse statement Bug fixes Fix semantic analyser bugs Fix nested struct bug Removed for to and for downto statement removed v1.3.1 New features Basic Semantic Anaslyser Removed remove semicolon from syntax","breadcrumbs":"Change Log » Hascal's Changelog","id":"68","title":"Hascal's Changelog"},"7":{"body":"Now that you have successfully installed Hascal, let's write our first program with it. You will write a program that prints Hello World! on the terminal.","breadcrumbs":"Hello World! » Hello World!","id":"7","title":"Hello World!"},"8":{"body":"You can write your Hascal programs every where but, we suggest that you create a directory for your project. At first, create a directory in your home directory(or anywhere else): mkdir hello_world\ncd hello_wrold","breadcrumbs":"Hello World! » Creating a project directory","id":"8","title":"Creating a project directory"},"9":{"body":"Next make a new file and name it main.has. Hascal files should end with .has extension. Now open your code editor (If you are using vscode install hascal extension for better coding from this link ) and write the following code in main.has : function main() : int { print(\"Hello World!\") return 0\n} Save the file, and return to the terminal and enter the following command to build your program : hascal main.has Now run the generated excutable file : $ ./main\nHello World! On Windows you should use .\\main.exe instead of ./main : $ .\\main.exe\nHello World! Congratulations - you just wrote and executed your first Hascal program!","breadcrumbs":"Hello World! » Writing the code","id":"9","title":"Writing the code"}},"length":69,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{"df":11,"docs":{"10":{"tf":1.7320508075688772},"12":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0}}},"1":{",":{"2":{",":{"3":{"df":2,"docs":{"25":{"tf":2.23606797749979},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"2":{"3":{"1":{"3":{"2":{"1":{"3":{"2":{"1":{"5":{"6":{"4":{"8":{"7":{"8":{"9":{"7":{"9":{"8":{"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":{}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":2,"docs":{"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"2":{"3":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":13,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":2.0},"30":{"tf":2.0},"31":{"tf":3.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"54":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.7320508075688772}}},"2":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"6":{"df":1,"docs":{"65":{"tf":1.0}}},"9":{"df":1,"docs":{"68":{"tf":1.0}}},"df":5,"docs":{"25":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":2.449489742783178},"32":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"3":{"2":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"6":{"df":1,"docs":{"68":{"tf":1.0}}},"df":3,"docs":{"25":{"tf":1.0},"37":{"tf":1.0},"68":{"tf":1.0}}},"4":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"5":{"df":1,"docs":{"24":{"tf":1.0}}},"6":{"4":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"7":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"_":{".":{"c":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"42":{"tf":2.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"_":{"_":{"_":{"_":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"_":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"56":{"tf":1.4142135623730951},"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"_":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"68":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"43":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"d":{"d":{"(":{"1":{",":{"2":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"b":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"y":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"z":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"34":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}}},".":{"c":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":7,"docs":{"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.7320508075688772},"6":{"tf":1.0},"68":{"tf":5.477225575051661}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":4,"docs":{"20":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":6,"docs":{"21":{"tf":1.0},"48":{"tf":2.23606797749979},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"65":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":2,"docs":{"20":{"tf":1.0},"59":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{".":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"10":{"tf":1.0},"21":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"39":{"tf":1.0},"46":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"3":{"tf":1.0},"43":{"tf":1.0},"68":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"22":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":2.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"25":{"tf":2.8284271247461903},"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}},"h":{"df":1,"docs":{"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":7,"docs":{"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":1,"docs":{"5":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"15":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"(":{"a":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":2.449489742783178},"37":{"tf":1.7320508075688772},"46":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"h":{"df":1,"docs":{"5":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"26":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.0},"38":{"tf":1.0},"52":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"56":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"18":{"tf":2.0},"23":{"tf":2.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"18":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}},"s":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"(":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"6":{"tf":1.0},"68":{"tf":7.211102550927978}}},"i":{"df":0,"docs":{},"l":{"d":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"12":{"tf":1.0},"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":6,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"13":{"tf":2.0},"14":{"tf":1.0},"68":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"15":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}}}},"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"+":{"+":{"1":{"7":{"df":2,"docs":{"15":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"\\":{"c":{"+":{"+":{"\\":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"68":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}},"d":{"df":4,"docs":{"12":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}}},"df":12,"docs":{"1":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"23":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":2.449489742783178},"57":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"68":{"tf":2.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"68":{"tf":4.123105625617661}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"21":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"24":{"tf":3.1622776601683795},"26":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":1,"docs":{"68":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"y":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":20,"docs":{"10":{"tf":2.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"65":{"tf":1.0},"68":{"tf":1.7320508075688772},"9":{"tf":2.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"5":{",":{"0":{",":{"0":{"df":1,"docs":{"43":{"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":4,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"68":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"41":{"tf":1.0}},"n":{"d":{"df":9,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"68":{"tf":2.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":2.23606797749979},"68":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}},"t":{"df":3,"docs":{"1":{"tf":1.0},"26":{"tf":2.23606797749979},"68":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"15":{"tf":2.8284271247461903},"4":{"tf":1.0},"42":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"68":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.7320508075688772}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"65":{"tf":1.0},"68":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"41":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"68":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"12":{"tf":2.23606797749979},"39":{"tf":1.0},"42":{"tf":2.6457513110645907},"43":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"47":{"tf":1.0},"52":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":2,"docs":{"41":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"57":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"54":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"68":{"tf":2.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"25":{"tf":1.0},"43":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"21":{"tf":1.0},"50":{"tf":1.7320508075688772},"52":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":14,"docs":{"10":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.7320508075688772},"38":{"tf":1.0},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":2.23606797749979},"68":{"tf":2.0}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"10":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"21":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}},"p":{"df":1,"docs":{"6":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"8":{"tf":1.7320508075688772}}},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"o":{"c":{"df":1,"docs":{"65":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"17":{"tf":1.0},"2":{"tf":1.4142135623730951},"58":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"52":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"18":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"26":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":1,"docs":{"24":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}},"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":{"25":{"tf":2.449489742783178}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"n":{"d":{"df":4,"docs":{"10":{"tf":1.0},"52":{"tf":1.4142135623730951},"68":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"12":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"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":1,"docs":{"68":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"15":{"tf":1.0},"32":{"tf":2.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"68":{"tf":2.449489742783178}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":11,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"p":{"df":1,"docs":{"68":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"42":{"tf":1.0},"63":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.7320508075688772},"55":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"f":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"65":{"tf":1.0},"68":{"tf":1.0}}}},"2":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":1,"docs":{"24":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"20":{"tf":1.4142135623730951},"52":{"tf":1.0},"68":{"tf":3.872983346207417}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"43":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"15":{"tf":1.0}},"e":{"df":9,"docs":{"12":{"tf":2.6457513110645907},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.7320508075688772},"3":{"tf":1.0},"42":{"tf":2.6457513110645907},"56":{"tf":2.0},"68":{"tf":2.0},"9":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"10":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"x":{"df":1,"docs":{"68":{"tf":7.615773105863909}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"18":{"tf":1.7320508075688772},"23":{"tf":2.23606797749979},"26":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"42":{"tf":2.0},"56":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"o":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"c":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"4":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"[":{"1":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":22,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"24":{"tf":2.449489742783178},"25":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":2.449489742783178},"33":{"tf":2.23606797749979},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"44":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}}},"k":{"df":1,"docs":{"3":{"tf":1.0}}},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"(":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"37":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"68":{"tf":1.0}}},"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"[":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{",":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"2":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{",":{".":{".":{".":{"]":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":21,"docs":{"10":{"tf":3.1622776601683795},"12":{"tf":1.0},"15":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":2.23606797749979},"25":{"tf":1.4142135623730951},"34":{"tf":3.0},"35":{"tf":2.23606797749979},"36":{"tf":2.8284271247461903},"37":{"tf":4.123105625617661},"38":{"tf":2.23606797749979},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"68":{"tf":5.196152422706632},"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"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":{},"t":{"]":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"+":{"+":{",":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"16":{"tf":1.0}},"s":{",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"c":{">":{"=":{"8":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"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}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"1":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":5,"docs":{"5":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"o":{"df":3,"docs":{"10":{"tf":1.0},"21":{"tf":1.0},"58":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"15":{"tf":1.0},"32":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"34":{"tf":1.0},"43":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"c":{"a":{"'":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{},"l":{"'":{"df":6,"docs":{"20":{"tf":1.0},"4":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}}},"df":25,"docs":{"1":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":1.0},"68":{"tf":2.449489742783178},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":2.0}}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"2":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"24":{"tf":2.449489742783178},"25":{"tf":1.0},"37":{"tf":1.0},"7":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"p":{"df":1,"docs":{"3":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"10":{"tf":1.0}}},"df":1,"docs":{"2":{"tf":1.0}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":2.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":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"d":{"df":2,"docs":{"24":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"39":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"60":{"tf":1.0},"68":{"tf":3.7416573867739413}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"57":{"tf":1.0},"68":{"tf":2.449489742783178}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"54":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"21":{"tf":1.0},"68":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"68":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"10":{"tf":1.7320508075688772},"12":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"11":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"7":{"tf":1.0},"9":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"68":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"(":{"1":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}},"2":{"df":1,"docs":{"49":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"1":{"6":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"8":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"6":{"4":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"6":{"4":{",":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"]":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"^":{")":{"1":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":29,"docs":{"10":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":2.8284271247461903},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"18":{"tf":2.0},"23":{"tf":2.23606797749979}},"r":{"df":1,"docs":{"63":{"tf":1.0}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"_":{"df":0,"docs":{},"x":{"6":{"4":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":18,"docs":{"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"m":{"b":{"d":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}},"n":{"df":2,"docs":{"24":{"tf":1.4142135623730951},"25":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"32":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"t":{"'":{"df":3,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"0":{",":{"1":{",":{"2":{",":{"3":{")":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"21":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"i":{"b":{"c":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"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":7,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":5.656854249492381}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"c":{"c":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"17":{"tf":1.7320508075688772},"68":{"tf":1.0}}},"k":{"df":3,"docs":{"15":{"tf":1.4142135623730951},"58":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"25":{"tf":1.0},"38":{"tf":1.0},"62":{"tf":3.1622776601683795},"68":{"tf":2.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"56":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"1":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"68":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"42":{"tf":1.0}}},"p":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{")":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"(":{"\"":{"%":{"d":{"\"":{",":{"1":{")":{";":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"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":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"h":{"a":{"df":4,"docs":{"42":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"9":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":12,"docs":{"10":{"tf":2.0},"12":{"tf":1.0},"15":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"11":{"tf":1.4142135623730951},"21":{"tf":1.0},"47":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":2.0}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"24":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{",":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":2,"docs":{"41":{"tf":1.0},"68":{"tf":1.7320508075688772}}}},"x":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"20":{"tf":1.0},"24":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"j":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"21":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"d":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":5,"docs":{"39":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"41":{"tf":2.0},"42":{"tf":2.8284271247461903},"68":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"21":{"tf":1.0},"68":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"17":{"tf":1.4142135623730951},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"68":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.0},"41":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},">":{"(":{"<":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"15":{"tf":1.4142135623730951},"19":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":2.0},"68":{"tf":2.449489742783178},"9":{"tf":1.0}}}},"n":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":1,"docs":{"24":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"15":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"w":{"df":11,"docs":{"12":{"tf":1.7320508075688772},"21":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.23606797749979},"49":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":4.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"5":{"tf":1.0}}}},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"68":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"10":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.7320508075688772},"24":{"tf":2.0},"26":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0}}}},"w":{"df":6,"docs":{"12":{"tf":1.0},"37":{"tf":1.4142135623730951},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"20":{"tf":2.6457513110645907},"21":{"tf":1.4142135623730951},"34":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"20":{"tf":2.6457513110645907},"24":{"tf":1.0},"68":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"10":{"tf":1.0},"23":{"tf":2.0},"33":{"tf":1.0},"36":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"2":{"df":1,"docs":{"15":{"tf":1.0}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"tf":1.0}}},"l":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"n":{"df":6,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"32":{"tf":4.0}}},"df":0,"docs":{}}},"df":9,"docs":{"21":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"32":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"15":{"tf":1.7320508075688772}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"15":{"tf":1.0},"43":{"tf":1.4142135623730951},"68":{"tf":2.449489742783178}}}}}}},"s":{"df":4,"docs":{"10":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.0}}},"t":{"df":1,"docs":{"61":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"37":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"22":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"36":{"tf":1.7320508075688772},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"24":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":2.23606797749979},"61":{"tf":1.7320508075688772},"62":{"tf":2.6457513110645907},"67":{"tf":1.0},"68":{"tf":2.449489742783178}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.4142135623730951},"34":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":2.6457513110645907}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"10":{"tf":1.0},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"15":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":2.0},"45":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"12":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"23":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"18":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"21":{"tf":2.8284271247461903},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"68":{"tf":2.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":5,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"33":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"9":{"tf":1.0}}}}}}}},"^":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"21":{"tf":1.0},"51":{"tf":1.0}}}}}},"a":{"d":{"d":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"36":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{".":{"b":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":1,"docs":{"45":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"b":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"[":{"1":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"24":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"c":{"(":{"1":{".":{"0":{",":{"2":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"d":{".":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"x":{"*":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":1,"docs":{"36":{"tf":1.0}}}},"df":4,"docs":{"10":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"7":{"tf":1.0}},"f":{"(":{"\"":{"%":{"d":{"\"":{",":{"1":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":14,"docs":{"1":{"tf":1.0},"10":{"tf":2.0},"12":{"tf":1.0},"15":{"tf":1.0},"22":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":2.23606797749979},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.0},"38":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"42":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{"=":{"3":{".":{"7":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"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":{"24":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":2.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}},"e":{"(":{"0":{"df":1,"docs":{"33":{"tf":1.0}}},"1":{",":{"1":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{".":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"68":{"tf":1.0}}},"df":2,"docs":{"24":{"tf":1.0},"43":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"58":{"tf":1.0}},"i":{"df":2,"docs":{"6":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"49":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"21":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"3":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"68":{"tf":4.47213595499958}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"56":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"3":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":18,"docs":{"10":{"tf":2.6457513110645907},"12":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":3.1622776601683795},"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.6457513110645907},"65":{"tf":1.7320508075688772},"68":{"tf":2.6457513110645907},"9":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.0},"68":{"tf":1.0}}}}}}},"g":{"b":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"5":{",":{"0":{",":{"0":{",":{"\"":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":7,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":2.23606797749979},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"9":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"d":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"20":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"25":{"tf":1.0},"42":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"52":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"65":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"12":{"tf":1.0},"15":{"tf":1.4142135623730951},"23":{"tf":1.0},"3":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":2.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":2.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":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"24":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"15":{"tf":2.0},"20":{"tf":1.0}}}},"h":{"a":{"2":{"5":{"6":{"df":2,"docs":{"62":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"52":{"tf":1.0},"68":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"17":{"tf":1.0},"24":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"1":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"df":4,"docs":{"24":{"tf":1.0},"37":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"68":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"(":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"d":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":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":{"12":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{":":{"c":{"+":{"+":{"1":{"7":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"2":{"tf":1.4142135623730951},"58":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":2.6457513110645907}}}}}}},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"38":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"22":{"tf":2.23606797749979},"38":{"tf":1.0},"68":{"tf":2.0}}},"df":0,"docs":{}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"58":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":6,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":4.242640687119285},"25":{"tf":1.0},"26":{"tf":1.0},"65":{"tf":2.8284271247461903},"68":{"tf":2.23606797749979}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"43":{"tf":1.4142135623730951},"46":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":2.23606797749979}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"43":{"tf":2.449489742783178},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":2.23606797749979},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"42":{"tf":2.0}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"7":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"15":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.7320508075688772}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":3,"docs":{"37":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{":":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"^":{")":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":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":{"1":{"tf":1.0},"11":{"tf":1.0},"47":{"tf":1.0},"68":{"tf":2.6457513110645907}}}}}}}},"t":{"a":{"b":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"37":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":2,"docs":{"24":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"7":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"x":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"y":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"26":{"tf":1.0},"43":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":7,"docs":{"15":{"tf":2.0},"27":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":3.605551275463989},"33":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":4,"docs":{"12":{"tf":1.0},"26":{"tf":1.0},"37":{"tf":1.0},"56":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}},">":{"(":{"<":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"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":2.449489742783178},"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":2.0},"43":{"tf":1.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":2.449489742783178},"68":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}},"u":{"_":{"_":{"_":{"_":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"8":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":2.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"68":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"l":{"df":3,"docs":{"60":{"tf":2.0},"61":{"tf":1.0},"68":{"tf":1.0}}}},"s":{"df":42,"docs":{"1":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":2.449489742783178},"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.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"68":{"tf":2.0},"9":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"1":{".":{"3":{".":{"1":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"1":{"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"3":{"df":1,"docs":{"68":{"tf":1.0}}},"4":{"df":1,"docs":{"68":{"tf":1.0}}},"5":{"df":1,"docs":{"68":{"tf":1.0}}},"6":{"df":1,"docs":{"68":{"tf":1.0}}},"7":{"df":1,"docs":{"68":{"tf":1.0}}},"8":{"df":1,"docs":{"68":{"tf":1.0}}},"9":{"df":1,"docs":{"68":{"tf":2.449489742783178}},"x":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"1":{"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":14,"docs":{"10":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"57":{"tf":2.0},"68":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"1":{"df":1,"docs":{"32":{"tf":2.8284271247461903}}},"2":{"df":1,"docs":{"32":{"tf":2.8284271247461903}}},"df":21,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":2.449489742783178},"25":{"tf":2.449489742783178},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"43":{"tf":2.449489742783178},"46":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":2.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"19":{"tf":2.0},"20":{"tf":2.23606797749979},"21":{"tf":1.0},"22":{"tf":2.0},"25":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"24":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"63":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"15":{"tf":1.7320508075688772},"24":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}},"y":{"df":5,"docs":{"21":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"6":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"9":{"tf":1.0}},"s":{",":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"26":{"tf":1.4142135623730951},"43":{"tf":1.0},"52":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":1.0}}},"l":{"d":{"!":{"\"":{",":{"4":{"2":{",":{"3":{".":{"1":{"4":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"10":{"tf":1.0},"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"24":{"tf":2.0},"25":{"tf":1.0},"34":{"tf":1.0},"7":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"x":{"6":{"4":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":2.0}}},"y":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":4,"docs":{"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"42":{"tf":1.0},"68":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"c":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"c":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"’":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"z":{"df":2,"docs":{"36":{"tf":1.0},"68":{"tf":1.0}}}}},"breadcrumbs":{"root":{"0":{"df":11,"docs":{"10":{"tf":1.7320508075688772},"12":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0}}},"1":{",":{"2":{",":{"3":{"df":2,"docs":{"25":{"tf":2.23606797749979},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"2":{"3":{"1":{"3":{"2":{"1":{"3":{"2":{"1":{"5":{"6":{"4":{"8":{"7":{"8":{"9":{"7":{"9":{"8":{"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":{}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":2,"docs":{"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"2":{"3":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":13,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":2.0},"30":{"tf":2.0},"31":{"tf":3.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"54":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.7320508075688772}}},"2":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"6":{"df":1,"docs":{"65":{"tf":1.0}}},"9":{"df":1,"docs":{"68":{"tf":1.0}}},"df":5,"docs":{"25":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":2.449489742783178},"32":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"3":{"2":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"6":{"df":1,"docs":{"68":{"tf":1.0}}},"df":3,"docs":{"25":{"tf":1.0},"37":{"tf":1.0},"68":{"tf":1.0}}},"4":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"5":{"df":1,"docs":{"24":{"tf":1.0}}},"6":{"4":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"7":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"_":{".":{"c":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"42":{"tf":2.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"_":{"_":{"_":{"_":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"_":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"56":{"tf":1.4142135623730951},"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"_":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"68":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"43":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"d":{"d":{"(":{"1":{",":{"2":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"b":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"y":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"z":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"34":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}}},".":{"c":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":7,"docs":{"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.7320508075688772},"6":{"tf":1.0},"68":{"tf":5.477225575051661}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":4,"docs":{"20":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":6,"docs":{"21":{"tf":1.0},"48":{"tf":2.449489742783178},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"65":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":2,"docs":{"20":{"tf":1.0},"59":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{".":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"10":{"tf":1.0},"21":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"39":{"tf":1.0},"46":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"3":{"tf":1.0},"43":{"tf":1.0},"68":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"22":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":2.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"25":{"tf":3.1622776601683795},"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}},"h":{"df":1,"docs":{"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":7,"docs":{"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":1,"docs":{"5":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"15":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"(":{"a":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":2.449489742783178},"37":{"tf":1.7320508075688772},"46":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"h":{"df":1,"docs":{"5":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"26":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.0},"38":{"tf":1.0},"52":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"56":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"18":{"tf":2.0},"23":{"tf":2.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"18":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}},"s":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"(":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"6":{"tf":1.0},"68":{"tf":7.211102550927978}}},"i":{"df":0,"docs":{},"l":{"d":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"12":{"tf":1.0},"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":6,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"13":{"tf":2.23606797749979},"14":{"tf":1.0},"68":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"15":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}}}},"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"+":{"+":{"1":{"7":{"df":2,"docs":{"15":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"\\":{"c":{"+":{"+":{"\\":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"37":{"tf":1.0},"68":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}},"d":{"df":4,"docs":{"12":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}}},"df":12,"docs":{"1":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"23":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":2.23606797749979},"55":{"tf":1.4142135623730951},"56":{"tf":2.8284271247461903},"57":{"tf":2.23606797749979},"65":{"tf":1.7320508075688772},"68":{"tf":2.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"68":{"tf":4.242640687119285}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"21":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"24":{"tf":3.1622776601683795},"26":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":1,"docs":{"68":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"y":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":20,"docs":{"10":{"tf":2.23606797749979},"15":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":2.0},"57":{"tf":2.0},"65":{"tf":1.0},"68":{"tf":1.7320508075688772},"9":{"tf":2.23606797749979}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"5":{",":{"0":{",":{"0":{"df":1,"docs":{"43":{"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":4,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"68":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"41":{"tf":1.0}},"n":{"d":{"df":9,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"68":{"tf":2.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":2.6457513110645907},"68":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}},"t":{"df":3,"docs":{"1":{"tf":1.0},"26":{"tf":2.6457513110645907},"68":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"15":{"tf":3.1622776601683795},"4":{"tf":1.0},"42":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"27":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":2.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"68":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":2.23606797749979}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"65":{"tf":1.0},"68":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":2.0}}}}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"41":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"68":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"12":{"tf":2.449489742783178},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":3.0},"43":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":2.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":2,"docs":{"41":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"57":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"54":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"68":{"tf":2.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"25":{"tf":1.0},"43":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"21":{"tf":1.0},"50":{"tf":2.0},"52":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":14,"docs":{"10":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.7320508075688772},"38":{"tf":1.0},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":2.449489742783178},"68":{"tf":2.0}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"10":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"21":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}},"p":{"df":1,"docs":{"6":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"8":{"tf":2.0}}},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"o":{"c":{"df":1,"docs":{"65":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"17":{"tf":1.0},"2":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"52":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"18":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"26":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":1,"docs":{"24":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}},"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":{"25":{"tf":2.449489742783178}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"n":{"d":{"df":4,"docs":{"10":{"tf":1.0},"52":{"tf":1.4142135623730951},"68":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"12":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"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":1,"docs":{"68":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"15":{"tf":1.0},"32":{"tf":2.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"68":{"tf":2.449489742783178}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":11,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"p":{"df":1,"docs":{"68":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"42":{"tf":1.0},"63":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}}},"f":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"65":{"tf":1.0},"68":{"tf":1.0}}}},"2":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":1,"docs":{"24":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"20":{"tf":1.4142135623730951},"52":{"tf":1.0},"68":{"tf":3.872983346207417}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"43":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"15":{"tf":1.0}},"e":{"df":9,"docs":{"12":{"tf":2.6457513110645907},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.7320508075688772},"3":{"tf":1.0},"42":{"tf":2.6457513110645907},"56":{"tf":2.0},"68":{"tf":2.0},"9":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"10":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"x":{"df":1,"docs":{"68":{"tf":7.615773105863909}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"18":{"tf":1.7320508075688772},"23":{"tf":2.23606797749979},"26":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"42":{"tf":2.0},"56":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"o":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"c":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"4":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"[":{"1":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":22,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"24":{"tf":2.449489742783178},"25":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":2.449489742783178},"33":{"tf":2.23606797749979},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"44":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}}},"k":{"df":1,"docs":{"3":{"tf":1.0}}},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"(":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"37":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"68":{"tf":1.0}}},"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"[":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{",":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"2":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{",":{".":{".":{".":{"]":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":21,"docs":{"10":{"tf":3.1622776601683795},"12":{"tf":1.0},"15":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":2.23606797749979},"25":{"tf":1.4142135623730951},"34":{"tf":3.3166247903554},"35":{"tf":2.6457513110645907},"36":{"tf":3.1622776601683795},"37":{"tf":4.358898943540674},"38":{"tf":2.6457513110645907},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":2.23606797749979},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"68":{"tf":5.196152422706632},"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"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":{},"t":{"]":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"+":{"+":{",":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"16":{"tf":1.7320508075688772}},"s":{",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"c":{">":{"=":{"8":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"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}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"1":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":5,"docs":{"5":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"o":{"df":3,"docs":{"10":{"tf":1.0},"21":{"tf":1.0},"58":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"15":{"tf":1.0},"32":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"34":{"tf":1.0},"43":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.7320508075688772}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"c":{"a":{"'":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{},"l":{"'":{"df":6,"docs":{"20":{"tf":1.0},"4":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}}},"df":25,"docs":{"1":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":1.0},"68":{"tf":2.449489742783178},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"2":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":9,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"24":{"tf":2.449489742783178},"25":{"tf":1.0},"37":{"tf":1.0},"7":{"tf":2.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"p":{"df":1,"docs":{"3":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"10":{"tf":1.0}}},"df":1,"docs":{"2":{"tf":1.0}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":2.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":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"d":{"df":2,"docs":{"24":{"tf":1.0},"63":{"tf":1.7320508075688772}}},"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"39":{"tf":2.0},"40":{"tf":2.23606797749979},"41":{"tf":2.23606797749979},"42":{"tf":1.7320508075688772},"60":{"tf":1.0},"68":{"tf":3.7416573867739413}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"57":{"tf":1.0},"68":{"tf":2.449489742783178}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"54":{"tf":1.4142135623730951},"56":{"tf":2.449489742783178},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"21":{"tf":1.0},"68":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":2.0},"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"68":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.7320508075688772},"57":{"tf":2.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"10":{"tf":1.7320508075688772},"12":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"11":{"tf":1.0},"4":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"7":{"tf":1.0},"9":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"68":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"(":{"1":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}},"2":{"df":1,"docs":{"49":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"1":{"6":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"8":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"6":{"4":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"6":{"4":{",":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"]":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"^":{")":{"1":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":29,"docs":{"10":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":2.8284271247461903},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"18":{"tf":2.0},"23":{"tf":2.23606797749979}},"r":{"df":1,"docs":{"63":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":5,"docs":{"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"_":{"df":0,"docs":{},"x":{"6":{"4":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":18,"docs":{"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"m":{"b":{"d":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}},"n":{"df":2,"docs":{"24":{"tf":1.4142135623730951},"25":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"32":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"t":{"'":{"df":3,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"0":{",":{"1":{",":{"2":{",":{"3":{")":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"21":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"i":{"b":{"c":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"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":7,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"68":{"tf":5.656854249492381}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"c":{"c":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"17":{"tf":1.7320508075688772},"68":{"tf":1.0}}},"k":{"df":3,"docs":{"15":{"tf":1.4142135623730951},"58":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"25":{"tf":1.0},"38":{"tf":1.0},"62":{"tf":3.3166247903554},"68":{"tf":2.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"56":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"1":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"42":{"tf":1.0}}},"p":{"df":1,"docs":{"33":{"tf":1.7320508075688772}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{")":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"(":{"\"":{"%":{"d":{"\"":{",":{"1":{")":{";":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"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":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"h":{"a":{"df":4,"docs":{"42":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"9":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":12,"docs":{"10":{"tf":2.0},"12":{"tf":1.0},"15":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":17,"docs":{"11":{"tf":2.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"21":{"tf":1.0},"47":{"tf":2.6457513110645907},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.0}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"24":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{",":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":2,"docs":{"41":{"tf":1.0},"68":{"tf":1.7320508075688772}}}},"x":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"20":{"tf":1.0},"24":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"j":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"21":{"tf":1.4142135623730951},"47":{"tf":2.6457513110645907},"48":{"tf":2.0},"49":{"tf":2.0},"50":{"tf":1.7320508075688772},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"d":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":5,"docs":{"39":{"tf":2.23606797749979},"40":{"tf":2.23606797749979},"41":{"tf":2.449489742783178},"42":{"tf":3.1622776601683795},"68":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"21":{"tf":1.0},"68":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"17":{"tf":1.4142135623730951},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"68":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.0},"41":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},">":{"(":{"<":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"15":{"tf":1.4142135623730951},"19":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":2.0},"68":{"tf":2.449489742783178},"9":{"tf":1.0}}}},"n":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":1,"docs":{"24":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"15":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"w":{"df":11,"docs":{"12":{"tf":2.0},"21":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.23606797749979},"49":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":4.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":2.0},"21":{"tf":1.0},"68":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"10":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.7320508075688772},"24":{"tf":2.0},"26":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0}}}},"w":{"df":6,"docs":{"12":{"tf":1.0},"37":{"tf":1.4142135623730951},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"20":{"tf":3.0},"21":{"tf":1.4142135623730951},"34":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"20":{"tf":2.6457513110645907},"24":{"tf":1.0},"68":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"10":{"tf":1.0},"23":{"tf":2.449489742783178},"33":{"tf":1.0},"36":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"2":{"df":1,"docs":{"15":{"tf":1.0}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"tf":1.0}}},"l":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"n":{"df":6,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"32":{"tf":4.0}}},"df":0,"docs":{}}},"df":9,"docs":{"21":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"32":{"tf":1.7320508075688772},"41":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"15":{"tf":1.7320508075688772}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"15":{"tf":1.0},"43":{"tf":1.4142135623730951},"68":{"tf":2.449489742783178}}}}}}},"s":{"df":4,"docs":{"10":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.0}}},"t":{"df":1,"docs":{"61":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"37":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"22":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"36":{"tf":2.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"24":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":2.23606797749979},"60":{"tf":2.6457513110645907},"61":{"tf":2.23606797749979},"62":{"tf":3.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.449489742783178}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.4142135623730951},"34":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":2.8284271247461903}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"10":{"tf":1.0},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"15":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":2.23606797749979},"45":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"12":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"23":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"18":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"21":{"tf":3.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"68":{"tf":2.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":5,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"33":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"9":{"tf":1.0}}}}}}}},"^":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"21":{"tf":1.0},"51":{"tf":1.0}}}}}},"a":{"d":{"d":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"36":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{".":{"b":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":1,"docs":{"45":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"b":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"[":{"1":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"24":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"c":{"(":{"1":{".":{"0":{",":{"2":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"d":{".":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"x":{"*":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":1,"docs":{"36":{"tf":1.0}}}},"df":4,"docs":{"10":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"7":{"tf":1.0}},"f":{"(":{"\"":{"%":{"d":{"\"":{",":{"1":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":14,"docs":{"1":{"tf":1.0},"10":{"tf":2.0},"12":{"tf":1.0},"15":{"tf":1.0},"22":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":2.23606797749979},"12":{"tf":2.6457513110645907},"13":{"tf":2.0},"14":{"tf":2.0},"68":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.0},"38":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"42":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{"=":{"3":{".":{"7":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"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":{"24":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":2.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}},"e":{"(":{"0":{"df":1,"docs":{"33":{"tf":1.0}}},"1":{",":{"1":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{".":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"68":{"tf":1.0}}},"df":2,"docs":{"24":{"tf":1.0},"43":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"58":{"tf":1.0}},"i":{"df":2,"docs":{"6":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"49":{"tf":2.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"21":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"3":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"68":{"tf":4.47213595499958}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"56":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"3":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":18,"docs":{"10":{"tf":2.6457513110645907},"12":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":3.1622776601683795},"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.6457513110645907},"65":{"tf":1.7320508075688772},"68":{"tf":2.6457513110645907},"9":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":1.7320508075688772}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.0},"68":{"tf":1.0}}}}}}},"g":{"b":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"5":{",":{"0":{",":{"0":{",":{"\"":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":7,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":2.449489742783178},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"9":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"d":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"20":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"25":{"tf":1.0},"42":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"52":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"65":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"12":{"tf":1.0},"15":{"tf":1.4142135623730951},"23":{"tf":1.0},"3":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":2.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":2.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":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"24":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"15":{"tf":2.0},"20":{"tf":1.0}}}},"h":{"a":{"2":{"5":{"6":{"df":2,"docs":{"62":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"52":{"tf":1.0},"68":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"17":{"tf":1.0},"24":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"1":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"df":4,"docs":{"24":{"tf":1.0},"37":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"68":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"(":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"d":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":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":{"12":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{":":{"c":{"+":{"+":{"1":{"7":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"2":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"10":{"tf":1.4142135623730951},"27":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":2.6457513110645907}}}}}}},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"38":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"22":{"tf":2.449489742783178},"38":{"tf":1.0},"68":{"tf":2.0}}},"df":0,"docs":{}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"58":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":6,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":4.47213595499958},"25":{"tf":1.0},"26":{"tf":1.0},"65":{"tf":2.8284271247461903},"68":{"tf":2.23606797749979}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"43":{"tf":1.4142135623730951},"46":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":2.23606797749979}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"43":{"tf":2.8284271247461903},"44":{"tf":2.0},"45":{"tf":2.0},"46":{"tf":2.6457513110645907},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"42":{"tf":2.0}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"7":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"15":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.7320508075688772}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":3,"docs":{"37":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{":":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"^":{")":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":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":{"1":{"tf":1.0},"11":{"tf":1.0},"47":{"tf":1.0},"68":{"tf":2.6457513110645907}}}}}}}},"t":{"a":{"b":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"37":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":2,"docs":{"24":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"7":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"x":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"y":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"26":{"tf":1.0},"43":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":7,"docs":{"15":{"tf":2.0},"27":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":3.605551275463989},"33":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":4,"docs":{"12":{"tf":1.0},"26":{"tf":1.0},"37":{"tf":1.0},"56":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}},">":{"(":{"<":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.0},"18":{"tf":2.0},"19":{"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":2.8284271247461903},"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":2.0},"43":{"tf":1.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":2.6457513110645907},"68":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}},"u":{"_":{"_":{"_":{"_":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"8":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":2.23606797749979},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"68":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"l":{"df":3,"docs":{"60":{"tf":2.0},"61":{"tf":1.0},"68":{"tf":1.0}}}},"s":{"df":42,"docs":{"1":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":2.449489742783178},"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.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"68":{"tf":2.0},"9":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"1":{".":{"3":{".":{"1":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"1":{"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"3":{"df":1,"docs":{"68":{"tf":1.0}}},"4":{"df":1,"docs":{"68":{"tf":1.0}}},"5":{"df":1,"docs":{"68":{"tf":1.0}}},"6":{"df":1,"docs":{"68":{"tf":1.0}}},"7":{"df":1,"docs":{"68":{"tf":1.0}}},"8":{"df":1,"docs":{"68":{"tf":1.0}}},"9":{"df":1,"docs":{"68":{"tf":2.449489742783178}},"x":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"1":{"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":14,"docs":{"10":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"57":{"tf":2.23606797749979},"68":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"1":{"df":1,"docs":{"32":{"tf":2.8284271247461903}}},"2":{"df":1,"docs":{"32":{"tf":2.8284271247461903}}},"df":21,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":2.449489742783178},"25":{"tf":2.449489742783178},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"43":{"tf":2.449489742783178},"46":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":2.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":12,"docs":{"19":{"tf":2.449489742783178},"20":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"22":{"tf":2.449489742783178},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"24":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"63":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"15":{"tf":1.7320508075688772},"24":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}},"y":{"df":5,"docs":{"21":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"6":{"tf":2.0},"68":{"tf":1.4142135623730951},"9":{"tf":1.0}},"s":{",":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"26":{"tf":1.4142135623730951},"43":{"tf":1.0},"52":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":1.0}}},"l":{"d":{"!":{"\"":{",":{"4":{"2":{",":{"3":{".":{"1":{"4":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"24":{"tf":2.0},"25":{"tf":1.0},"34":{"tf":1.0},"7":{"tf":2.0},"8":{"tf":1.0},"9":{"tf":2.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":1.0},"16":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"x":{"6":{"4":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":2.0}}},"y":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":4,"docs":{"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"42":{"tf":1.0},"68":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"c":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"c":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"’":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"z":{"df":2,"docs":{"36":{"tf":1.0},"68":{"tf":1.0}}}}},"title":{"root":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"51":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":4,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"10":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"58":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"'":{"df":2,"docs":{"64":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"i":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"57":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"4":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"2":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"11":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"47":{"tf":1.0},"51":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"12":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"5":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.0}}}}},"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":1,"docs":{"21":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"2":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"18":{"tf":1.0},"26":{"tf":1.0},"57":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"44":{"tf":1.0},"57":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"16":{"tf":1.0},"9":{"tf":1.0}}}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}});
\ No newline at end of file
diff --git a/docs/latest/searchindex.json b/docs/latest/searchindex.json
index 96286da..7d0ae9b 100644
--- a/docs/latest/searchindex.json
+++ b/docs/latest/searchindex.json
@@ -1 +1 @@
-{"doc_urls":["index.html#overview","index.html#introduction","index.html#standard-library-documentation","index.html#contributing","lang/0_install.html#installation","lang/0_install.html#nix-usersrecommended","lang/0_install.html#windows-users","lang/1_hello_world.html#hello-world","lang/1_hello_world.html#creating-a-project-directory","lang/1_hello_world.html#writing-the-code","lang/1_hello_world.html#reviewing-the-code","lang/2_project_manager.html#project-manager","lang/2_project_manager.html#creating-a-new-project","lang/2_project_manager.html#building-a-project","lang/2_project_manager.html#running-a-project","lang/3_config.html#configure-the-compiler","lang/4_guessing_game.html#write-a-guessing-game","lang/5_comments.html#comments","lang/6_types.html#primitive-types","lang/7_00_variables.html#variables","lang/7_00_variables.html#non-nullable-and-nullable","lang/7_00_variables.html#pointers","lang/7_00_variables.html#static-variables","lang/7_01_numbers.html#numbers","lang/7_02_strings.html#strings","lang/7_03_arrays.html#arrays","lang/7_04_type_compatibility.html#type-compatibility","lang/8_conditional_statements.html#conditional-statements","lang/8_conditional_statements.html#if","lang/8_conditional_statements.html#else","lang/8_conditional_statements.html#else-if","lang/8_conditional_statements.html#and-and-or-and-not","lang/8_conditional_statements.html#conditional-operators","lang/9_loops.html#loops","lang/10_functions.html#functions","lang/10_functions.html#calling-a-function","lang/10_functions.html#function-overloading","lang/10_functions.html#passing-function-as-parameter","lang/10_functions.html#function-decorators","lang/11_importing.html#importing--creating-modules","lang/11_importing.html#importing-a-module","lang/11_importing.html#importing-multiple-modules","lang/11_importing.html#creating-a-module","lang/12_structs.html#structures","lang/12_structs.html#structures-as-return-values","lang/12_structs.html#structures-as-arguments","lang/12_structs.html#structure-inheritance","lang/13_memory_management.html#memory-management","lang/13_memory_management.html#allocation","lang/13_memory_management.html#reallocation","lang/13_memory_management.html#deallocation","lang/13_memory_management.html#accessing-memory","lang/13_memory_management.html#critical-notes","lang/14_interfacing_with_cpp.html#interfacing-with-c","lang/14_interfacing_with_cpp.html#inline-c-code","lang/14_interfacing_with_cpp.html#externing-functions","lang/14_interfacing_with_cpp.html#include-c-headers","lang/14_interfacing_with_cpp.html#accessing-to-values-and-types-in-inline-c-code","stdlib.html#standard-library-documentation","hpm.html#package-manager","hpm.html#installing-a-package","hpm.html#updating-a-package","hpm.html#listing-packages","ide.html#ide-integration","ROADMAP.html#hascals-roadmap","ROADMAP.html#language","ROADMAP.html#standard-library","ROADMAP.html#package-manager","CHANGELOG.html#hascals-changelog"],"index":{"documentStore":{"docInfo":{"0":{"body":0,"breadcrumbs":2,"title":1},"1":{"body":44,"breadcrumbs":2,"title":1},"10":{"body":83,"breadcrumbs":4,"title":2},"11":{"body":12,"breadcrumbs":4,"title":2},"12":{"body":81,"breadcrumbs":5,"title":3},"13":{"body":15,"breadcrumbs":4,"title":2},"14":{"body":13,"breadcrumbs":4,"title":2},"15":{"body":86,"breadcrumbs":4,"title":2},"16":{"body":1,"breadcrumbs":6,"title":3},"17":{"body":16,"breadcrumbs":2,"title":1},"18":{"body":37,"breadcrumbs":3,"title":2},"19":{"body":25,"breadcrumbs":2,"title":1},"2":{"body":5,"breadcrumbs":4,"title":3},"20":{"body":62,"breadcrumbs":4,"title":3},"21":{"body":64,"breadcrumbs":2,"title":1},"22":{"body":22,"breadcrumbs":3,"title":2},"23":{"body":62,"breadcrumbs":3,"title":1},"24":{"body":146,"breadcrumbs":3,"title":1},"25":{"body":79,"breadcrumbs":3,"title":1},"26":{"body":38,"breadcrumbs":5,"title":2},"27":{"body":9,"breadcrumbs":4,"title":2},"28":{"body":15,"breadcrumbs":2,"title":0},"29":{"body":17,"breadcrumbs":2,"title":0},"3":{"body":35,"breadcrumbs":2,"title":1},"30":{"body":22,"breadcrumbs":2,"title":0},"31":{"body":62,"breadcrumbs":2,"title":0},"32":{"body":84,"breadcrumbs":4,"title":2},"33":{"body":38,"breadcrumbs":2,"title":1},"34":{"body":50,"breadcrumbs":2,"title":1},"35":{"body":24,"breadcrumbs":3,"title":2},"36":{"body":32,"breadcrumbs":3,"title":2},"37":{"body":87,"breadcrumbs":4,"title":3},"38":{"body":27,"breadcrumbs":3,"title":2},"39":{"body":8,"breadcrumbs":6,"title":3},"4":{"body":13,"breadcrumbs":2,"title":1},"40":{"body":17,"breadcrumbs":5,"title":2},"41":{"body":21,"breadcrumbs":6,"title":3},"42":{"body":66,"breadcrumbs":5,"title":2},"43":{"body":52,"breadcrumbs":2,"title":1},"44":{"body":8,"breadcrumbs":4,"title":3},"45":{"body":10,"breadcrumbs":3,"title":2},"46":{"body":22,"breadcrumbs":3,"title":2},"47":{"body":27,"breadcrumbs":4,"title":2},"48":{"body":36,"breadcrumbs":3,"title":1},"49":{"body":26,"breadcrumbs":3,"title":1},"5":{"body":19,"breadcrumbs":3,"title":2},"50":{"body":12,"breadcrumbs":3,"title":1},"51":{"body":13,"breadcrumbs":4,"title":2},"52":{"body":36,"breadcrumbs":4,"title":2},"53":{"body":8,"breadcrumbs":4,"title":2},"54":{"body":30,"breadcrumbs":5,"title":3},"55":{"body":15,"breadcrumbs":4,"title":2},"56":{"body":76,"breadcrumbs":5,"title":3},"57":{"body":50,"breadcrumbs":8,"title":6},"58":{"body":5,"breadcrumbs":6,"title":3},"59":{"body":9,"breadcrumbs":5,"title":2},"6":{"body":32,"breadcrumbs":3,"title":2},"60":{"body":29,"breadcrumbs":5,"title":2},"61":{"body":12,"breadcrumbs":5,"title":2},"62":{"body":35,"breadcrumbs":5,"title":2},"63":{"body":2,"breadcrumbs":4,"title":2},"64":{"body":0,"breadcrumbs":3,"title":2},"65":{"body":61,"breadcrumbs":2,"title":1},"66":{"body":2,"breadcrumbs":3,"title":2},"67":{"body":0,"breadcrumbs":3,"title":2},"68":{"body":766,"breadcrumbs":4,"title":2},"7":{"body":14,"breadcrumbs":4,"title":2},"8":{"body":17,"breadcrumbs":5,"title":3},"9":{"body":66,"breadcrumbs":4,"title":2}},"docs":{"0":{"body":"","breadcrumbs":"Overview » Overview","id":"0","title":"Overview"},"1":{"body":"Hascal is a general-purpose open source programming language that makes it easy to build simple,optimal, reliable, and efficient software. More features of Hascal : Easy to use and easy to learn Multi-paradigm Null safety by default Fast and powerful Inspired by Swift, Pascal Compiles to C++ Compatible with C\\C++\\Obj-C Builtin compile time FFI system Built-in HTTP Library","breadcrumbs":"Overview » Introduction","id":"1","title":"Introduction"},"10":{"body":"Let's review the our simple program. Here's the first piece of the program : function main() : int { } These lines defines a function that returns an integer number. The main function is the entry point of your program and it always should return int(an integer), if there were parameters, they would go inside the parentheses, (). Also, note function statements should be in {} and you write function codes inside {}. Inside the main function is the following code : print(\"Hello World!\") This code print the passed arguments, you can pass more parameters : print(\"Hello World!\",42,3.14) After the calling print command is following statemetn : return 0 It returns 0 at end of the function, every function that returns a value(declared with : after () in function declaration) should return a value with mentioned type. Returning the 0 value in main function tell the OS that your program executed successfully.","breadcrumbs":"Hello World! » Reviewing the code","id":"10","title":"Reviewing the code"},"11":{"body":"Hascal has a builtin build system and project manager. This tool builds and runs your project, installs dependencies.","breadcrumbs":"Project Manager » Project Manager","id":"11","title":"Project Manager"},"12":{"body":"Let's create a new project and compare it with the Hello World example in previous chapter. To create a project you should create a directory for your project : $ mkdir hello_world_2\n$ cd hello_world_2 Now we create a new project with following command : $ hascal init After running above command, you’ll see Hascal has generated two files and one directory for us: a config.json file, a .gitignore file and a src directory with a app.has file inside. config.json : { \"filename\": \"src/app.has\", \"outfile\": \"build/app\", } The filename field contains your main file that contains your entry function(main) and outfile field is output path of excutable file. src/app.has : function main():int{ print(\"Hello World!\") return 0\n} The generated Hascal file contains Hello World! program, you can edit it.","breadcrumbs":"Project Manager » Creating a new project","id":"12","title":"Creating a new project"},"13":{"body":"You can build the project with following command : $ hascal build Excutable file will generate in build directory and you can run it with following command : $ ./build/app","breadcrumbs":"Project Manager » Building a project","id":"13","title":"Building a project"},"14":{"body":"To run the project, you can use run command : $ hascal run\nHello World! That builds excutable file and runs it.","breadcrumbs":"Project Manager » Running a project","id":"14","title":"Running a project"},"15":{"body":"You can use config.json file to configure your Hascal compiler. The following configuration options are available: filename : your main file name, if you set it, you will no longer need to pass the file name to the compiler. compiler : your c++ compiler name(e.g : g++,clang++) optimize : optimize level(0,1,2,3)(default : no optimize, e.g: -O2) flags : custom flags(e.g:[\"-pthread\"]) c++_version : your c++ standard(e.g:c++17 or c++20), note: c++ version must be greater than or equal to c++17 and compiler must support c++17 compiler_output : if you want to see c++ compiler output, set this to true c++_out : if you want to see generated c++ code, set this to true, the generated c++ code are in your_filename.cc fil. only_compile if you want only to compile and not link program, set this to true. no_std : if it is true, the runtime library will not link with your code(you will not be able to use builtin functions).","breadcrumbs":"Configure the compiler » Configure the compiler","id":"15","title":"Configure the compiler"},"16":{"body":"TODO","breadcrumbs":"Write a guessing game » Write a guessing game","id":"16","title":"Write a guessing game"},"17":{"body":"Comments are used to document code and to explain what the code does, they are not executed. // This is a single line comment /*\nThis is a multi-line comment\nThis is a multi-line comment\n*/","breadcrumbs":"Comments » Comments","id":"17","title":"Comments"},"18":{"body":"The following types are primitive: bool // boolean value string // string literal int8 uint8 // 8-bit integer\nint16 uint16 // 16-bit integer\nint int32 uint32 // 32-bit integer\nint64 uint64 // 64-bit integer float // floating point double // double floating point","breadcrumbs":"Types » Primitive types","id":"18","title":"Primitive types"},"19":{"body":"A variable is a named storage for a value. Variables are declared using the var keyword : var foo : int = 1 Also you can declare a variable without type, in this case, the type will be inferred by the value assigned to it: var foo = 1","breadcrumbs":"Variables » Variables","id":"19","title":"Variables"},"2":{"body":"Standard Library Documentation available here .","breadcrumbs":"Overview » Standard Library Documentation","id":"2","title":"Standard Library Documentation"},"20":{"body":"Null safety is a feature that allows you to declare that a variable can be null or not null, and Hascal uses this feature to make sure that your code is safe. Hascal's variables and constants are non-nullable by default that means that they cannot be null(NULL) and you can't assign NULL to them and you should assign a value to them when you declare them . var foo : int = 1 // non-nullable\nvar foo_error : int // error : nullable variable must be assigned a value But you can make variables and constants nullable by adding ? to their type: var bar : int? = 1 // nullable so you can use NULL to set a variable to null : bar = NULL // ok","breadcrumbs":"Variables » Non nullable and nullable","id":"20","title":"Non nullable and nullable"},"21":{"body":"Pointers are a way to access the memory address of a variable. You can declare a pointer using the ^ operator after the type: var foo : int^? NOTE: pointers are non-nullable by default, use ? to make it nullable: You use cast to assign a value to a pointer: foo = (int^)1 Finally, you can use the ^ operator to access the value stored in a pointer: var foo : int^ = (int^)1\nprint(^foo) // 1 NOTE : We recommend you to always allocate pointers with new keyword and deallocate with delete keyword, for more information go to Memory management chapter . NOTE: Currently only one level of pointers are supported.","breadcrumbs":"Variables » Pointers","id":"21","title":"Pointers"},"22":{"body":"Static variables are variables that are declared outside of a function and are accessible from anywhere in the program. Static variables are declared using the static keyword before the type: var foo : static int = 1","breadcrumbs":"Variables » Static variables","id":"22","title":"Static variables"},"23":{"body":"Numbers are either integers or floating point numbers. You can declare a number using the following types: int8 uint8 // 8-bit integer\nint16 uint16 // 16-bit integer\nint int32 uint32 // 32-bit integer\nint64 uint64 // 64-bit integer float // floating point double // double floating point So you can use the following operators to perform arithmetic operations: + : addition - : subtraction * : multiplication / : division See the following example: var a : int = 123\nvar b : float = 1.23\nvar c : double = 1.2313213215648789798","breadcrumbs":"Variables » Numbers » Numbers","id":"23","title":"Numbers"},"24":{"body":"Strings are a sequence of characters. You can declare a string using the string keyword: var foo : string = \"Hello World\" You can use the + operator to concatenate strings: var foo : string = \"Hello\" + \" World\" And you can use the [] operator to access a character in a string: var foo : string = \"Hello\"\nprint(foo[1]) // 'e' Note: type of accessed character is char Note: the first character in a string is at index 0. With len function you can get the length of a string: var foo : string = \"Hello\"\nprint(len(foo)) // 5 Note: len function is a built-in function. Escape sequences You can use escape sequences to print special characters: var foo : string = \"Hello\\tWorld\"\nprint(foo) // Hello World The following escape sequences are supported: \\n : newline \\t : tab \\r : carriage return \\\\ : backslash \\' : single quote \\\" : double quote \\? : question mark \\a : bell \\b : backspace \\f : form feed \\v : vertical tab \\0 : null character \\x____ : hexadecimal character \\u____ : unicode character \\U____ : unicode character \\_____ : arbitrary octal value Note: _____ means you should specify the id of the character you want to print. Reverse a string You can reverse a string by using the string_reverse function in the strings package: use strings function main() { var foo : string = \"Hello World\" print(string_reverse(foo)) // dlroW olleH\n}","breadcrumbs":"Variables » Strings » Strings","id":"24","title":"Strings"},"25":{"body":"Arrays are collections of data elements of the same type. They can be represented by a list of elements surrounded by brackets. The elements can be accessed by appending an index (starting with 0) in brackets to the array variable: Arrays declare like following: var foo : [int] = [1,2,3]\nvar bar : [string] = [\"Hello\", \"World\"] You can use the [] operator to access an element in an array: var foo : [int] = [1,2,3]\nprint(foo[1]) // 2 And you can assign a value to an array element: var foo : [int] = [1,2,3]\nfoo[1] = 4\nprint(foo[1]) // 4 With append built-in function you can append an element to an array: var foo : [int] = [1,2,3]\nfoo.append(4)\nprint(foo[3]) // 4 And you can get the length of an array with the len built-in function: var foo : [int] = [1,2,3]\nprint(len(foo)) // 3","breadcrumbs":"Variables » Arrays » Arrays","id":"25","title":"Arrays"},"26":{"body":"Type compatibility is very close to automatic or implicit type conversion. The type compatibility is being able to use two types together without modification and being able to subsititute one for the other without modification. Compatible types are: int (and its subtypes like uint8,etc) and float. int(and its subtypes like uint8,etc) and double. float and double Note: strings are not compatible with characters.","breadcrumbs":"Variables » Type compatibility » Type compatibility","id":"26","title":"Type compatibility"},"27":{"body":"Conditional statements are used to execute a block of code if a condition is true or false.","breadcrumbs":"Conditional statements » Conditional statements","id":"27","title":"Conditional statements"},"28":{"body":"You can use the if keyword to execute a block of code, if a condition is true: var foo : int = 1\nif foo == 1 { print(\"foo is 1\")\n}","breadcrumbs":"Conditional statements » If","id":"28","title":"If"},"29":{"body":"You can use the else keyword to execute a block of code, if a condition is false: var foo : int = 1\nif foo == 1 { print(\"foo is 1\")\n} else { print(\"foo is not 1\")\n}","breadcrumbs":"Conditional statements » Else","id":"29","title":"Else"},"3":{"body":"We welcome contributions of all kinds. You can contribute to this book by opening an issue or forking and sending a pull request to the main Hascal repository. Knowing what people use this book for the most helps direct our attention to making those sections the best that they can be. We also want the reference to be as normative as possible, so if you see anything that is wrong, please also file an issue.","breadcrumbs":"Overview » Contributing","id":"3","title":"Contributing"},"30":{"body":"You can use the else if statement to execute a block of code, if else if a condition is true: var foo : int = 1\nif foo == 1 { print(\"foo is 1\")\n} else if foo == 2 { print(\"foo is 2\")\n} else { print(\"foo is not 1 or 2\")\n}","breadcrumbs":"Conditional statements » Else if","id":"30","title":"Else if"},"31":{"body":"You can use the and keyword to execute a block of code, if all conditions are true: var foo : int = 1\nvar bar : int = 2\nif foo == 1 and bar == 2 { print(\"foo is 1 and bar is 2\")\n} You can use the or keyword to execute a block of code, if at least one condition is true: var foo : int = 1\nvar bar : int = 2\nif foo == 1 or bar == 2 { print(\"foo is 1 or bar is 2\")\n} You can use the not keyword to execute a block of code, if a condition is false: var foo : int = 1\nif not foo == 1 { print(\"foo is not 1\")\n}","breadcrumbs":"Conditional statements » and and or and not","id":"31","title":"and and or and not"},"32":{"body":"Operator Description Example == Returns true if the operands are equal. var1 == var2 != Returns true if the operands are not equal. var1 != var2 > Returns true if the left operand is greater than the right operand. var1 > var2 >= Returns true if the left operand is greater than or equal to the right operand. var1 >= var2 < Returns true if the left operand is less than the right operand. var1 < var2 <= Returns true if the left operand is less than or equal to the right operand. var1 <= var2 and Returns true if the left operand and right operand are true var1 == 1 and var2 == 2 or Returns true if the left operand or right operand are true var1 == 1 or var2 == 2 not Returns true if the operand are false or if the operand is true returns false not true","breadcrumbs":"Conditional statements » Conditional Operators","id":"32","title":"Conditional Operators"},"33":{"body":"You can use the while keyword to execute a block of code, if a condition is true: var foo : int = 1\nwhile foo == 1 { print(\"foo is 1\") foo = 2\n} The for keyword is used to execute a block of code for a number of times: for i in range(0, 10) { print(i)\n} Also you can use the for keyword for iterating over an array: var foo : [int] = [1,2,3]\nfor i in foo { print(i)\n}","breadcrumbs":"Loops » Loops","id":"33","title":"Loops"},"34":{"body":"Functions are a way to group code that can be called to perform a specific task. You can declare a function using the function keyword: function foo() { print(\"Hello World\")\n} Also your function block should be outside of a function. Your function can have parameters and return a value. You can declare parameters and return type, like variable declarations: function add(x:int,y:int): int { return x + y\n} In the example above, x and y are parameters and their type(int) is your return type. Note: you can use ? to make a parameter nullable.","breadcrumbs":"Functions » Functions","id":"34","title":"Functions"},"35":{"body":"You can call a function by using the function name followed by parentheses: foo() If you want to pass some arguments to your function, you can use them in the parentheses(separate with ,): foo(1,2,3) Also you can assign the return value of a function to a variable: var foo : int = add(1,2)","breadcrumbs":"Functions » Calling a function","id":"35","title":"Calling a function"},"36":{"body":"You can overload functions by defining a new function and changing the number of parameters or the type of parameters or return type of function : function add(x:int,y:int,z:int): int { return x + y + z\n} // overloading function `add`\nfunction add(x:int,y:int){ print(x + y)\n} function main(): int { print(add(1,2)) print(add(1,2,3))\n}","breadcrumbs":"Functions » Function overloading","id":"36","title":"Function overloading"},"37":{"body":"To passing a function as parameter you should define a parameter in with Function type with following syntax : Function[,,...] For example : function foo(func: Function[float, int]int) : int{ } At above we defined a function with name foo that takes a function as its parameter and given function should has two parameters with types float and int(respectively) and it should returns int. Also we can call given function like other functions, change the foo function code to following code : function foo(func: Function[float, int]int){ print(func(1.0,2))\n} Now we define a function to pass to foo func and must have the properties specified in the foo function(two parameters with types int and float and int as return type): function bar(a:float, b:int) : int { print(\"Hello from bar function!\") return a + b\n} Now we can pass bar function to foo function as parameter : foo(bar) Output : Hello from bar function!\n3","breadcrumbs":"Functions » Passing function as parameter","id":"37","title":"Passing function as parameter"},"38":{"body":"Decorator is a way to add some properties to a function and it is used with @ character + decorator name before function declaration. List of available decorators in Hascal : | Decorator | Description | | :------------- | :----------: | | @static_function | Makes function static | | @extern | Externs function( like extern in C++ ) |","breadcrumbs":"Functions » Function decorators","id":"38","title":"Function decorators"},"39":{"body":"A module is a package of code that can be imported into another module to use its code.","breadcrumbs":"Importing & Creating modules » Importing & Creating modules","id":"39","title":"Importing & Creating modules"},"4":{"body":"Requirements : python>=3.7 gcc>=8(or any c++ compiler that supports c++17) libcurl,libssl,libcrypt git(to clone Hascal's source code)","breadcrumbs":"Installation » Installation","id":"4","title":"Installation"},"40":{"body":"You can use other modules by importing them. You can import a module by using the use keyword: use os function main() : int { system(\"start http://www.google.com\") return 0\n}","breadcrumbs":"Importing & Creating modules » Importing a module","id":"40","title":"Importing a module"},"41":{"body":"You can import multiple modules by using the use keyword and separating the module names with a comma: use os, math, conv For importing a submodule of a module, you can use the . operator: use crypto.sha256","breadcrumbs":"Importing & Creating modules » Importing multiple modules","id":"41","title":"Importing multiple modules"},"42":{"body":"For creating a module, you can create a file with the same name as the module and with the extension .has and put the module code inside it: add.has: function add(x:int, y:int) : int { return x + y\n} main.has: use add function main() : int { print(add(1,2)) return 0\n} Creating foldered modules Module files can be placed in a folder, for creating a foldered module you should first create the folder and then create the _.has file inside it. The _.has file is the main file of the module and compiler will look for it. You can also import submodules in _.has file. Note: Any submodule that is not imported in _.has file will be ignored. Note: Any submodule can have other submodules.","breadcrumbs":"Importing & Creating modules » Creating a module","id":"42","title":"Creating a module"},"43":{"body":"Structures are a way to group data together. You can declare a structure using the struct keyword: struct Color { var r : int var g : int var b : int var name = \"Anything...\" // optional\n} Note: Declaring a structure member without a type will make it optional. After declaring a structure, you can create an instance of it: var red = Color(255,0,0) For accessing the fields of a structure, you should use the . operator: var red = Color(255,0,0)\nprint(red.r)\nprint(red.g)\nprint(red.b)\nprint(red.name)","breadcrumbs":"Structures » Structures","id":"43","title":"Structures"},"44":{"body":"You can return a structure from a function: function foo() : Color { return Color(1,2,3)\n}","breadcrumbs":"Structures » Structures as return values","id":"44","title":"Structures as return values"},"45":{"body":"You can pass a structure as an argument to a function: function foo(c:Color) { print(c.r) print(c.g) print(c.b) print(c.name)\n}","breadcrumbs":"Structures » Structures as arguments","id":"45","title":"Structures as arguments"},"46":{"body":"You can inherit a structure from another structure with : operator after the structure name: struct RGB : Color { } And you can access the fields of the inherited structure: var foo : RGB = RGB(1,2,3)\nprint(foo.r,foo.g,foo.b) var bar = RGB(255,0,0,\"AColor\")","breadcrumbs":"Structures » Structure inheritance","id":"46","title":"Structure inheritance"},"47":{"body":"Memory management is a way to manage the memory of your program. Hascal use manual memory management because it is used in most performance-critical applications like games,OSes, embedded systems, etc. Hascal uses new and delete keywords to manage memory manually.","breadcrumbs":"Memory management » Memory management","id":"47","title":"Memory management"},"48":{"body":"For allocating memory, you should use the new keyword. Note that type of the allocated memory should be pointer or reference type and passed type to new keyword should be a var foo : int^ = new int(1) // allocating For easily declaring and allocating memory, use var = new () statement, like this: var foo = new int(1)","breadcrumbs":"Memory management » Allocation","id":"48","title":"Allocation"},"49":{"body":"For reallocating memory and assigning the new value to the pointer, use = new () statement, like this: var foo : int^ = new int(1) // allocate memory\nfoo = new int(2) // reallocate memory and assign new value","breadcrumbs":"Memory management » Reallocation","id":"49","title":"Reallocation"},"5":{"body":"You can use the hascal.sh script to automate the process of installing and adding hascal to PATH: git clone https://github.com/hascal/hascal.git\ncd hascal/\nchmod +x ./hascal.sh\nbash ./hascal.sh","breadcrumbs":"Installation » *Nix Users(recommended)","id":"5","title":"*Nix Users(recommended)"},"50":{"body":"For deallocating memory, you should use the delete keyword and pass the pointer to the memory that you want to deallocate: delete foo","breadcrumbs":"Memory management » Deallocation","id":"50","title":"Deallocation"},"51":{"body":"Like pointer types, you can access the allocated memory value with the ^ operator: var foo : int^ = new int(1)\nprint(^foo)","breadcrumbs":"Memory management » Accessing memory","id":"51","title":"Accessing memory"},"52":{"body":"Don't forget to use the delete keyword at end of scope and before the end of the program.. In future, we will add a feature to show warnings when you forget to use the delete keyword. You can't deallocate memory that you haven't allocated it without new keyword. You can allocate, not allocated pointers : var foo : int^?\nfoo = new int(1)","breadcrumbs":"Memory management » Critical notes","id":"52","title":"Critical notes"},"53":{"body":"Hascal is based on C++, so you can use C++ functions and classes in your program.","breadcrumbs":"Interfacing with C++ » Interfacing with C++","id":"53","title":"Interfacing with C++"},"54":{"body":"You can use inline c++ code in Hascal with cuse keyword : cuse '#include '\ncuse 'int main(){printf(\"%d\",1);return 0;}'\n// output : 1 Or you can use multiline c++ code, like following example: cuse \"\"\"\n#include int main(){ printf(\"%d\",1); return 0;\n}\n\"\"\"","breadcrumbs":"Interfacing with C++ » Inline C++ Code","id":"54","title":"Inline C++ Code"},"55":{"body":"For using C++ functions in your program, you should at first declare them with following syntax: function () : Example : function system(command:char^):int","breadcrumbs":"Interfacing with C++ » Externing functions","id":"55","title":"Externing functions"},"56":{"body":"Also Hascal can include C++ headers in your program. We need two files, one for headers and one for main part of the library. You should put #include,... in your_cpp_lib.hpp and main part of library in your_cpp_lib.cc. The specified files should exist in the same folder. See the example below: add.cc : void __hascal__cpp_print(int x){ printf(\"%d\",x);\n} add __hascal__ to your C++ functions, structs name. Hascal transpiles to C++ and it adds __hascal__ prefix to your C++ names. add.hpp : #include main.has : cuse add function cpp_print(x:int) function main() : int { cpp_print(12) return 0\n} Also you can put the C++ files in a folder and rename they to _.cc and _.hpp. Note that don't include local headers in *.hpp file.","breadcrumbs":"Interfacing with C++ » Include C++ headers","id":"56","title":"Include C++ headers"},"57":{"body":"You can access to Hascal's variable and types in inline C++ codes in Hascal by adding __hascal__ prefix to a name, for example: main.has: function add(a:int,b:int){ cuse \"\"\" std::cout << a + b; \"\"\"\n} you can return a value in inline C++ codes by returning a meaningless value with same type as return type of the function(it may be ridiculous, we are currently working to improve it): function add(a:int,b:int){ cuse \"\"\" return a + b; \"\"\" return 0 // return a value with same type as return type of the function\n}","breadcrumbs":"Interfacing with C++ » Accessing to values and types in inline C++ code","id":"57","title":"Accessing to values and types in inline C++ code"},"58":{"body":"To read Hascal's stdlib go to this link .","breadcrumbs":"Standard Library Documentation » Standard Library Documentation","id":"58","title":"Standard Library Documentation"},"59":{"body":"Hascal has a built-in package manager that allows you to install packages from the a git repository.","breadcrumbs":"Package Manager Documentation » Package Manager","id":"59","title":"Package Manager"},"6":{"body":"> git clone https://github.com/hascal/hascal.git\n> cd hascal\n> make deps-windows\n> make windows Now your Hascal compiler is ready to use in dist folder, you can add it to $PATH. NOTE : The latest version of Hascal should always be used, older versions have bugs when running binary versions of Hascal.","breadcrumbs":"Installation » Windows Users","id":"6","title":"Windows Users"},"60":{"body":"To get and install a package, you can use the get command : hascal get is the url of the git repository is the name of the package(optional, recommended, default is the url) Note: If you don't specify the package name, you should import it like this : use github.com.foo.bar","breadcrumbs":"Package Manager Documentation » Installing a package","id":"60","title":"Installing a package"},"61":{"body":"To update a package, you can use the update command : hascal update ","breadcrumbs":"Package Manager Documentation » Updating a package","id":"61","title":"Updating a package"},"62":{"body":"To list all packages, you can use the list command : hascal list if you want to list all subpackages of a package, you can use the list command with name of the package : hascal list is the name of the package you want to list subpackages For example : $ hascal list crypto\nlist of all subpackages in crypto :\n- sha256","breadcrumbs":"Package Manager Documentation » Listing packages","id":"62","title":"Listing packages"},"63":{"body":"Vscode Extension","breadcrumbs":"IDE Integration » IDE Integration","id":"63","title":"IDE Integration"},"64":{"body":"","breadcrumbs":"Roadmap » Hascal's Roadmap","id":"64","title":"Hascal's Roadmap"},"65":{"body":"js backend lambdas : var mythread = thread(function(x:int,y:int){ print(x*y)\n}) generate html doc from a code classes class C : T { var foo : string var bar = 1 // constructor C(foo: string){ this.foo = foo } public f(x: string): string { return x } private f2(x: string): string { return x } // allocator __new__(foo: string): C { return new C(foo) } // deallocator __delete__(foo: string): C { delete this.foo delete this.bar }\n} generics #26 s rewrite compiler in hascal const correctness","breadcrumbs":"Roadmap » Language","id":"65","title":"Language"},"66":{"body":"thread library","breadcrumbs":"Roadmap » Standard Library","id":"66","title":"Standard Library"},"67":{"body":"","breadcrumbs":"Roadmap » Package Manager","id":"67","title":"Package Manager"},"68":{"body":"v1.4.2 New features Changes observe Hasca's coding style in libraries Bug fixes Removed v1.4.1 Bug fixes No errors when main doesn't return anything #67 (by @mehanalavimajd ) v1.4.0 New features add builtin range function function main(): int { // prints 1 to 10 for i in range(1,11){ print(i) } return 0\n} add asin, acos, asinh, acosh, exp, frexpr, ldexp, log, log10, fdim, sqrt, ceil, floor, NaN, max, min functions to math library, see documentation . Showing error for overloading function's return type. Changes Speedup parsing and compiling Bug fixes fix passing list to for in statement Removed v1.3.12 New features add support for multiline C-style comment add round function to math library Changes Hascal relicensed from MIT license to BSD-3-Clause license Bug fixes fix string subscripting bug fix empty list parsing bug fix random library bugs Removed v1.3.11 New features add uniform distribution based random number generator called uniform in random library Changes change static decorator name to static_function name rename times function to multiplies in functional library rename if_and, if_or, if_not functions to _and, _or, _not in functional library Bug fixes fix package manager bug Removed v1.3.10 New features show error for undeleted variables from heap Changes improve math,os library in functional library : change lessThanOrEqual to lessThanEqual, greaterThanOrEqual to greaterThanEqual improve error handler for conditions pytest based test runner(@mmdbalkhi) fix conflicting with C\\C++\\Obj-C in FFI features change static decorator name to static_function name Bug fixes fix math library bug fix import package bug with _.* name fix crypto.sha256 library bug Removed remove libtcc from stdlib v1.3.9x v1.3.9 New features add hascal list command to list all available packages add hascal init command to create a new project, that generates config.json, .gitignore and src/app.has files add hascal build command to build project add hascal run command to run project add string_reverse(str:string) function to strings module add assert function to runtime library add no_std compiler option add filename config option Changes change emitting std::string for strings to string(because in showing assertion errors, std::string is illusory). use sys.exit instead of exit in src/core/h_help.py(@mmdbalkhi) fix importing system bugs improve typeof builtin function Bug fixes fix assigning NULL to arrays and pointers bug, #36. fix check_g++ config option bugs fix not defined consts when importing packages fix random library bug fix browser library bug Removed remove windows,browser libraries v1.3.9-rc.2 Bug fixes fix a critical bug in importing system v1.3.9-rc.1 Changes upgrade importing system some changes in self hosted compiler(NOTE: self hosted compiler is not ready yet) Bug fixes fix import bug when importing one package in multiple files fix self hosted bugs v1.3.9-rc Changes Rewrite package manager Bug fixes fix http library bug fix cpp importing bug v1.3.9-beta New features passing functions as arguments function f(x: int): int { return x + 1\n} function g(func:Function[int]int): int { return func(1)\n} add static variables, See this example add only_compile config option Changes upgrade importing system Bug fixes fix pyinstaller build issue Removed v1.3.9-alpha.1 Changes add download,upload,post functions to http library https support for http library add windows library(that includes windows.h) add browser library to open urls in default browser(now only supports windows) Bug fixes fix linker flag import bug in cuse statement v1.3.8 New features non-nullable and nullable variables Changes change pointer unary from * to ^ improve importing system Bug fixes fix repetitious imports bug fix #29 bug(by @mmdbalkhi ) Removed remove token library v1.3.7 New features manual memory management with new and delete keyword functional programming paradigm speed up compilation time add typeof function now can print arrays and structures function decorators static and extern decorator multiple library import improve importing system improve stdlib architecture Bug fixes fix scoping bug fix conv library bug fix conditions bug Removed export library removed local use statement removed v1.3.6 New features more data types : int8,uint8,int16,uint16,int32,uint32,int64,uint64,double type compatibility multi line string pointers and references var x : *int = 20\nvar y : int = 10\nx = &y\nvar z = *x // type : int // Pointers fix incomplete types on struct defination\nstruct bar { var self : *bar\n} add sizeof function Bug fixes fix lexer bugs check if function returns a value at end of string else show error main function should returns int fix termcolor library bugs fix enum bugs Standart library add sdl2 wrapper add export library for exporting to C(see : haspy ) add crypto.sha256 for sha256 hashing Removed libcinfo library removed v1.3.5 Standard library Updated os : add compiler_name function to get the name of the compiler add arch function to get the architecture of the system add is_x86 function to check if the architecture is x86 add is_x64 function to check if the architecture is x64 add getenv function to get an environment variable Added add libcinfo library to get information about the libc add termcolor library to colorize the output assets/termcolor.png Bug fixes Fix incomplete type defination bug v1.3.4 New features compiler option : now can generate c++ code from hascal code with c++_code : 1 in config.json file use cuse keyword to include c++ files. Bug fixes Fix semantic analyser bugs Fix standard library bug v1.3.3 New features struct inheritance can use cuse statement on struct declaration Bug fixes Fix variable scope bug Fix variable declaration bug Fix semantic analyser bug v1.3.2 New features for in statement library manager flag option cuse statement Bug fixes Fix semantic analyser bugs Fix nested struct bug Removed for to and for downto statement removed v1.3.1 New features Basic Semantic Anaslyser Removed remove semicolon from syntax","breadcrumbs":"Change Log » Hascal's Changelog","id":"68","title":"Hascal's Changelog"},"7":{"body":"Now that you have successfully installed Haskall, let's write our first program with it. You will write a program that prints Hello World! on the terminal.","breadcrumbs":"Hello World! » Hello World!","id":"7","title":"Hello World!"},"8":{"body":"You can wite your hascal programs every where but We suggest that you create a directory for your project. First create a directory in your home directory(or anywhere else): mkdir hello_world\ncd hello_wrold","breadcrumbs":"Hello World! » Creating a project directory","id":"8","title":"Creating a project directory"},"9":{"body":"Next make a new file and name it main.has. Hascal files should end with .has extension. Now open your code editor(If you are using vscode install hascal extension for better coding from this link ) and write following code in main.has : function main() : int { print(\"Hello World!\") return 0\n} Save the file, and back to terminal and enter following command to build your program : hascal main.has Now run the generated excutable file : $ ./main\nHello World! On Windows you should use .\\main.exe instead of ./main : $ .\\main.exe\nHello World! Congratulations - you just wrote and executed your first Hascal program!","breadcrumbs":"Hello World! » Writing the code","id":"9","title":"Writing the code"}},"length":69,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{"df":11,"docs":{"10":{"tf":1.7320508075688772},"12":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0}}},"1":{",":{"2":{",":{"3":{"df":2,"docs":{"25":{"tf":2.23606797749979},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"2":{"3":{"1":{"3":{"2":{"1":{"3":{"2":{"1":{"5":{"6":{"4":{"8":{"7":{"8":{"9":{"7":{"9":{"8":{"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":{}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":2,"docs":{"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"2":{"3":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":13,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":2.0},"30":{"tf":2.0},"31":{"tf":3.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"54":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.7320508075688772}}},"2":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"6":{"df":1,"docs":{"65":{"tf":1.0}}},"9":{"df":1,"docs":{"68":{"tf":1.0}}},"df":5,"docs":{"25":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":2.449489742783178},"32":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"3":{"2":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"6":{"df":1,"docs":{"68":{"tf":1.0}}},"df":3,"docs":{"25":{"tf":1.0},"37":{"tf":1.0},"68":{"tf":1.0}}},"4":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"5":{"df":1,"docs":{"24":{"tf":1.0}}},"6":{"4":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"7":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"_":{".":{"c":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"42":{"tf":2.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"_":{"_":{"_":{"_":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"_":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"56":{"tf":1.4142135623730951},"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"_":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"68":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"43":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"d":{"d":{"(":{"1":{",":{"2":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"b":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"y":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"z":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"34":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}}},".":{"c":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":7,"docs":{"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.7320508075688772},"6":{"tf":1.0},"68":{"tf":5.477225575051661}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":4,"docs":{"20":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":6,"docs":{"21":{"tf":1.0},"48":{"tf":2.23606797749979},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"65":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":2,"docs":{"20":{"tf":1.0},"59":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{".":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"10":{"tf":1.0},"21":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"39":{"tf":1.0},"46":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"3":{"tf":1.0},"43":{"tf":1.0},"68":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"22":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":2.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"25":{"tf":2.8284271247461903},"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}},"h":{"df":1,"docs":{"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":7,"docs":{"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":1,"docs":{"5":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"15":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"9":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"(":{"a":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":2.449489742783178},"37":{"tf":1.7320508075688772},"46":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"h":{"df":1,"docs":{"5":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"26":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.0},"38":{"tf":1.0},"52":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"56":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"18":{"tf":2.0},"23":{"tf":2.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"18":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}},"s":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"(":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"6":{"tf":1.0},"68":{"tf":7.211102550927978}}},"i":{"df":0,"docs":{},"l":{"d":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"12":{"tf":1.0},"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":6,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"13":{"tf":2.0},"14":{"tf":1.0},"68":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"15":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}}}},"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"+":{"+":{"1":{"7":{"df":2,"docs":{"15":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"\\":{"c":{"+":{"+":{"\\":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"68":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}},"d":{"df":4,"docs":{"12":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}}},"df":12,"docs":{"1":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"23":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":2.449489742783178},"57":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"68":{"tf":2.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"68":{"tf":4.123105625617661}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"21":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"24":{"tf":3.1622776601683795},"26":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":1,"docs":{"68":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"y":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":20,"docs":{"10":{"tf":2.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"65":{"tf":1.0},"68":{"tf":1.7320508075688772},"9":{"tf":2.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"5":{",":{"0":{",":{"0":{"df":1,"docs":{"43":{"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":4,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"68":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"41":{"tf":1.0}},"n":{"d":{"df":9,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"68":{"tf":2.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":2.23606797749979},"68":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}},"t":{"df":3,"docs":{"1":{"tf":1.0},"26":{"tf":2.23606797749979},"68":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"15":{"tf":2.8284271247461903},"4":{"tf":1.0},"42":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"68":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.7320508075688772}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"65":{"tf":1.0},"68":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"41":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"68":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"12":{"tf":2.23606797749979},"39":{"tf":1.0},"42":{"tf":2.6457513110645907},"43":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"47":{"tf":1.0},"52":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":2,"docs":{"41":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"57":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"54":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"68":{"tf":2.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"25":{"tf":1.0},"43":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"21":{"tf":1.0},"50":{"tf":1.7320508075688772},"52":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":14,"docs":{"10":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.7320508075688772},"38":{"tf":1.0},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":2.23606797749979},"68":{"tf":2.0}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"10":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"21":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}},"p":{"df":1,"docs":{"6":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"8":{"tf":1.7320508075688772}}},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"o":{"c":{"df":1,"docs":{"65":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"17":{"tf":1.0},"2":{"tf":1.4142135623730951},"58":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"52":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"18":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"26":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"24":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}},"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":{"25":{"tf":2.449489742783178}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"n":{"d":{"df":4,"docs":{"10":{"tf":1.0},"52":{"tf":1.4142135623730951},"68":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"12":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"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":1,"docs":{"68":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"15":{"tf":1.0},"32":{"tf":2.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"68":{"tf":2.449489742783178}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":11,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"p":{"df":1,"docs":{"68":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"42":{"tf":1.0},"63":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.7320508075688772},"55":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"f":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"65":{"tf":1.0},"68":{"tf":1.0}}}},"2":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":1,"docs":{"24":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"20":{"tf":1.4142135623730951},"52":{"tf":1.0},"68":{"tf":3.872983346207417}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"43":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"15":{"tf":1.0}},"e":{"df":9,"docs":{"12":{"tf":2.6457513110645907},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.7320508075688772},"3":{"tf":1.0},"42":{"tf":2.6457513110645907},"56":{"tf":2.0},"68":{"tf":2.0},"9":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"10":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"x":{"df":1,"docs":{"68":{"tf":7.615773105863909}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"18":{"tf":1.7320508075688772},"23":{"tf":2.23606797749979},"26":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"42":{"tf":2.0},"56":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"o":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"c":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"4":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"[":{"1":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":22,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"24":{"tf":2.449489742783178},"25":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":2.449489742783178},"33":{"tf":2.23606797749979},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"44":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}}},"k":{"df":1,"docs":{"3":{"tf":1.0}}},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"(":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"37":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"68":{"tf":1.0}}},"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"[":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{",":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"2":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{",":{".":{".":{".":{"]":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":21,"docs":{"10":{"tf":3.1622776601683795},"12":{"tf":1.0},"15":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":2.23606797749979},"25":{"tf":1.4142135623730951},"34":{"tf":3.0},"35":{"tf":2.23606797749979},"36":{"tf":2.8284271247461903},"37":{"tf":4.123105625617661},"38":{"tf":2.23606797749979},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"68":{"tf":5.196152422706632},"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"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":{},"t":{"]":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"+":{"+":{",":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"16":{"tf":1.0}},"s":{",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"c":{">":{"=":{"8":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"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}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"1":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":5,"docs":{"5":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"o":{"df":3,"docs":{"10":{"tf":1.0},"21":{"tf":1.0},"58":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"15":{"tf":1.0},"32":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"34":{"tf":1.0},"43":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"c":{"a":{"'":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{},"l":{"'":{"df":6,"docs":{"20":{"tf":1.0},"4":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}}},"df":24,"docs":{"1":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":1.0},"68":{"tf":2.449489742783178},"8":{"tf":1.0},"9":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":2.0}}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"2":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"24":{"tf":2.449489742783178},"25":{"tf":1.0},"37":{"tf":1.0},"7":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"p":{"df":1,"docs":{"3":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"10":{"tf":1.0}}},"df":1,"docs":{"2":{"tf":1.0}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":2.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":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"d":{"df":2,"docs":{"24":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"39":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"60":{"tf":1.0},"68":{"tf":3.7416573867739413}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"57":{"tf":1.0},"68":{"tf":2.449489742783178}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"54":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"21":{"tf":1.0},"68":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"68":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"10":{"tf":1.7320508075688772},"12":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"11":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"7":{"tf":1.0},"9":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"68":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"(":{"1":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}},"2":{"df":1,"docs":{"49":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"1":{"6":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"8":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"6":{"4":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"6":{"4":{",":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"]":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"^":{")":{"1":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":29,"docs":{"10":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":2.8284271247461903},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"18":{"tf":2.0},"23":{"tf":2.23606797749979}},"r":{"df":1,"docs":{"63":{"tf":1.0}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"_":{"df":0,"docs":{},"x":{"6":{"4":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":18,"docs":{"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"m":{"b":{"d":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}},"n":{"df":2,"docs":{"24":{"tf":1.4142135623730951},"25":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"32":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"t":{"'":{"df":3,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"0":{",":{"1":{",":{"2":{",":{"3":{")":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"21":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"i":{"b":{"c":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"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":7,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":5.656854249492381}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"c":{"c":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"17":{"tf":1.7320508075688772},"68":{"tf":1.0}}},"k":{"df":3,"docs":{"15":{"tf":1.4142135623730951},"58":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"25":{"tf":1.0},"38":{"tf":1.0},"62":{"tf":3.1622776601683795},"68":{"tf":2.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"56":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"1":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"68":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"42":{"tf":1.0}}},"p":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{")":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"(":{"\"":{"%":{"d":{"\"":{",":{"1":{")":{";":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"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":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"h":{"a":{"df":4,"docs":{"42":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"9":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":12,"docs":{"10":{"tf":2.0},"12":{"tf":1.0},"15":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772}}}},"k":{"df":0,"docs":{},"e":{"df":9,"docs":{"1":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"11":{"tf":1.4142135623730951},"21":{"tf":1.0},"47":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":2.0}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"24":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{",":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":2,"docs":{"41":{"tf":1.0},"68":{"tf":1.7320508075688772}}}},"x":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"20":{"tf":1.0},"24":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"j":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"21":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"68":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"d":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":5,"docs":{"39":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"41":{"tf":2.0},"42":{"tf":2.8284271247461903},"68":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"21":{"tf":1.0},"68":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"17":{"tf":1.4142135623730951},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"68":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.0},"41":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},">":{"(":{"<":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"15":{"tf":1.4142135623730951},"19":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":2.0},"68":{"tf":2.449489742783178},"9":{"tf":1.0}}}},"n":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":1,"docs":{"24":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"15":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"w":{"df":11,"docs":{"12":{"tf":1.7320508075688772},"21":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.23606797749979},"49":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":4.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"5":{"tf":1.0}}}},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"68":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"10":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.7320508075688772},"24":{"tf":2.0},"26":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0}}}},"w":{"df":6,"docs":{"12":{"tf":1.0},"37":{"tf":1.4142135623730951},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"20":{"tf":2.6457513110645907},"21":{"tf":1.4142135623730951},"34":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"20":{"tf":2.6457513110645907},"24":{"tf":1.0},"68":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"10":{"tf":1.0},"23":{"tf":2.0},"33":{"tf":1.0},"36":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"2":{"df":1,"docs":{"15":{"tf":1.0}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"tf":1.0}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"n":{"df":6,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"32":{"tf":4.0}}},"df":0,"docs":{}}},"df":9,"docs":{"21":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"32":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":1.7320508075688772}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"15":{"tf":1.0},"43":{"tf":1.4142135623730951},"68":{"tf":2.449489742783178}}}}}}},"s":{"df":4,"docs":{"10":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.0}}},"t":{"df":1,"docs":{"61":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"37":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"22":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"36":{"tf":1.7320508075688772},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"24":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":2.23606797749979},"61":{"tf":1.7320508075688772},"62":{"tf":2.6457513110645907},"67":{"tf":1.0},"68":{"tf":2.449489742783178}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.4142135623730951},"34":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":2.6457513110645907}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"10":{"tf":1.0},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"15":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":2.0},"45":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"12":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"23":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"18":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"21":{"tf":2.8284271247461903},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"68":{"tf":2.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":5,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"33":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"9":{"tf":1.0}}}}}}}},"^":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"21":{"tf":1.0},"51":{"tf":1.0}}}}}},"a":{"d":{"d":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"36":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{".":{"b":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":1,"docs":{"45":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"b":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"[":{"1":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"24":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"c":{"(":{"1":{".":{"0":{",":{"2":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"d":{".":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"x":{"*":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":1,"docs":{"36":{"tf":1.0}}}},"df":4,"docs":{"10":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"7":{"tf":1.0}},"f":{"(":{"\"":{"%":{"d":{"\"":{",":{"1":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":14,"docs":{"1":{"tf":1.0},"10":{"tf":2.0},"12":{"tf":1.0},"15":{"tf":1.0},"22":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":2.23606797749979},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.0},"38":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"42":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{"=":{"3":{".":{"7":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"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":{"24":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":2.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}},"e":{"(":{"0":{"df":1,"docs":{"33":{"tf":1.0}}},"1":{",":{"1":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{".":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"68":{"tf":1.0}}},"df":2,"docs":{"24":{"tf":1.0},"43":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"58":{"tf":1.0}},"i":{"df":2,"docs":{"6":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"49":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"21":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"3":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"68":{"tf":4.47213595499958}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"56":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"3":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":18,"docs":{"10":{"tf":2.6457513110645907},"12":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":3.1622776601683795},"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.6457513110645907},"65":{"tf":1.7320508075688772},"68":{"tf":2.6457513110645907},"9":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.0},"68":{"tf":1.0}}}}}}},"g":{"b":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"5":{",":{"0":{",":{"0":{",":{"\"":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":7,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":2.23606797749979},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"9":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"d":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"20":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"25":{"tf":1.0},"42":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"52":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"65":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"12":{"tf":1.0},"15":{"tf":1.4142135623730951},"23":{"tf":1.0},"3":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":2.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":2.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":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"24":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"15":{"tf":2.0},"20":{"tf":1.0}}}},"h":{"a":{"2":{"5":{"6":{"df":2,"docs":{"62":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"52":{"tf":1.0},"68":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}},"e":{",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"17":{"tf":1.0},"24":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"1":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"df":4,"docs":{"24":{"tf":1.0},"37":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"68":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"(":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"d":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":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":{"12":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{":":{"c":{"+":{"+":{"1":{"7":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"2":{"tf":1.4142135623730951},"58":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":2.6457513110645907}}}},"t":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"38":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"22":{"tf":2.23606797749979},"38":{"tf":1.0},"68":{"tf":2.0}}},"df":0,"docs":{}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"58":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":6,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":4.242640687119285},"25":{"tf":1.0},"26":{"tf":1.0},"65":{"tf":2.8284271247461903},"68":{"tf":2.23606797749979}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"43":{"tf":1.4142135623730951},"46":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":2.23606797749979}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"43":{"tf":2.449489742783178},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":2.23606797749979},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"42":{"tf":2.0}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"7":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"15":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.7320508075688772}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":3,"docs":{"37":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{":":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"^":{")":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":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":{"1":{"tf":1.0},"11":{"tf":1.0},"47":{"tf":1.0},"68":{"tf":2.6457513110645907}}}}}}}},"t":{"a":{"b":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"37":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":2,"docs":{"24":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"7":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"x":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"y":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"26":{"tf":1.0},"43":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":7,"docs":{"15":{"tf":2.0},"27":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":3.605551275463989},"33":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":4,"docs":{"12":{"tf":1.0},"26":{"tf":1.0},"37":{"tf":1.0},"56":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}},">":{"(":{"<":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"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":2.449489742783178},"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":2.0},"43":{"tf":1.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":2.449489742783178},"68":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}},"u":{"_":{"_":{"_":{"_":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"8":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":2.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"68":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"l":{"df":3,"docs":{"60":{"tf":2.0},"61":{"tf":1.0},"68":{"tf":1.0}}}},"s":{"df":42,"docs":{"1":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":2.449489742783178},"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.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"68":{"tf":2.0},"9":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"1":{".":{"3":{".":{"1":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"1":{"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"3":{"df":1,"docs":{"68":{"tf":1.0}}},"4":{"df":1,"docs":{"68":{"tf":1.0}}},"5":{"df":1,"docs":{"68":{"tf":1.0}}},"6":{"df":1,"docs":{"68":{"tf":1.0}}},"7":{"df":1,"docs":{"68":{"tf":1.0}}},"8":{"df":1,"docs":{"68":{"tf":1.0}}},"9":{"df":1,"docs":{"68":{"tf":2.449489742783178}},"x":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"1":{"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":14,"docs":{"10":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"57":{"tf":2.0},"68":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"1":{"df":1,"docs":{"32":{"tf":2.8284271247461903}}},"2":{"df":1,"docs":{"32":{"tf":2.8284271247461903}}},"df":21,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":2.449489742783178},"25":{"tf":2.449489742783178},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"43":{"tf":2.449489742783178},"46":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":2.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"19":{"tf":2.0},"20":{"tf":2.23606797749979},"21":{"tf":1.0},"22":{"tf":2.0},"25":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"24":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"63":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"15":{"tf":1.7320508075688772},"24":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}},"y":{"df":5,"docs":{"21":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"6":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"9":{"tf":1.0}},"s":{",":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"26":{"tf":1.4142135623730951},"43":{"tf":1.0},"52":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":1.0}}},"l":{"d":{"!":{"\"":{",":{"4":{"2":{",":{"3":{".":{"1":{"4":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"10":{"tf":1.0},"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"24":{"tf":2.0},"25":{"tf":1.0},"34":{"tf":1.0},"7":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"7":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"x":{"6":{"4":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":2.0}}},"y":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":4,"docs":{"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"42":{"tf":1.0},"68":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"c":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"c":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"’":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"z":{"df":2,"docs":{"36":{"tf":1.0},"68":{"tf":1.0}}}}},"breadcrumbs":{"root":{"0":{"df":11,"docs":{"10":{"tf":1.7320508075688772},"12":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0}}},"1":{",":{"2":{",":{"3":{"df":2,"docs":{"25":{"tf":2.23606797749979},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"2":{"3":{"1":{"3":{"2":{"1":{"3":{"2":{"1":{"5":{"6":{"4":{"8":{"7":{"8":{"9":{"7":{"9":{"8":{"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":{}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":2,"docs":{"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"2":{"3":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":13,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":2.0},"30":{"tf":2.0},"31":{"tf":3.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"54":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.7320508075688772}}},"2":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"6":{"df":1,"docs":{"65":{"tf":1.0}}},"9":{"df":1,"docs":{"68":{"tf":1.0}}},"df":5,"docs":{"25":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":2.449489742783178},"32":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"3":{"2":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"6":{"df":1,"docs":{"68":{"tf":1.0}}},"df":3,"docs":{"25":{"tf":1.0},"37":{"tf":1.0},"68":{"tf":1.0}}},"4":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"5":{"df":1,"docs":{"24":{"tf":1.0}}},"6":{"4":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"7":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"_":{".":{"c":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"42":{"tf":2.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"_":{"_":{"_":{"_":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"_":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"56":{"tf":1.4142135623730951},"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"_":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"68":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"43":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"d":{"d":{"(":{"1":{",":{"2":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"b":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"y":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"z":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"34":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}}},".":{"c":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":7,"docs":{"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.7320508075688772},"6":{"tf":1.0},"68":{"tf":5.477225575051661}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":4,"docs":{"20":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":6,"docs":{"21":{"tf":1.0},"48":{"tf":2.449489742783178},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"65":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":2,"docs":{"20":{"tf":1.0},"59":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{".":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"10":{"tf":1.0},"21":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"39":{"tf":1.0},"46":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"3":{"tf":1.0},"43":{"tf":1.0},"68":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"22":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":2.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"25":{"tf":3.1622776601683795},"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}},"h":{"df":1,"docs":{"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":7,"docs":{"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":1,"docs":{"5":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"15":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"9":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"(":{"a":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":2.449489742783178},"37":{"tf":1.7320508075688772},"46":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"h":{"df":1,"docs":{"5":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"26":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.0},"38":{"tf":1.0},"52":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"56":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"18":{"tf":2.0},"23":{"tf":2.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"18":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}},"s":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"(":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"6":{"tf":1.0},"68":{"tf":7.211102550927978}}},"i":{"df":0,"docs":{},"l":{"d":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"12":{"tf":1.0},"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":6,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"13":{"tf":2.23606797749979},"14":{"tf":1.0},"68":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"15":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}}}},"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"+":{"+":{"1":{"7":{"df":2,"docs":{"15":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"\\":{"c":{"+":{"+":{"\\":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"37":{"tf":1.0},"68":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}},"d":{"df":4,"docs":{"12":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}}},"df":12,"docs":{"1":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"23":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":2.23606797749979},"55":{"tf":1.4142135623730951},"56":{"tf":2.8284271247461903},"57":{"tf":2.23606797749979},"65":{"tf":1.7320508075688772},"68":{"tf":2.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"68":{"tf":4.242640687119285}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"21":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"24":{"tf":3.1622776601683795},"26":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":1,"docs":{"68":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"y":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":20,"docs":{"10":{"tf":2.23606797749979},"15":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":2.0},"57":{"tf":2.0},"65":{"tf":1.0},"68":{"tf":1.7320508075688772},"9":{"tf":2.23606797749979}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"5":{",":{"0":{",":{"0":{"df":1,"docs":{"43":{"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":4,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"68":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"41":{"tf":1.0}},"n":{"d":{"df":9,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"68":{"tf":2.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":2.6457513110645907},"68":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}},"t":{"df":3,"docs":{"1":{"tf":1.0},"26":{"tf":2.6457513110645907},"68":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"15":{"tf":3.1622776601683795},"4":{"tf":1.0},"42":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"27":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":2.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"68":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":2.23606797749979}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"65":{"tf":1.0},"68":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":2.0}}}}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"41":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"68":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"12":{"tf":2.449489742783178},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":3.0},"43":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":2.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":2,"docs":{"41":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"57":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"54":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"68":{"tf":2.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"25":{"tf":1.0},"43":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"21":{"tf":1.0},"50":{"tf":2.0},"52":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":14,"docs":{"10":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.7320508075688772},"38":{"tf":1.0},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":2.449489742783178},"68":{"tf":2.0}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"10":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"21":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}},"p":{"df":1,"docs":{"6":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"8":{"tf":2.0}}},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"o":{"c":{"df":1,"docs":{"65":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"17":{"tf":1.0},"2":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"52":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"18":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"26":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"24":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}},"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":{"25":{"tf":2.449489742783178}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"n":{"d":{"df":4,"docs":{"10":{"tf":1.0},"52":{"tf":1.4142135623730951},"68":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"12":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"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":1,"docs":{"68":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"15":{"tf":1.0},"32":{"tf":2.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"68":{"tf":2.449489742783178}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":11,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"p":{"df":1,"docs":{"68":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"42":{"tf":1.0},"63":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}}},"f":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"65":{"tf":1.0},"68":{"tf":1.0}}}},"2":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":1,"docs":{"24":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"20":{"tf":1.4142135623730951},"52":{"tf":1.0},"68":{"tf":3.872983346207417}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"43":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"15":{"tf":1.0}},"e":{"df":9,"docs":{"12":{"tf":2.6457513110645907},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.7320508075688772},"3":{"tf":1.0},"42":{"tf":2.6457513110645907},"56":{"tf":2.0},"68":{"tf":2.0},"9":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"10":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"x":{"df":1,"docs":{"68":{"tf":7.615773105863909}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"18":{"tf":1.7320508075688772},"23":{"tf":2.23606797749979},"26":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"42":{"tf":2.0},"56":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"o":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"c":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"4":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"[":{"1":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":22,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"24":{"tf":2.449489742783178},"25":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":2.449489742783178},"33":{"tf":2.23606797749979},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"44":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}}},"k":{"df":1,"docs":{"3":{"tf":1.0}}},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"(":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"37":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"68":{"tf":1.0}}},"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"[":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{",":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"2":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{",":{".":{".":{".":{"]":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":21,"docs":{"10":{"tf":3.1622776601683795},"12":{"tf":1.0},"15":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":2.23606797749979},"25":{"tf":1.4142135623730951},"34":{"tf":3.3166247903554},"35":{"tf":2.6457513110645907},"36":{"tf":3.1622776601683795},"37":{"tf":4.358898943540674},"38":{"tf":2.6457513110645907},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":2.23606797749979},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"68":{"tf":5.196152422706632},"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"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":{},"t":{"]":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"+":{"+":{",":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"16":{"tf":1.7320508075688772}},"s":{",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"c":{">":{"=":{"8":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"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}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"1":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":5,"docs":{"5":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"o":{"df":3,"docs":{"10":{"tf":1.0},"21":{"tf":1.0},"58":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"15":{"tf":1.0},"32":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"34":{"tf":1.0},"43":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.7320508075688772}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"c":{"a":{"'":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{},"l":{"'":{"df":6,"docs":{"20":{"tf":1.0},"4":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}}},"df":24,"docs":{"1":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":1.0},"68":{"tf":2.449489742783178},"8":{"tf":1.0},"9":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"2":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":9,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"24":{"tf":2.449489742783178},"25":{"tf":1.0},"37":{"tf":1.0},"7":{"tf":2.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"p":{"df":1,"docs":{"3":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"10":{"tf":1.0}}},"df":1,"docs":{"2":{"tf":1.0}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":2.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":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"d":{"df":2,"docs":{"24":{"tf":1.0},"63":{"tf":1.7320508075688772}}},"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"39":{"tf":2.0},"40":{"tf":2.23606797749979},"41":{"tf":2.23606797749979},"42":{"tf":1.7320508075688772},"60":{"tf":1.0},"68":{"tf":3.7416573867739413}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"57":{"tf":1.0},"68":{"tf":2.449489742783178}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"54":{"tf":1.4142135623730951},"56":{"tf":2.449489742783178},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"21":{"tf":1.0},"68":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":2.0},"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"68":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.7320508075688772},"57":{"tf":2.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"10":{"tf":1.7320508075688772},"12":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"11":{"tf":1.0},"4":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"7":{"tf":1.0},"9":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"68":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"(":{"1":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}},"2":{"df":1,"docs":{"49":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"1":{"6":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"8":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"6":{"4":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"6":{"4":{",":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"]":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"^":{")":{"1":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":29,"docs":{"10":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":2.8284271247461903},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"18":{"tf":2.0},"23":{"tf":2.23606797749979}},"r":{"df":1,"docs":{"63":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":5,"docs":{"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"_":{"df":0,"docs":{},"x":{"6":{"4":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":18,"docs":{"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"m":{"b":{"d":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}},"n":{"df":2,"docs":{"24":{"tf":1.4142135623730951},"25":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"32":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"t":{"'":{"df":3,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"0":{",":{"1":{",":{"2":{",":{"3":{")":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"21":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"i":{"b":{"c":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"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":7,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"68":{"tf":5.656854249492381}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"c":{"c":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"17":{"tf":1.7320508075688772},"68":{"tf":1.0}}},"k":{"df":3,"docs":{"15":{"tf":1.4142135623730951},"58":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"25":{"tf":1.0},"38":{"tf":1.0},"62":{"tf":3.3166247903554},"68":{"tf":2.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"56":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"1":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"42":{"tf":1.0}}},"p":{"df":1,"docs":{"33":{"tf":1.7320508075688772}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{")":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"(":{"\"":{"%":{"d":{"\"":{",":{"1":{")":{";":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"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":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"h":{"a":{"df":4,"docs":{"42":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"9":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":12,"docs":{"10":{"tf":2.0},"12":{"tf":1.0},"15":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772}}}},"k":{"df":0,"docs":{},"e":{"df":9,"docs":{"1":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":17,"docs":{"11":{"tf":2.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"21":{"tf":1.0},"47":{"tf":2.6457513110645907},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.0}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"24":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{",":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":2,"docs":{"41":{"tf":1.0},"68":{"tf":1.7320508075688772}}}},"x":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"20":{"tf":1.0},"24":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"j":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"21":{"tf":1.4142135623730951},"47":{"tf":2.6457513110645907},"48":{"tf":2.0},"49":{"tf":2.0},"50":{"tf":1.7320508075688772},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"d":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":5,"docs":{"39":{"tf":2.23606797749979},"40":{"tf":2.23606797749979},"41":{"tf":2.449489742783178},"42":{"tf":3.1622776601683795},"68":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"21":{"tf":1.0},"68":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"17":{"tf":1.4142135623730951},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"68":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.0},"41":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},">":{"(":{"<":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"15":{"tf":1.4142135623730951},"19":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":2.0},"68":{"tf":2.449489742783178},"9":{"tf":1.0}}}},"n":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":1,"docs":{"24":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"15":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"w":{"df":11,"docs":{"12":{"tf":2.0},"21":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.23606797749979},"49":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":4.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":2.0},"21":{"tf":1.0},"68":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"10":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.7320508075688772},"24":{"tf":2.0},"26":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0}}}},"w":{"df":6,"docs":{"12":{"tf":1.0},"37":{"tf":1.4142135623730951},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"20":{"tf":3.0},"21":{"tf":1.4142135623730951},"34":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"20":{"tf":2.6457513110645907},"24":{"tf":1.0},"68":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"10":{"tf":1.0},"23":{"tf":2.449489742783178},"33":{"tf":1.0},"36":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"2":{"df":1,"docs":{"15":{"tf":1.0}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"tf":1.0}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"n":{"df":6,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"32":{"tf":4.0}}},"df":0,"docs":{}}},"df":9,"docs":{"21":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"32":{"tf":1.7320508075688772},"41":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":1.7320508075688772}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"15":{"tf":1.0},"43":{"tf":1.4142135623730951},"68":{"tf":2.449489742783178}}}}}}},"s":{"df":4,"docs":{"10":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.0}}},"t":{"df":1,"docs":{"61":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"37":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"22":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"36":{"tf":2.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"24":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":2.23606797749979},"60":{"tf":2.6457513110645907},"61":{"tf":2.23606797749979},"62":{"tf":3.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.449489742783178}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.4142135623730951},"34":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":2.8284271247461903}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"10":{"tf":1.0},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"15":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":2.23606797749979},"45":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"12":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"23":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"18":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"21":{"tf":3.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"68":{"tf":2.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":5,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"33":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"9":{"tf":1.0}}}}}}}},"^":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"21":{"tf":1.0},"51":{"tf":1.0}}}}}},"a":{"d":{"d":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"36":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{".":{"b":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":1,"docs":{"45":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"b":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"[":{"1":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"24":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"c":{"(":{"1":{".":{"0":{",":{"2":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"d":{".":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"x":{"*":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":1,"docs":{"36":{"tf":1.0}}}},"df":4,"docs":{"10":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"7":{"tf":1.0}},"f":{"(":{"\"":{"%":{"d":{"\"":{",":{"1":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":14,"docs":{"1":{"tf":1.0},"10":{"tf":2.0},"12":{"tf":1.0},"15":{"tf":1.0},"22":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":2.23606797749979},"12":{"tf":2.6457513110645907},"13":{"tf":2.0},"14":{"tf":2.0},"68":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.0},"38":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"42":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{"=":{"3":{".":{"7":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"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":{"24":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":2.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}},"e":{"(":{"0":{"df":1,"docs":{"33":{"tf":1.0}}},"1":{",":{"1":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{".":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"68":{"tf":1.0}}},"df":2,"docs":{"24":{"tf":1.0},"43":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"58":{"tf":1.0}},"i":{"df":2,"docs":{"6":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"49":{"tf":2.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"21":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"3":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"68":{"tf":4.47213595499958}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"56":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"3":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":18,"docs":{"10":{"tf":2.6457513110645907},"12":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":3.1622776601683795},"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.6457513110645907},"65":{"tf":1.7320508075688772},"68":{"tf":2.6457513110645907},"9":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":1.7320508075688772}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.0},"68":{"tf":1.0}}}}}}},"g":{"b":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"5":{",":{"0":{",":{"0":{",":{"\"":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":7,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":2.449489742783178},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"9":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"d":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"20":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"25":{"tf":1.0},"42":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"52":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"65":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"12":{"tf":1.0},"15":{"tf":1.4142135623730951},"23":{"tf":1.0},"3":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":2.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":2.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":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"24":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"15":{"tf":2.0},"20":{"tf":1.0}}}},"h":{"a":{"2":{"5":{"6":{"df":2,"docs":{"62":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"52":{"tf":1.0},"68":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}},"e":{",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"17":{"tf":1.0},"24":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"1":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"df":4,"docs":{"24":{"tf":1.0},"37":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"68":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"(":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"d":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":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":{"12":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{":":{"c":{"+":{"+":{"1":{"7":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"2":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"10":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":2.6457513110645907}}}},"t":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"38":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"22":{"tf":2.449489742783178},"38":{"tf":1.0},"68":{"tf":2.0}}},"df":0,"docs":{}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"58":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":6,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":4.47213595499958},"25":{"tf":1.0},"26":{"tf":1.0},"65":{"tf":2.8284271247461903},"68":{"tf":2.23606797749979}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"43":{"tf":1.4142135623730951},"46":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":2.23606797749979}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"43":{"tf":2.8284271247461903},"44":{"tf":2.0},"45":{"tf":2.0},"46":{"tf":2.6457513110645907},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"42":{"tf":2.0}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"7":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"15":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.7320508075688772}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":3,"docs":{"37":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{":":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"^":{")":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":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":{"1":{"tf":1.0},"11":{"tf":1.0},"47":{"tf":1.0},"68":{"tf":2.6457513110645907}}}}}}}},"t":{"a":{"b":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"37":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":2,"docs":{"24":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"7":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"x":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"y":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"26":{"tf":1.0},"43":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":7,"docs":{"15":{"tf":2.0},"27":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":3.605551275463989},"33":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":4,"docs":{"12":{"tf":1.0},"26":{"tf":1.0},"37":{"tf":1.0},"56":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}},">":{"(":{"<":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.0},"18":{"tf":2.0},"19":{"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":2.8284271247461903},"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":2.0},"43":{"tf":1.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":2.6457513110645907},"68":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}},"u":{"_":{"_":{"_":{"_":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"8":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":2.23606797749979},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"68":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"l":{"df":3,"docs":{"60":{"tf":2.0},"61":{"tf":1.0},"68":{"tf":1.0}}}},"s":{"df":42,"docs":{"1":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":2.449489742783178},"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.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"68":{"tf":2.0},"9":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"1":{".":{"3":{".":{"1":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"1":{"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"3":{"df":1,"docs":{"68":{"tf":1.0}}},"4":{"df":1,"docs":{"68":{"tf":1.0}}},"5":{"df":1,"docs":{"68":{"tf":1.0}}},"6":{"df":1,"docs":{"68":{"tf":1.0}}},"7":{"df":1,"docs":{"68":{"tf":1.0}}},"8":{"df":1,"docs":{"68":{"tf":1.0}}},"9":{"df":1,"docs":{"68":{"tf":2.449489742783178}},"x":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"1":{"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":14,"docs":{"10":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"57":{"tf":2.23606797749979},"68":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"1":{"df":1,"docs":{"32":{"tf":2.8284271247461903}}},"2":{"df":1,"docs":{"32":{"tf":2.8284271247461903}}},"df":21,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":2.449489742783178},"25":{"tf":2.449489742783178},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"43":{"tf":2.449489742783178},"46":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":2.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":12,"docs":{"19":{"tf":2.449489742783178},"20":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"22":{"tf":2.449489742783178},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"24":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"63":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"15":{"tf":1.7320508075688772},"24":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}},"y":{"df":5,"docs":{"21":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"6":{"tf":2.0},"68":{"tf":1.4142135623730951},"9":{"tf":1.0}},"s":{",":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"26":{"tf":1.4142135623730951},"43":{"tf":1.0},"52":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":1.0}}},"l":{"d":{"!":{"\"":{",":{"4":{"2":{",":{"3":{".":{"1":{"4":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"24":{"tf":2.0},"25":{"tf":1.0},"34":{"tf":1.0},"7":{"tf":2.0},"8":{"tf":1.0},"9":{"tf":2.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"10":{"tf":1.0},"16":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"x":{"6":{"4":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":2.0}}},"y":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":4,"docs":{"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"42":{"tf":1.0},"68":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"c":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"c":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"’":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"z":{"df":2,"docs":{"36":{"tf":1.0},"68":{"tf":1.0}}}}},"title":{"root":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"51":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":4,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"10":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"58":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"'":{"df":2,"docs":{"64":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"i":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"57":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"4":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"2":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"11":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"47":{"tf":1.0},"51":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"12":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"5":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.0}}}}},"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":1,"docs":{"21":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"2":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"18":{"tf":1.0},"26":{"tf":1.0},"57":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"44":{"tf":1.0},"57":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"16":{"tf":1.0},"9":{"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#overview","index.html#introduction","index.html#standard-library-documentation","index.html#contributing","lang/0_install.html#installation","lang/0_install.html#nix-usersrecommended","lang/0_install.html#windows-users","lang/1_hello_world.html#hello-world","lang/1_hello_world.html#creating-a-project-directory","lang/1_hello_world.html#writing-the-code","lang/1_hello_world.html#reviewing-the-code","lang/2_project_manager.html#project-manager","lang/2_project_manager.html#creating-a-new-project","lang/2_project_manager.html#building-a-project","lang/2_project_manager.html#running-a-project","lang/3_config.html#configure-the-compiler","lang/4_guessing_game.html#write-a-guessing-game","lang/5_comments.html#comments","lang/6_types.html#primitive-types","lang/7_00_variables.html#variables","lang/7_00_variables.html#non-nullable-and-nullable","lang/7_00_variables.html#pointers","lang/7_00_variables.html#static-variables","lang/7_01_numbers.html#numbers","lang/7_02_strings.html#strings","lang/7_03_arrays.html#arrays","lang/7_04_type_compatibility.html#type-compatibility","lang/8_conditional_statements.html#conditional-statements","lang/8_conditional_statements.html#if","lang/8_conditional_statements.html#else","lang/8_conditional_statements.html#else-if","lang/8_conditional_statements.html#and-and-or-and-not","lang/8_conditional_statements.html#conditional-operators","lang/9_loops.html#loops","lang/10_functions.html#functions","lang/10_functions.html#calling-a-function","lang/10_functions.html#function-overloading","lang/10_functions.html#passing-function-as-parameter","lang/10_functions.html#function-decorators","lang/11_importing.html#importing--creating-modules","lang/11_importing.html#importing-a-module","lang/11_importing.html#importing-multiple-modules","lang/11_importing.html#creating-a-module","lang/12_structs.html#structures","lang/12_structs.html#structures-as-return-values","lang/12_structs.html#structures-as-arguments","lang/12_structs.html#structure-inheritance","lang/13_memory_management.html#memory-management","lang/13_memory_management.html#allocation","lang/13_memory_management.html#reallocation","lang/13_memory_management.html#deallocation","lang/13_memory_management.html#accessing-memory","lang/13_memory_management.html#critical-notes","lang/14_interfacing_with_cpp.html#interfacing-with-c","lang/14_interfacing_with_cpp.html#inline-c-code","lang/14_interfacing_with_cpp.html#externing-functions","lang/14_interfacing_with_cpp.html#include-c-headers","lang/14_interfacing_with_cpp.html#accessing-to-values-and-types-in-inline-c-code","stdlib.html#standard-library-documentation","hpm.html#package-manager","hpm.html#installing-a-package","hpm.html#updating-a-package","hpm.html#listing-packages","ide.html#ide-integration","ROADMAP.html#hascals-roadmap","ROADMAP.html#language","ROADMAP.html#standard-library","ROADMAP.html#package-manager","CHANGELOG.html#hascals-changelog"],"index":{"documentStore":{"docInfo":{"0":{"body":0,"breadcrumbs":2,"title":1},"1":{"body":44,"breadcrumbs":2,"title":1},"10":{"body":83,"breadcrumbs":4,"title":2},"11":{"body":12,"breadcrumbs":4,"title":2},"12":{"body":81,"breadcrumbs":5,"title":3},"13":{"body":15,"breadcrumbs":4,"title":2},"14":{"body":13,"breadcrumbs":4,"title":2},"15":{"body":86,"breadcrumbs":4,"title":2},"16":{"body":1,"breadcrumbs":6,"title":3},"17":{"body":16,"breadcrumbs":2,"title":1},"18":{"body":37,"breadcrumbs":3,"title":2},"19":{"body":25,"breadcrumbs":2,"title":1},"2":{"body":5,"breadcrumbs":4,"title":3},"20":{"body":62,"breadcrumbs":4,"title":3},"21":{"body":64,"breadcrumbs":2,"title":1},"22":{"body":22,"breadcrumbs":3,"title":2},"23":{"body":62,"breadcrumbs":3,"title":1},"24":{"body":146,"breadcrumbs":3,"title":1},"25":{"body":79,"breadcrumbs":3,"title":1},"26":{"body":38,"breadcrumbs":5,"title":2},"27":{"body":9,"breadcrumbs":4,"title":2},"28":{"body":15,"breadcrumbs":2,"title":0},"29":{"body":17,"breadcrumbs":2,"title":0},"3":{"body":35,"breadcrumbs":2,"title":1},"30":{"body":22,"breadcrumbs":2,"title":0},"31":{"body":62,"breadcrumbs":2,"title":0},"32":{"body":84,"breadcrumbs":4,"title":2},"33":{"body":38,"breadcrumbs":2,"title":1},"34":{"body":50,"breadcrumbs":2,"title":1},"35":{"body":24,"breadcrumbs":3,"title":2},"36":{"body":32,"breadcrumbs":3,"title":2},"37":{"body":87,"breadcrumbs":4,"title":3},"38":{"body":27,"breadcrumbs":3,"title":2},"39":{"body":8,"breadcrumbs":6,"title":3},"4":{"body":13,"breadcrumbs":2,"title":1},"40":{"body":17,"breadcrumbs":5,"title":2},"41":{"body":21,"breadcrumbs":6,"title":3},"42":{"body":66,"breadcrumbs":5,"title":2},"43":{"body":52,"breadcrumbs":2,"title":1},"44":{"body":8,"breadcrumbs":4,"title":3},"45":{"body":10,"breadcrumbs":3,"title":2},"46":{"body":22,"breadcrumbs":3,"title":2},"47":{"body":27,"breadcrumbs":4,"title":2},"48":{"body":36,"breadcrumbs":3,"title":1},"49":{"body":26,"breadcrumbs":3,"title":1},"5":{"body":19,"breadcrumbs":3,"title":2},"50":{"body":12,"breadcrumbs":3,"title":1},"51":{"body":13,"breadcrumbs":4,"title":2},"52":{"body":36,"breadcrumbs":4,"title":2},"53":{"body":8,"breadcrumbs":4,"title":2},"54":{"body":30,"breadcrumbs":5,"title":3},"55":{"body":15,"breadcrumbs":4,"title":2},"56":{"body":76,"breadcrumbs":5,"title":3},"57":{"body":50,"breadcrumbs":8,"title":6},"58":{"body":5,"breadcrumbs":6,"title":3},"59":{"body":9,"breadcrumbs":5,"title":2},"6":{"body":32,"breadcrumbs":3,"title":2},"60":{"body":29,"breadcrumbs":5,"title":2},"61":{"body":12,"breadcrumbs":5,"title":2},"62":{"body":35,"breadcrumbs":5,"title":2},"63":{"body":2,"breadcrumbs":4,"title":2},"64":{"body":0,"breadcrumbs":3,"title":2},"65":{"body":61,"breadcrumbs":2,"title":1},"66":{"body":2,"breadcrumbs":3,"title":2},"67":{"body":0,"breadcrumbs":3,"title":2},"68":{"body":766,"breadcrumbs":4,"title":2},"7":{"body":14,"breadcrumbs":4,"title":2},"8":{"body":17,"breadcrumbs":5,"title":3},"9":{"body":66,"breadcrumbs":4,"title":2}},"docs":{"0":{"body":"","breadcrumbs":"Overview » Overview","id":"0","title":"Overview"},"1":{"body":"Hascal is a general purpose and open source programming language designed to build optimal, maintainable, reliable, and efficient software. More features of Hascal : Easy to use and easy to learn Multi-paradigm Null safety by default Fast and powerful Inspired by Swift, Pascal Compiles to C++ Compatible with C\\C++\\Obj-C Builtin compile time FFI system Built-in HTTP Library","breadcrumbs":"Overview » Introduction","id":"1","title":"Introduction"},"10":{"body":"Let's review our simple program. Here's the first piece of the program: function main() : int { } These lines define a function that returns an integer number. The main function is the entry point of your program and it should always return int(an integer). If there were parameters, they would go inside the parentheses, (). Also, note that function statements should be in {} and you can write function codes inside {}. Inside the main function is the following code : print(\"Hello World!\") This code print the passed arguments, you can pass more parameters : print(\"Hello World!\",42,3.14) After the calling print command, there is the following statement : return 0 It returns 0 at the end of the function, every function that returns a value(declared with : after () in a function declaration) should return a value corresponding to the type. Returning the 0 value in main function tell the OS that your program has executed successfully.","breadcrumbs":"Hello World! » Reviewing the code","id":"10","title":"Reviewing the code"},"11":{"body":"Hascal has a builtin build system and project manager. This tool builds and runs your project, and installs dependencies.","breadcrumbs":"Project Manager » Project Manager","id":"11","title":"Project Manager"},"12":{"body":"Let's create a new project and compare it with the Hello World example in previous chapter. To create a project you should create a directory for your project : $ mkdir hello_world_2\n$ cd hello_world_2 Now we create a new project with following command : $ hascal init After running above command, you’ll see Hascal has generated two files and one directory for us: a config.json file, a .gitignore file and a src directory with a app.has file inside. config.json : { \"filename\": \"src/app.has\", \"outfile\": \"build/app\", } The filename field contains your main file that contains your entry function(main) and outfile field is output path of excutable file. src/app.has : function main():int{ print(\"Hello World!\") return 0\n} The generated Hascal file contains Hello World! program, you can edit it.","breadcrumbs":"Project Manager » Creating a new project","id":"12","title":"Creating a new project"},"13":{"body":"You can build the project with following command : $ hascal build Excutable file will generate in build directory and you can run it with following command : $ ./build/app","breadcrumbs":"Project Manager » Building a project","id":"13","title":"Building a project"},"14":{"body":"To run the project, you can use run command : $ hascal run\nHello World! That builds excutable file and runs it.","breadcrumbs":"Project Manager » Running a project","id":"14","title":"Running a project"},"15":{"body":"You can use config.json file to configure your Hascal compiler. The following configuration options are available: filename : your main file name, if you set it, you will no longer need to pass the file name to the compiler. compiler : your c++ compiler name(e.g : g++,clang++) optimize : optimize level(0,1,2,3)(default : no optimize, e.g: -O2) flags : custom flags(e.g:[\"-pthread\"]) c++_version : your c++ standard(e.g:c++17 or c++20), note: c++ version must be greater than or equal to c++17 and compiler must support c++17 compiler_output : if you want to see c++ compiler output, set this to true c++_out : if you want to see generated c++ code, set this to true, the generated c++ code are in your_filename.cc fil. only_compile if you want only to compile and not link program, set this to true. no_std : if it is true, the runtime library will not link with your code(you will not be able to use builtin functions).","breadcrumbs":"Configure the compiler » Configure the compiler","id":"15","title":"Configure the compiler"},"16":{"body":"TODO","breadcrumbs":"Write a guessing game » Write a guessing game","id":"16","title":"Write a guessing game"},"17":{"body":"Comments are used to document code and to explain what the code does, they are not executed. // This is a single line comment /*\nThis is a multi-line comment\nThis is a multi-line comment\n*/","breadcrumbs":"Comments » Comments","id":"17","title":"Comments"},"18":{"body":"The following types are primitive: bool // boolean value string // string literal int8 uint8 // 8-bit integer\nint16 uint16 // 16-bit integer\nint int32 uint32 // 32-bit integer\nint64 uint64 // 64-bit integer float // floating point double // double floating point","breadcrumbs":"Types » Primitive types","id":"18","title":"Primitive types"},"19":{"body":"A variable is a named storage for a value. Variables are declared using the var keyword : var foo : int = 1 Also you can declare a variable without type, in this case, the type will be inferred by the value assigned to it: var foo = 1","breadcrumbs":"Variables » Variables","id":"19","title":"Variables"},"2":{"body":"Standard Library Documentation available here .","breadcrumbs":"Overview » Standard Library Documentation","id":"2","title":"Standard Library Documentation"},"20":{"body":"Null safety is a feature that allows you to declare that a variable can be null or not null, and Hascal uses this feature to make sure that your code is safe. Hascal's variables and constants are non-nullable by default that means that they cannot be null(NULL) and you can't assign NULL to them and you should assign a value to them when you declare them . var foo : int = 1 // non-nullable\nvar foo_error : int // error : nullable variable must be assigned a value But you can make variables and constants nullable by adding ? to their type: var bar : int? = 1 // nullable so you can use NULL to set a variable to null : bar = NULL // ok","breadcrumbs":"Variables » Non nullable and nullable","id":"20","title":"Non nullable and nullable"},"21":{"body":"Pointers are a way to access the memory address of a variable. You can declare a pointer using the ^ operator after the type: var foo : int^? NOTE: pointers are non-nullable by default, use ? to make it nullable: You use cast to assign a value to a pointer: foo = (int^)1 Finally, you can use the ^ operator to access the value stored in a pointer: var foo : int^ = (int^)1\nprint(^foo) // 1 NOTE : We recommend you to always allocate pointers with new keyword and deallocate with delete keyword, for more information go to Memory management chapter . NOTE: Currently only one level of pointers are supported.","breadcrumbs":"Variables » Pointers","id":"21","title":"Pointers"},"22":{"body":"Static variables are variables that are declared outside of a function and are accessible from anywhere in the program. Static variables are declared using the static keyword before the type: var foo : static int = 1","breadcrumbs":"Variables » Static variables","id":"22","title":"Static variables"},"23":{"body":"Numbers are either integers or floating point numbers. You can declare a number using the following types: int8 uint8 // 8-bit integer\nint16 uint16 // 16-bit integer\nint int32 uint32 // 32-bit integer\nint64 uint64 // 64-bit integer float // floating point double // double floating point So you can use the following operators to perform arithmetic operations: + : addition - : subtraction * : multiplication / : division See the following example: var a : int = 123\nvar b : float = 1.23\nvar c : double = 1.2313213215648789798","breadcrumbs":"Variables » Numbers » Numbers","id":"23","title":"Numbers"},"24":{"body":"Strings are a sequence of characters. You can declare a string using the string keyword: var foo : string = \"Hello World\" You can use the + operator to concatenate strings: var foo : string = \"Hello\" + \" World\" And you can use the [] operator to access a character in a string: var foo : string = \"Hello\"\nprint(foo[1]) // 'e' Note: type of accessed character is char Note: the first character in a string is at index 0. With len function you can get the length of a string: var foo : string = \"Hello\"\nprint(len(foo)) // 5 Note: len function is a built-in function. Escape sequences You can use escape sequences to print special characters: var foo : string = \"Hello\\tWorld\"\nprint(foo) // Hello World The following escape sequences are supported: \\n : newline \\t : tab \\r : carriage return \\\\ : backslash \\' : single quote \\\" : double quote \\? : question mark \\a : bell \\b : backspace \\f : form feed \\v : vertical tab \\0 : null character \\x____ : hexadecimal character \\u____ : unicode character \\U____ : unicode character \\_____ : arbitrary octal value Note: _____ means you should specify the id of the character you want to print. Reverse a string You can reverse a string by using the string_reverse function in the strings package: use strings function main() { var foo : string = \"Hello World\" print(string_reverse(foo)) // dlroW olleH\n}","breadcrumbs":"Variables » Strings » Strings","id":"24","title":"Strings"},"25":{"body":"Arrays are collections of data elements of the same type. They can be represented by a list of elements surrounded by brackets. The elements can be accessed by appending an index (starting with 0) in brackets to the array variable: Arrays declare like following: var foo : [int] = [1,2,3]\nvar bar : [string] = [\"Hello\", \"World\"] You can use the [] operator to access an element in an array: var foo : [int] = [1,2,3]\nprint(foo[1]) // 2 And you can assign a value to an array element: var foo : [int] = [1,2,3]\nfoo[1] = 4\nprint(foo[1]) // 4 With append built-in function you can append an element to an array: var foo : [int] = [1,2,3]\nfoo.append(4)\nprint(foo[3]) // 4 And you can get the length of an array with the len built-in function: var foo : [int] = [1,2,3]\nprint(len(foo)) // 3","breadcrumbs":"Variables » Arrays » Arrays","id":"25","title":"Arrays"},"26":{"body":"Type compatibility is very close to automatic or implicit type conversion. The type compatibility is being able to use two types together without modification and being able to subsititute one for the other without modification. Compatible types are: int (and its subtypes like uint8,etc) and float. int(and its subtypes like uint8,etc) and double. float and double Note: strings are not compatible with characters.","breadcrumbs":"Variables » Type compatibility » Type compatibility","id":"26","title":"Type compatibility"},"27":{"body":"Conditional statements are used to execute a block of code if a condition is true or false.","breadcrumbs":"Conditional statements » Conditional statements","id":"27","title":"Conditional statements"},"28":{"body":"You can use the if keyword to execute a block of code, if a condition is true: var foo : int = 1\nif foo == 1 { print(\"foo is 1\")\n}","breadcrumbs":"Conditional statements » If","id":"28","title":"If"},"29":{"body":"You can use the else keyword to execute a block of code, if a condition is false: var foo : int = 1\nif foo == 1 { print(\"foo is 1\")\n} else { print(\"foo is not 1\")\n}","breadcrumbs":"Conditional statements » Else","id":"29","title":"Else"},"3":{"body":"We welcome contributions of all kinds. You can contribute to this book by opening an issue or forking and sending a pull request to the main Hascal repository. Knowing what people use this book for the most helps direct our attention to making those sections the best that they can be. We also want the reference to be as normative as possible, so if you see anything that is wrong, please also file an issue.","breadcrumbs":"Overview » Contributing","id":"3","title":"Contributing"},"30":{"body":"You can use the else if statement to execute a block of code, if else if a condition is true: var foo : int = 1\nif foo == 1 { print(\"foo is 1\")\n} else if foo == 2 { print(\"foo is 2\")\n} else { print(\"foo is not 1 or 2\")\n}","breadcrumbs":"Conditional statements » Else if","id":"30","title":"Else if"},"31":{"body":"You can use the and keyword to execute a block of code, if all conditions are true: var foo : int = 1\nvar bar : int = 2\nif foo == 1 and bar == 2 { print(\"foo is 1 and bar is 2\")\n} You can use the or keyword to execute a block of code, if at least one condition is true: var foo : int = 1\nvar bar : int = 2\nif foo == 1 or bar == 2 { print(\"foo is 1 or bar is 2\")\n} You can use the not keyword to execute a block of code, if a condition is false: var foo : int = 1\nif not foo == 1 { print(\"foo is not 1\")\n}","breadcrumbs":"Conditional statements » and and or and not","id":"31","title":"and and or and not"},"32":{"body":"Operator Description Example == Returns true if the operands are equal. var1 == var2 != Returns true if the operands are not equal. var1 != var2 > Returns true if the left operand is greater than the right operand. var1 > var2 >= Returns true if the left operand is greater than or equal to the right operand. var1 >= var2 < Returns true if the left operand is less than the right operand. var1 < var2 <= Returns true if the left operand is less than or equal to the right operand. var1 <= var2 and Returns true if the left operand and right operand are true var1 == 1 and var2 == 2 or Returns true if the left operand or right operand are true var1 == 1 or var2 == 2 not Returns true if the operand are false or if the operand is true returns false not true","breadcrumbs":"Conditional statements » Conditional Operators","id":"32","title":"Conditional Operators"},"33":{"body":"You can use the while keyword to execute a block of code, if a condition is true: var foo : int = 1\nwhile foo == 1 { print(\"foo is 1\") foo = 2\n} The for keyword is used to execute a block of code for a number of times: for i in range(0, 10) { print(i)\n} Also you can use the for keyword for iterating over an array: var foo : [int] = [1,2,3]\nfor i in foo { print(i)\n}","breadcrumbs":"Loops » Loops","id":"33","title":"Loops"},"34":{"body":"Functions are a way to group code that can be called to perform a specific task. You can declare a function using the function keyword: function foo() { print(\"Hello World\")\n} Also your function block should be outside of a function. Your function can have parameters and return a value. You can declare parameters and return type, like variable declarations: function add(x:int,y:int): int { return x + y\n} In the example above, x and y are parameters and their type(int) is your return type. Note: you can use ? to make a parameter nullable.","breadcrumbs":"Functions » Functions","id":"34","title":"Functions"},"35":{"body":"You can call a function by using the function name followed by parentheses: foo() If you want to pass some arguments to your function, you can use them in the parentheses(separate with ,): foo(1,2,3) Also you can assign the return value of a function to a variable: var foo : int = add(1,2)","breadcrumbs":"Functions » Calling a function","id":"35","title":"Calling a function"},"36":{"body":"You can overload functions by defining a new function and changing the number of parameters or the type of parameters or return type of function : function add(x:int,y:int,z:int): int { return x + y + z\n} // overloading function `add`\nfunction add(x:int,y:int){ print(x + y)\n} function main(): int { print(add(1,2)) print(add(1,2,3))\n}","breadcrumbs":"Functions » Function overloading","id":"36","title":"Function overloading"},"37":{"body":"To passing a function as parameter you should define a parameter in with Function type with following syntax : Function[,,...] For example : function foo(func: Function[float, int]int) : int{ } At above we defined a function with name foo that takes a function as its parameter and given function should has two parameters with types float and int(respectively) and it should returns int. Also we can call given function like other functions, change the foo function code to following code : function foo(func: Function[float, int]int){ print(func(1.0,2))\n} Now we define a function to pass to foo func and must have the properties specified in the foo function(two parameters with types int and float and int as return type): function bar(a:float, b:int) : int { print(\"Hello from bar function!\") return a + b\n} Now we can pass bar function to foo function as parameter : foo(bar) Output : Hello from bar function!\n3","breadcrumbs":"Functions » Passing function as parameter","id":"37","title":"Passing function as parameter"},"38":{"body":"Decorator is a way to add some properties to a function and it is used with @ character + decorator name before function declaration. List of available decorators in Hascal : | Decorator | Description | | :------------- | :----------: | | @static_function | Makes function static | | @extern | Externs function( like extern in C++ ) |","breadcrumbs":"Functions » Function decorators","id":"38","title":"Function decorators"},"39":{"body":"A module is a package of code that can be imported into another module to use its code.","breadcrumbs":"Importing & Creating modules » Importing & Creating modules","id":"39","title":"Importing & Creating modules"},"4":{"body":"Requirements : python>=3.7 gcc>=8(or any c++ compiler that supports c++17) libcurl,libssl,libcrypt git(to clone Hascal's source code)","breadcrumbs":"Installation » Installation","id":"4","title":"Installation"},"40":{"body":"You can use other modules by importing them. You can import a module by using the use keyword: use os function main() : int { system(\"start http://www.google.com\") return 0\n}","breadcrumbs":"Importing & Creating modules » Importing a module","id":"40","title":"Importing a module"},"41":{"body":"You can import multiple modules by using the use keyword and separating the module names with a comma: use os, math, conv For importing a submodule of a module, you can use the . operator: use crypto.sha256","breadcrumbs":"Importing & Creating modules » Importing multiple modules","id":"41","title":"Importing multiple modules"},"42":{"body":"For creating a module, you can create a file with the same name as the module and with the extension .has and put the module code inside it: add.has: function add(x:int, y:int) : int { return x + y\n} main.has: use add function main() : int { print(add(1,2)) return 0\n} Creating foldered modules Module files can be placed in a folder, for creating a foldered module you should first create the folder and then create the _.has file inside it. The _.has file is the main file of the module and compiler will look for it. You can also import submodules in _.has file. Note: Any submodule that is not imported in _.has file will be ignored. Note: Any submodule can have other submodules.","breadcrumbs":"Importing & Creating modules » Creating a module","id":"42","title":"Creating a module"},"43":{"body":"Structures are a way to group data together. You can declare a structure using the struct keyword: struct Color { var r : int var g : int var b : int var name = \"Anything...\" // optional\n} Note: Declaring a structure member without a type will make it optional. After declaring a structure, you can create an instance of it: var red = Color(255,0,0) For accessing the fields of a structure, you should use the . operator: var red = Color(255,0,0)\nprint(red.r)\nprint(red.g)\nprint(red.b)\nprint(red.name)","breadcrumbs":"Structures » Structures","id":"43","title":"Structures"},"44":{"body":"You can return a structure from a function: function foo() : Color { return Color(1,2,3)\n}","breadcrumbs":"Structures » Structures as return values","id":"44","title":"Structures as return values"},"45":{"body":"You can pass a structure as an argument to a function: function foo(c:Color) { print(c.r) print(c.g) print(c.b) print(c.name)\n}","breadcrumbs":"Structures » Structures as arguments","id":"45","title":"Structures as arguments"},"46":{"body":"You can inherit a structure from another structure with : operator after the structure name: struct RGB : Color { } And you can access the fields of the inherited structure: var foo : RGB = RGB(1,2,3)\nprint(foo.r,foo.g,foo.b) var bar = RGB(255,0,0,\"AColor\")","breadcrumbs":"Structures » Structure inheritance","id":"46","title":"Structure inheritance"},"47":{"body":"Memory management is a way to manage the memory of your program. Hascal use manual memory management because it is used in most performance-critical applications like games,OSes, embedded systems, etc. Hascal uses new and delete keywords to manage memory manually.","breadcrumbs":"Memory management » Memory management","id":"47","title":"Memory management"},"48":{"body":"For allocating memory, you should use the new keyword. Note that type of the allocated memory should be pointer or reference type and passed type to new keyword should be a var foo : int^ = new int(1) // allocating For easily declaring and allocating memory, use var = new () statement, like this: var foo = new int(1)","breadcrumbs":"Memory management » Allocation","id":"48","title":"Allocation"},"49":{"body":"For reallocating memory and assigning the new value to the pointer, use = new () statement, like this: var foo : int^ = new int(1) // allocate memory\nfoo = new int(2) // reallocate memory and assign new value","breadcrumbs":"Memory management » Reallocation","id":"49","title":"Reallocation"},"5":{"body":"You can use the hascal.sh script to automate the process of installing and adding hascal to PATH: git clone https://github.com/hascal/hascal.git\ncd hascal/\nchmod +x ./hascal.sh\nbash ./hascal.sh","breadcrumbs":"Installation » *Nix Users(recommended)","id":"5","title":"*Nix Users(recommended)"},"50":{"body":"For deallocating memory, you should use the delete keyword and pass the pointer to the memory that you want to deallocate: delete foo","breadcrumbs":"Memory management » Deallocation","id":"50","title":"Deallocation"},"51":{"body":"Like pointer types, you can access the allocated memory value with the ^ operator: var foo : int^ = new int(1)\nprint(^foo)","breadcrumbs":"Memory management » Accessing memory","id":"51","title":"Accessing memory"},"52":{"body":"Don't forget to use the delete keyword at end of scope and before the end of the program.. In future, we will add a feature to show warnings when you forget to use the delete keyword. You can't deallocate memory that you haven't allocated it without new keyword. You can allocate, not allocated pointers : var foo : int^?\nfoo = new int(1)","breadcrumbs":"Memory management » Critical notes","id":"52","title":"Critical notes"},"53":{"body":"Hascal is based on C++, so you can use C++ functions and classes in your program.","breadcrumbs":"Interfacing with C++ » Interfacing with C++","id":"53","title":"Interfacing with C++"},"54":{"body":"You can use inline c++ code in Hascal with cuse keyword : cuse '#include '\ncuse 'int main(){printf(\"%d\",1);return 0;}'\n// output : 1 Or you can use multiline c++ code, like following example: cuse \"\"\"\n#include int main(){ printf(\"%d\",1); return 0;\n}\n\"\"\"","breadcrumbs":"Interfacing with C++ » Inline C++ Code","id":"54","title":"Inline C++ Code"},"55":{"body":"For using C++ functions in your program, you should at first declare them with following syntax: function () : Example : function system(command:char^):int","breadcrumbs":"Interfacing with C++ » Externing functions","id":"55","title":"Externing functions"},"56":{"body":"Also Hascal can include C++ headers in your program. We need two files, one for headers and one for main part of the library. You should put #include,... in your_cpp_lib.hpp and main part of library in your_cpp_lib.cc. The specified files should exist in the same folder. See the example below: add.cc : void __hascal__cpp_print(int x){ printf(\"%d\",x);\n} add __hascal__ to your C++ functions, structs name. Hascal transpiles to C++ and it adds __hascal__ prefix to your C++ names. add.hpp : #include main.has : cuse add function cpp_print(x:int) function main() : int { cpp_print(12) return 0\n} Also you can put the C++ files in a folder and rename they to _.cc and _.hpp. Note that don't include local headers in *.hpp file.","breadcrumbs":"Interfacing with C++ » Include C++ headers","id":"56","title":"Include C++ headers"},"57":{"body":"You can access to Hascal's variable and types in inline C++ codes in Hascal by adding __hascal__ prefix to a name, for example: main.has: function add(a:int,b:int){ cuse \"\"\" std::cout << a + b; \"\"\"\n} you can return a value in inline C++ codes by returning a meaningless value with same type as return type of the function(it may be ridiculous, we are currently working to improve it): function add(a:int,b:int){ cuse \"\"\" return a + b; \"\"\" return 0 // return a value with same type as return type of the function\n}","breadcrumbs":"Interfacing with C++ » Accessing to values and types in inline C++ code","id":"57","title":"Accessing to values and types in inline C++ code"},"58":{"body":"To read Hascal's stdlib go to this link .","breadcrumbs":"Standard Library Documentation » Standard Library Documentation","id":"58","title":"Standard Library Documentation"},"59":{"body":"Hascal has a built-in package manager that allows you to install packages from the a git repository.","breadcrumbs":"Package Manager Documentation » Package Manager","id":"59","title":"Package Manager"},"6":{"body":"> git clone https://github.com/hascal/hascal.git\n> cd hascal\n> make deps-windows\n> make windows Now your Hascal compiler is ready to use in dist folder, you can add it to $PATH. NOTE : The latest version of Hascal should always be used. Old versions have bugs when running binary versions of Hascal.","breadcrumbs":"Installation » Windows Users","id":"6","title":"Windows Users"},"60":{"body":"To get and install a package, you can use the get command : hascal get is the url of the git repository is the name of the package(optional, recommended, default is the url) Note: If you don't specify the package name, you should import it like this : use github.com.foo.bar","breadcrumbs":"Package Manager Documentation » Installing a package","id":"60","title":"Installing a package"},"61":{"body":"To update a package, you can use the update command : hascal update ","breadcrumbs":"Package Manager Documentation » Updating a package","id":"61","title":"Updating a package"},"62":{"body":"To list all packages, you can use the list command : hascal list if you want to list all subpackages of a package, you can use the list command with name of the package : hascal list is the name of the package you want to list subpackages For example : $ hascal list crypto\nlist of all subpackages in crypto :\n- sha256","breadcrumbs":"Package Manager Documentation » Listing packages","id":"62","title":"Listing packages"},"63":{"body":"Vscode Extension","breadcrumbs":"IDE Integration » IDE Integration","id":"63","title":"IDE Integration"},"64":{"body":"","breadcrumbs":"Roadmap » Hascal's Roadmap","id":"64","title":"Hascal's Roadmap"},"65":{"body":"js backend lambdas : var mythread = thread(function(x:int,y:int){ print(x*y)\n}) generate html doc from a code classes class C : T { var foo : string var bar = 1 // constructor C(foo: string){ this.foo = foo } public f(x: string): string { return x } private f2(x: string): string { return x } // allocator __new__(foo: string): C { return new C(foo) } // deallocator __delete__(foo: string): C { delete this.foo delete this.bar }\n} generics #26 s rewrite compiler in hascal const correctness","breadcrumbs":"Roadmap » Language","id":"65","title":"Language"},"66":{"body":"thread library","breadcrumbs":"Roadmap » Standard Library","id":"66","title":"Standard Library"},"67":{"body":"","breadcrumbs":"Roadmap » Package Manager","id":"67","title":"Package Manager"},"68":{"body":"v1.4.2 New features Changes observe Hasca's coding style in libraries Bug fixes Removed v1.4.1 Bug fixes No errors when main doesn't return anything #67 (by @mehanalavimajd ) v1.4.0 New features add builtin range function function main(): int { // prints 1 to 10 for i in range(1,11){ print(i) } return 0\n} add asin, acos, asinh, acosh, exp, frexpr, ldexp, log, log10, fdim, sqrt, ceil, floor, NaN, max, min functions to math library, see documentation . Showing error for overloading function's return type. Changes Speedup parsing and compiling Bug fixes fix passing list to for in statement Removed v1.3.12 New features add support for multiline C-style comment add round function to math library Changes Hascal relicensed from MIT license to BSD-3-Clause license Bug fixes fix string subscripting bug fix empty list parsing bug fix random library bugs Removed v1.3.11 New features add uniform distribution based random number generator called uniform in random library Changes change static decorator name to static_function name rename times function to multiplies in functional library rename if_and, if_or, if_not functions to _and, _or, _not in functional library Bug fixes fix package manager bug Removed v1.3.10 New features show error for undeleted variables from heap Changes improve math,os library in functional library : change lessThanOrEqual to lessThanEqual, greaterThanOrEqual to greaterThanEqual improve error handler for conditions pytest based test runner(@mmdbalkhi) fix conflicting with C\\C++\\Obj-C in FFI features change static decorator name to static_function name Bug fixes fix math library bug fix import package bug with _.* name fix crypto.sha256 library bug Removed remove libtcc from stdlib v1.3.9x v1.3.9 New features add hascal list command to list all available packages add hascal init command to create a new project, that generates config.json, .gitignore and src/app.has files add hascal build command to build project add hascal run command to run project add string_reverse(str:string) function to strings module add assert function to runtime library add no_std compiler option add filename config option Changes change emitting std::string for strings to string(because in showing assertion errors, std::string is illusory). use sys.exit instead of exit in src/core/h_help.py(@mmdbalkhi) fix importing system bugs improve typeof builtin function Bug fixes fix assigning NULL to arrays and pointers bug, #36. fix check_g++ config option bugs fix not defined consts when importing packages fix random library bug fix browser library bug Removed remove windows,browser libraries v1.3.9-rc.2 Bug fixes fix a critical bug in importing system v1.3.9-rc.1 Changes upgrade importing system some changes in self hosted compiler(NOTE: self hosted compiler is not ready yet) Bug fixes fix import bug when importing one package in multiple files fix self hosted bugs v1.3.9-rc Changes Rewrite package manager Bug fixes fix http library bug fix cpp importing bug v1.3.9-beta New features passing functions as arguments function f(x: int): int { return x + 1\n} function g(func:Function[int]int): int { return func(1)\n} add static variables, See this example add only_compile config option Changes upgrade importing system Bug fixes fix pyinstaller build issue Removed v1.3.9-alpha.1 Changes add download,upload,post functions to http library https support for http library add windows library(that includes windows.h) add browser library to open urls in default browser(now only supports windows) Bug fixes fix linker flag import bug in cuse statement v1.3.8 New features non-nullable and nullable variables Changes change pointer unary from * to ^ improve importing system Bug fixes fix repetitious imports bug fix #29 bug(by @mmdbalkhi ) Removed remove token library v1.3.7 New features manual memory management with new and delete keyword functional programming paradigm speed up compilation time add typeof function now can print arrays and structures function decorators static and extern decorator multiple library import improve importing system improve stdlib architecture Bug fixes fix scoping bug fix conv library bug fix conditions bug Removed export library removed local use statement removed v1.3.6 New features more data types : int8,uint8,int16,uint16,int32,uint32,int64,uint64,double type compatibility multi line string pointers and references var x : *int = 20\nvar y : int = 10\nx = &y\nvar z = *x // type : int // Pointers fix incomplete types on struct defination\nstruct bar { var self : *bar\n} add sizeof function Bug fixes fix lexer bugs check if function returns a value at end of string else show error main function should returns int fix termcolor library bugs fix enum bugs Standart library add sdl2 wrapper add export library for exporting to C(see : haspy ) add crypto.sha256 for sha256 hashing Removed libcinfo library removed v1.3.5 Standard library Updated os : add compiler_name function to get the name of the compiler add arch function to get the architecture of the system add is_x86 function to check if the architecture is x86 add is_x64 function to check if the architecture is x64 add getenv function to get an environment variable Added add libcinfo library to get information about the libc add termcolor library to colorize the output assets/termcolor.png Bug fixes Fix incomplete type defination bug v1.3.4 New features compiler option : now can generate c++ code from hascal code with c++_code : 1 in config.json file use cuse keyword to include c++ files. Bug fixes Fix semantic analyser bugs Fix standard library bug v1.3.3 New features struct inheritance can use cuse statement on struct declaration Bug fixes Fix variable scope bug Fix variable declaration bug Fix semantic analyser bug v1.3.2 New features for in statement library manager flag option cuse statement Bug fixes Fix semantic analyser bugs Fix nested struct bug Removed for to and for downto statement removed v1.3.1 New features Basic Semantic Anaslyser Removed remove semicolon from syntax","breadcrumbs":"Change Log » Hascal's Changelog","id":"68","title":"Hascal's Changelog"},"7":{"body":"Now that you have successfully installed Hascal, let's write our first program with it. You will write a program that prints Hello World! on the terminal.","breadcrumbs":"Hello World! » Hello World!","id":"7","title":"Hello World!"},"8":{"body":"You can write your Hascal programs every where but, we suggest that you create a directory for your project. At first, create a directory in your home directory(or anywhere else): mkdir hello_world\ncd hello_wrold","breadcrumbs":"Hello World! » Creating a project directory","id":"8","title":"Creating a project directory"},"9":{"body":"Next make a new file and name it main.has. Hascal files should end with .has extension. Now open your code editor (If you are using vscode install hascal extension for better coding from this link ) and write the following code in main.has : function main() : int { print(\"Hello World!\") return 0\n} Save the file, and return to the terminal and enter the following command to build your program : hascal main.has Now run the generated excutable file : $ ./main\nHello World! On Windows you should use .\\main.exe instead of ./main : $ .\\main.exe\nHello World! Congratulations - you just wrote and executed your first Hascal program!","breadcrumbs":"Hello World! » Writing the code","id":"9","title":"Writing the code"}},"length":69,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{"df":11,"docs":{"10":{"tf":1.7320508075688772},"12":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0}}},"1":{",":{"2":{",":{"3":{"df":2,"docs":{"25":{"tf":2.23606797749979},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"2":{"3":{"1":{"3":{"2":{"1":{"3":{"2":{"1":{"5":{"6":{"4":{"8":{"7":{"8":{"9":{"7":{"9":{"8":{"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":{}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":2,"docs":{"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"2":{"3":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":13,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":2.0},"30":{"tf":2.0},"31":{"tf":3.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"54":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.7320508075688772}}},"2":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"6":{"df":1,"docs":{"65":{"tf":1.0}}},"9":{"df":1,"docs":{"68":{"tf":1.0}}},"df":5,"docs":{"25":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":2.449489742783178},"32":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"3":{"2":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"6":{"df":1,"docs":{"68":{"tf":1.0}}},"df":3,"docs":{"25":{"tf":1.0},"37":{"tf":1.0},"68":{"tf":1.0}}},"4":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"5":{"df":1,"docs":{"24":{"tf":1.0}}},"6":{"4":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"7":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"_":{".":{"c":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"42":{"tf":2.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"_":{"_":{"_":{"_":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"_":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"56":{"tf":1.4142135623730951},"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"_":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"68":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"43":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"d":{"d":{"(":{"1":{",":{"2":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"b":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"y":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"z":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"34":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}}},".":{"c":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":7,"docs":{"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.7320508075688772},"6":{"tf":1.0},"68":{"tf":5.477225575051661}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":4,"docs":{"20":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":6,"docs":{"21":{"tf":1.0},"48":{"tf":2.23606797749979},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"65":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":2,"docs":{"20":{"tf":1.0},"59":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{".":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"10":{"tf":1.0},"21":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"39":{"tf":1.0},"46":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"3":{"tf":1.0},"43":{"tf":1.0},"68":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"22":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":2.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"25":{"tf":2.8284271247461903},"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}},"h":{"df":1,"docs":{"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":7,"docs":{"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":1,"docs":{"5":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"15":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"(":{"a":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":2.449489742783178},"37":{"tf":1.7320508075688772},"46":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"h":{"df":1,"docs":{"5":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"26":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.0},"38":{"tf":1.0},"52":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"56":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"18":{"tf":2.0},"23":{"tf":2.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"18":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}},"s":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"(":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"6":{"tf":1.0},"68":{"tf":7.211102550927978}}},"i":{"df":0,"docs":{},"l":{"d":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"12":{"tf":1.0},"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":6,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"13":{"tf":2.0},"14":{"tf":1.0},"68":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"15":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}}}},"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"+":{"+":{"1":{"7":{"df":2,"docs":{"15":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"\\":{"c":{"+":{"+":{"\\":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"68":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}},"d":{"df":4,"docs":{"12":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}}},"df":12,"docs":{"1":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"23":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":2.449489742783178},"57":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"68":{"tf":2.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"68":{"tf":4.123105625617661}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"21":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"24":{"tf":3.1622776601683795},"26":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":1,"docs":{"68":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"y":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":20,"docs":{"10":{"tf":2.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"65":{"tf":1.0},"68":{"tf":1.7320508075688772},"9":{"tf":2.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"5":{",":{"0":{",":{"0":{"df":1,"docs":{"43":{"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":4,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"68":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"41":{"tf":1.0}},"n":{"d":{"df":9,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"68":{"tf":2.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":2.23606797749979},"68":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}},"t":{"df":3,"docs":{"1":{"tf":1.0},"26":{"tf":2.23606797749979},"68":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"15":{"tf":2.8284271247461903},"4":{"tf":1.0},"42":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"68":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.7320508075688772}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"65":{"tf":1.0},"68":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"41":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"68":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"12":{"tf":2.23606797749979},"39":{"tf":1.0},"42":{"tf":2.6457513110645907},"43":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"47":{"tf":1.0},"52":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":2,"docs":{"41":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"57":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"54":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"68":{"tf":2.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"25":{"tf":1.0},"43":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"21":{"tf":1.0},"50":{"tf":1.7320508075688772},"52":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":14,"docs":{"10":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.7320508075688772},"38":{"tf":1.0},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":2.23606797749979},"68":{"tf":2.0}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"10":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"21":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}},"p":{"df":1,"docs":{"6":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"8":{"tf":1.7320508075688772}}},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"o":{"c":{"df":1,"docs":{"65":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"17":{"tf":1.0},"2":{"tf":1.4142135623730951},"58":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"52":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"18":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"26":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":1,"docs":{"24":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}},"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":{"25":{"tf":2.449489742783178}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"n":{"d":{"df":4,"docs":{"10":{"tf":1.0},"52":{"tf":1.4142135623730951},"68":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"12":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"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":1,"docs":{"68":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"15":{"tf":1.0},"32":{"tf":2.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"68":{"tf":2.449489742783178}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":11,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"p":{"df":1,"docs":{"68":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"42":{"tf":1.0},"63":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.7320508075688772},"55":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"f":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"65":{"tf":1.0},"68":{"tf":1.0}}}},"2":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":1,"docs":{"24":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"20":{"tf":1.4142135623730951},"52":{"tf":1.0},"68":{"tf":3.872983346207417}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"43":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"15":{"tf":1.0}},"e":{"df":9,"docs":{"12":{"tf":2.6457513110645907},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.7320508075688772},"3":{"tf":1.0},"42":{"tf":2.6457513110645907},"56":{"tf":2.0},"68":{"tf":2.0},"9":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"10":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"x":{"df":1,"docs":{"68":{"tf":7.615773105863909}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"18":{"tf":1.7320508075688772},"23":{"tf":2.23606797749979},"26":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"42":{"tf":2.0},"56":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"o":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"c":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"4":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"[":{"1":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":22,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"24":{"tf":2.449489742783178},"25":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":2.449489742783178},"33":{"tf":2.23606797749979},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"44":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}}},"k":{"df":1,"docs":{"3":{"tf":1.0}}},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"(":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"37":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"68":{"tf":1.0}}},"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"[":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{",":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"2":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{",":{".":{".":{".":{"]":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":21,"docs":{"10":{"tf":3.1622776601683795},"12":{"tf":1.0},"15":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":2.23606797749979},"25":{"tf":1.4142135623730951},"34":{"tf":3.0},"35":{"tf":2.23606797749979},"36":{"tf":2.8284271247461903},"37":{"tf":4.123105625617661},"38":{"tf":2.23606797749979},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"68":{"tf":5.196152422706632},"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"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":{},"t":{"]":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"+":{"+":{",":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"16":{"tf":1.0}},"s":{",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"c":{">":{"=":{"8":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"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}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"1":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":5,"docs":{"5":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"o":{"df":3,"docs":{"10":{"tf":1.0},"21":{"tf":1.0},"58":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"15":{"tf":1.0},"32":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"34":{"tf":1.0},"43":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"c":{"a":{"'":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{},"l":{"'":{"df":6,"docs":{"20":{"tf":1.0},"4":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}}},"df":25,"docs":{"1":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":1.0},"68":{"tf":2.449489742783178},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":2.0}}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"2":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"24":{"tf":2.449489742783178},"25":{"tf":1.0},"37":{"tf":1.0},"7":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"p":{"df":1,"docs":{"3":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"10":{"tf":1.0}}},"df":1,"docs":{"2":{"tf":1.0}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":2.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":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"d":{"df":2,"docs":{"24":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"39":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"60":{"tf":1.0},"68":{"tf":3.7416573867739413}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"57":{"tf":1.0},"68":{"tf":2.449489742783178}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"54":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"21":{"tf":1.0},"68":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"68":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"10":{"tf":1.7320508075688772},"12":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"11":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"7":{"tf":1.0},"9":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"68":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"(":{"1":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}},"2":{"df":1,"docs":{"49":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"1":{"6":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"8":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"6":{"4":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"6":{"4":{",":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"]":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"^":{")":{"1":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":29,"docs":{"10":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":2.8284271247461903},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"18":{"tf":2.0},"23":{"tf":2.23606797749979}},"r":{"df":1,"docs":{"63":{"tf":1.0}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"_":{"df":0,"docs":{},"x":{"6":{"4":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":18,"docs":{"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"m":{"b":{"d":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}},"n":{"df":2,"docs":{"24":{"tf":1.4142135623730951},"25":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"32":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"t":{"'":{"df":3,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"0":{",":{"1":{",":{"2":{",":{"3":{")":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"21":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"i":{"b":{"c":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"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":7,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":5.656854249492381}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"c":{"c":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"17":{"tf":1.7320508075688772},"68":{"tf":1.0}}},"k":{"df":3,"docs":{"15":{"tf":1.4142135623730951},"58":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"25":{"tf":1.0},"38":{"tf":1.0},"62":{"tf":3.1622776601683795},"68":{"tf":2.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"56":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"1":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"68":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"42":{"tf":1.0}}},"p":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{")":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"(":{"\"":{"%":{"d":{"\"":{",":{"1":{")":{";":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"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":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"h":{"a":{"df":4,"docs":{"42":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"9":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":12,"docs":{"10":{"tf":2.0},"12":{"tf":1.0},"15":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"11":{"tf":1.4142135623730951},"21":{"tf":1.0},"47":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":2.0}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"24":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{",":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":2,"docs":{"41":{"tf":1.0},"68":{"tf":1.7320508075688772}}}},"x":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"20":{"tf":1.0},"24":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"j":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"21":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"d":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":5,"docs":{"39":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"41":{"tf":2.0},"42":{"tf":2.8284271247461903},"68":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"21":{"tf":1.0},"68":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"17":{"tf":1.4142135623730951},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"68":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.0},"41":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},">":{"(":{"<":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"15":{"tf":1.4142135623730951},"19":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":2.0},"68":{"tf":2.449489742783178},"9":{"tf":1.0}}}},"n":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":1,"docs":{"24":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"15":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"w":{"df":11,"docs":{"12":{"tf":1.7320508075688772},"21":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.23606797749979},"49":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":4.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"5":{"tf":1.0}}}},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"68":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"10":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.7320508075688772},"24":{"tf":2.0},"26":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0}}}},"w":{"df":6,"docs":{"12":{"tf":1.0},"37":{"tf":1.4142135623730951},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"20":{"tf":2.6457513110645907},"21":{"tf":1.4142135623730951},"34":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"20":{"tf":2.6457513110645907},"24":{"tf":1.0},"68":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"10":{"tf":1.0},"23":{"tf":2.0},"33":{"tf":1.0},"36":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"2":{"df":1,"docs":{"15":{"tf":1.0}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"tf":1.0}}},"l":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"n":{"df":6,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"32":{"tf":4.0}}},"df":0,"docs":{}}},"df":9,"docs":{"21":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"32":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"15":{"tf":1.7320508075688772}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"15":{"tf":1.0},"43":{"tf":1.4142135623730951},"68":{"tf":2.449489742783178}}}}}}},"s":{"df":4,"docs":{"10":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.0}}},"t":{"df":1,"docs":{"61":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"37":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"22":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"36":{"tf":1.7320508075688772},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"24":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":2.23606797749979},"61":{"tf":1.7320508075688772},"62":{"tf":2.6457513110645907},"67":{"tf":1.0},"68":{"tf":2.449489742783178}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.4142135623730951},"34":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":2.6457513110645907}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"10":{"tf":1.0},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"15":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":2.0},"45":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"12":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"23":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"18":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"21":{"tf":2.8284271247461903},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"68":{"tf":2.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":5,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"33":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"9":{"tf":1.0}}}}}}}},"^":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"21":{"tf":1.0},"51":{"tf":1.0}}}}}},"a":{"d":{"d":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"36":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{".":{"b":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":1,"docs":{"45":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"b":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"[":{"1":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"24":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"c":{"(":{"1":{".":{"0":{",":{"2":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"d":{".":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"x":{"*":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":1,"docs":{"36":{"tf":1.0}}}},"df":4,"docs":{"10":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"7":{"tf":1.0}},"f":{"(":{"\"":{"%":{"d":{"\"":{",":{"1":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":14,"docs":{"1":{"tf":1.0},"10":{"tf":2.0},"12":{"tf":1.0},"15":{"tf":1.0},"22":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":2.23606797749979},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.0},"38":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"42":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{"=":{"3":{".":{"7":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"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":{"24":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":2.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}},"e":{"(":{"0":{"df":1,"docs":{"33":{"tf":1.0}}},"1":{",":{"1":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{".":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"68":{"tf":1.0}}},"df":2,"docs":{"24":{"tf":1.0},"43":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"58":{"tf":1.0}},"i":{"df":2,"docs":{"6":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"49":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"21":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"3":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"68":{"tf":4.47213595499958}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"56":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"3":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":18,"docs":{"10":{"tf":2.6457513110645907},"12":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":3.1622776601683795},"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.6457513110645907},"65":{"tf":1.7320508075688772},"68":{"tf":2.6457513110645907},"9":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.0},"68":{"tf":1.0}}}}}}},"g":{"b":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"5":{",":{"0":{",":{"0":{",":{"\"":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":7,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":2.23606797749979},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"9":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"d":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"20":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"25":{"tf":1.0},"42":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"52":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"65":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"12":{"tf":1.0},"15":{"tf":1.4142135623730951},"23":{"tf":1.0},"3":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":2.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":2.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":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"24":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"15":{"tf":2.0},"20":{"tf":1.0}}}},"h":{"a":{"2":{"5":{"6":{"df":2,"docs":{"62":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"52":{"tf":1.0},"68":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"17":{"tf":1.0},"24":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"1":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"df":4,"docs":{"24":{"tf":1.0},"37":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"68":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"(":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"d":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":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":{"12":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{":":{"c":{"+":{"+":{"1":{"7":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"2":{"tf":1.4142135623730951},"58":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"30":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":2.6457513110645907}}}}}}},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"38":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"22":{"tf":2.23606797749979},"38":{"tf":1.0},"68":{"tf":2.0}}},"df":0,"docs":{}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"58":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":6,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":4.242640687119285},"25":{"tf":1.0},"26":{"tf":1.0},"65":{"tf":2.8284271247461903},"68":{"tf":2.23606797749979}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"43":{"tf":1.4142135623730951},"46":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":2.23606797749979}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"43":{"tf":2.449489742783178},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":2.23606797749979},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"42":{"tf":2.0}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"7":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"15":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.7320508075688772}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":3,"docs":{"37":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{":":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"^":{")":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":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":{"1":{"tf":1.0},"11":{"tf":1.0},"47":{"tf":1.0},"68":{"tf":2.6457513110645907}}}}}}}},"t":{"a":{"b":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"37":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":2,"docs":{"24":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"7":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"x":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"y":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"26":{"tf":1.0},"43":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":7,"docs":{"15":{"tf":2.0},"27":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":3.605551275463989},"33":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":4,"docs":{"12":{"tf":1.0},"26":{"tf":1.0},"37":{"tf":1.0},"56":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}},">":{"(":{"<":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"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":2.449489742783178},"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":2.0},"43":{"tf":1.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":2.449489742783178},"68":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}},"u":{"_":{"_":{"_":{"_":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"8":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":2.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"68":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"l":{"df":3,"docs":{"60":{"tf":2.0},"61":{"tf":1.0},"68":{"tf":1.0}}}},"s":{"df":42,"docs":{"1":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":2.449489742783178},"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.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"68":{"tf":2.0},"9":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"1":{".":{"3":{".":{"1":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"1":{"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"3":{"df":1,"docs":{"68":{"tf":1.0}}},"4":{"df":1,"docs":{"68":{"tf":1.0}}},"5":{"df":1,"docs":{"68":{"tf":1.0}}},"6":{"df":1,"docs":{"68":{"tf":1.0}}},"7":{"df":1,"docs":{"68":{"tf":1.0}}},"8":{"df":1,"docs":{"68":{"tf":1.0}}},"9":{"df":1,"docs":{"68":{"tf":2.449489742783178}},"x":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"1":{"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":14,"docs":{"10":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"57":{"tf":2.0},"68":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"1":{"df":1,"docs":{"32":{"tf":2.8284271247461903}}},"2":{"df":1,"docs":{"32":{"tf":2.8284271247461903}}},"df":21,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":2.449489742783178},"25":{"tf":2.449489742783178},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"43":{"tf":2.449489742783178},"46":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":2.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"19":{"tf":2.0},"20":{"tf":2.23606797749979},"21":{"tf":1.0},"22":{"tf":2.0},"25":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"24":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"63":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"15":{"tf":1.7320508075688772},"24":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}},"y":{"df":5,"docs":{"21":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"6":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"9":{"tf":1.0}},"s":{",":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"26":{"tf":1.4142135623730951},"43":{"tf":1.0},"52":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":1.0}}},"l":{"d":{"!":{"\"":{",":{"4":{"2":{",":{"3":{".":{"1":{"4":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"10":{"tf":1.0},"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"24":{"tf":2.0},"25":{"tf":1.0},"34":{"tf":1.0},"7":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"x":{"6":{"4":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":2.0}}},"y":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":4,"docs":{"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"42":{"tf":1.0},"68":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"c":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"c":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"’":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"z":{"df":2,"docs":{"36":{"tf":1.0},"68":{"tf":1.0}}}}},"breadcrumbs":{"root":{"0":{"df":11,"docs":{"10":{"tf":1.7320508075688772},"12":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0}}},"1":{",":{"2":{",":{"3":{"df":2,"docs":{"25":{"tf":2.23606797749979},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"2":{"3":{"1":{"3":{"2":{"1":{"3":{"2":{"1":{"5":{"6":{"4":{"8":{"7":{"8":{"9":{"7":{"9":{"8":{"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":{}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":2,"docs":{"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"2":{"3":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":13,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":2.0},"30":{"tf":2.0},"31":{"tf":3.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"54":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.7320508075688772}}},"2":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"6":{"df":1,"docs":{"65":{"tf":1.0}}},"9":{"df":1,"docs":{"68":{"tf":1.0}}},"df":5,"docs":{"25":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":2.449489742783178},"32":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"3":{"2":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"6":{"df":1,"docs":{"68":{"tf":1.0}}},"df":3,"docs":{"25":{"tf":1.0},"37":{"tf":1.0},"68":{"tf":1.0}}},"4":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"5":{"df":1,"docs":{"24":{"tf":1.0}}},"6":{"4":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"7":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"_":{".":{"c":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"42":{"tf":2.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"_":{"_":{"_":{"_":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"_":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"56":{"tf":1.4142135623730951},"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"_":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"68":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"43":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"d":{"d":{"(":{"1":{",":{"2":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"b":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"y":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"z":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"34":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}}},".":{"c":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":7,"docs":{"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.7320508075688772},"6":{"tf":1.0},"68":{"tf":5.477225575051661}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":4,"docs":{"20":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":6,"docs":{"21":{"tf":1.0},"48":{"tf":2.449489742783178},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"65":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":2,"docs":{"20":{"tf":1.0},"59":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{".":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"10":{"tf":1.0},"21":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"39":{"tf":1.0},"46":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"3":{"tf":1.0},"43":{"tf":1.0},"68":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"22":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"25":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":2.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"25":{"tf":3.1622776601683795},"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}},"h":{"df":1,"docs":{"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":7,"docs":{"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":1,"docs":{"5":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"15":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"(":{"a":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":2.449489742783178},"37":{"tf":1.7320508075688772},"46":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"h":{"df":1,"docs":{"5":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"26":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.0},"38":{"tf":1.0},"52":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"56":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"18":{"tf":2.0},"23":{"tf":2.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"18":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}},"s":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"(":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"6":{"tf":1.0},"68":{"tf":7.211102550927978}}},"i":{"df":0,"docs":{},"l":{"d":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"12":{"tf":1.0},"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":6,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"13":{"tf":2.23606797749979},"14":{"tf":1.0},"68":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"15":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}}}},"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"+":{"+":{"1":{"7":{"df":2,"docs":{"15":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"\\":{"c":{"+":{"+":{"\\":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"37":{"tf":1.0},"68":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}},"d":{"df":4,"docs":{"12":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}}},"df":12,"docs":{"1":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"23":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":2.23606797749979},"55":{"tf":1.4142135623730951},"56":{"tf":2.8284271247461903},"57":{"tf":2.23606797749979},"65":{"tf":1.7320508075688772},"68":{"tf":2.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"68":{"tf":4.242640687119285}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"21":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"24":{"tf":3.1622776601683795},"26":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":1,"docs":{"68":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"y":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":20,"docs":{"10":{"tf":2.23606797749979},"15":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":2.0},"57":{"tf":2.0},"65":{"tf":1.0},"68":{"tf":1.7320508075688772},"9":{"tf":2.23606797749979}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"5":{",":{"0":{",":{"0":{"df":1,"docs":{"43":{"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":4,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"68":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"41":{"tf":1.0}},"n":{"d":{"df":9,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"68":{"tf":2.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":2.6457513110645907},"68":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}},"t":{"df":3,"docs":{"1":{"tf":1.0},"26":{"tf":2.6457513110645907},"68":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"15":{"tf":3.1622776601683795},"4":{"tf":1.0},"42":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"27":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":2.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"68":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":2.23606797749979}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"65":{"tf":1.0},"68":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":2.0}}}}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"41":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"68":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"12":{"tf":2.449489742783178},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":3.0},"43":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":2.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"47":{"tf":1.0},"52":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":2,"docs":{"41":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"62":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"57":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"54":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"68":{"tf":2.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"25":{"tf":1.0},"43":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"21":{"tf":1.0},"50":{"tf":2.0},"52":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":14,"docs":{"10":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.7320508075688772},"38":{"tf":1.0},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"38":{"tf":2.449489742783178},"68":{"tf":2.0}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"10":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"21":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}},"p":{"df":1,"docs":{"6":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"38":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"8":{"tf":2.0}}},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"o":{"c":{"df":1,"docs":{"65":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"17":{"tf":1.0},"2":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"52":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"18":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"26":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":1,"docs":{"24":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}},"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":{"25":{"tf":2.449489742783178}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"n":{"d":{"df":4,"docs":{"10":{"tf":1.0},"52":{"tf":1.4142135623730951},"68":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"12":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"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":1,"docs":{"68":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"15":{"tf":1.0},"32":{"tf":2.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"68":{"tf":2.449489742783178}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":11,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"p":{"df":1,"docs":{"68":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"42":{"tf":1.0},"63":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}}},"f":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"65":{"tf":1.0},"68":{"tf":1.0}}}},"2":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":1,"docs":{"24":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"20":{"tf":1.4142135623730951},"52":{"tf":1.0},"68":{"tf":3.872983346207417}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"43":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"15":{"tf":1.0}},"e":{"df":9,"docs":{"12":{"tf":2.6457513110645907},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.7320508075688772},"3":{"tf":1.0},"42":{"tf":2.6457513110645907},"56":{"tf":2.0},"68":{"tf":2.0},"9":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"10":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"x":{"df":1,"docs":{"68":{"tf":7.615773105863909}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"18":{"tf":1.7320508075688772},"23":{"tf":2.23606797749979},"26":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"42":{"tf":2.0},"56":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"o":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"c":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"4":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"[":{"1":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":22,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"24":{"tf":2.449489742783178},"25":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":2.449489742783178},"33":{"tf":2.23606797749979},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"44":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}}},"k":{"df":1,"docs":{"3":{"tf":1.0}}},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"(":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"37":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"68":{"tf":1.0}}},"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"[":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{",":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"2":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{",":{".":{".":{".":{"]":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":21,"docs":{"10":{"tf":3.1622776601683795},"12":{"tf":1.0},"15":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":2.23606797749979},"25":{"tf":1.4142135623730951},"34":{"tf":3.3166247903554},"35":{"tf":2.6457513110645907},"36":{"tf":3.1622776601683795},"37":{"tf":4.358898943540674},"38":{"tf":2.6457513110645907},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":2.23606797749979},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"68":{"tf":5.196152422706632},"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"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":{},"t":{"]":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"+":{"+":{",":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"16":{"tf":1.7320508075688772}},"s":{",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"c":{">":{"=":{"8":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"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}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"1":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":5,"docs":{"5":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"o":{"df":3,"docs":{"10":{"tf":1.0},"21":{"tf":1.0},"58":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"15":{"tf":1.0},"32":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"34":{"tf":1.0},"43":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.7320508075688772}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"c":{"a":{"'":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{},"l":{"'":{"df":6,"docs":{"20":{"tf":1.0},"4":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}}},"df":25,"docs":{"1":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":1.0},"68":{"tf":2.449489742783178},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"2":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":9,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"24":{"tf":2.449489742783178},"25":{"tf":1.0},"37":{"tf":1.0},"7":{"tf":2.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"p":{"df":1,"docs":{"3":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"10":{"tf":1.0}}},"df":1,"docs":{"2":{"tf":1.0}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":2.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":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"d":{"df":2,"docs":{"24":{"tf":1.0},"63":{"tf":1.7320508075688772}}},"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"39":{"tf":2.0},"40":{"tf":2.23606797749979},"41":{"tf":2.23606797749979},"42":{"tf":1.7320508075688772},"60":{"tf":1.0},"68":{"tf":3.7416573867739413}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"57":{"tf":1.0},"68":{"tf":2.449489742783178}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"54":{"tf":1.4142135623730951},"56":{"tf":2.449489742783178},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"21":{"tf":1.0},"68":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":2.0},"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"68":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.7320508075688772},"57":{"tf":2.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"10":{"tf":1.7320508075688772},"12":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"11":{"tf":1.0},"4":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"7":{"tf":1.0},"9":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"68":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"(":{"1":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}},"2":{"df":1,"docs":{"49":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"1":{"6":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"8":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"6":{"4":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"6":{"4":{",":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"]":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"^":{")":{"1":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":29,"docs":{"10":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":2.8284271247461903},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"18":{"tf":2.0},"23":{"tf":2.23606797749979}},"r":{"df":1,"docs":{"63":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":5,"docs":{"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"_":{"df":0,"docs":{},"x":{"6":{"4":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":18,"docs":{"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"m":{"b":{"d":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}},"n":{"df":2,"docs":{"24":{"tf":1.4142135623730951},"25":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"32":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"t":{"'":{"df":3,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"0":{",":{"1":{",":{"2":{",":{"3":{")":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"21":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"i":{"b":{"c":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"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":7,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"68":{"tf":5.656854249492381}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"c":{"c":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"17":{"tf":1.7320508075688772},"68":{"tf":1.0}}},"k":{"df":3,"docs":{"15":{"tf":1.4142135623730951},"58":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"25":{"tf":1.0},"38":{"tf":1.0},"62":{"tf":3.3166247903554},"68":{"tf":2.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"56":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"1":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"42":{"tf":1.0}}},"p":{"df":1,"docs":{"33":{"tf":1.7320508075688772}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{")":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"(":{"\"":{"%":{"d":{"\"":{",":{"1":{")":{";":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"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":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}}},"h":{"a":{"df":4,"docs":{"42":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"9":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":12,"docs":{"10":{"tf":2.0},"12":{"tf":1.0},"15":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":17,"docs":{"11":{"tf":2.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"21":{"tf":1.0},"47":{"tf":2.6457513110645907},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.0}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"24":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{",":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":2,"docs":{"41":{"tf":1.0},"68":{"tf":1.7320508075688772}}}},"x":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"20":{"tf":1.0},"24":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"j":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"21":{"tf":1.4142135623730951},"47":{"tf":2.6457513110645907},"48":{"tf":2.0},"49":{"tf":2.0},"50":{"tf":1.7320508075688772},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"12":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"d":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":5,"docs":{"39":{"tf":2.23606797749979},"40":{"tf":2.23606797749979},"41":{"tf":2.449489742783178},"42":{"tf":3.1622776601683795},"68":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"21":{"tf":1.0},"68":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"17":{"tf":1.4142135623730951},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"68":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.0},"41":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},">":{"(":{"<":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"15":{"tf":1.4142135623730951},"19":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":2.0},"68":{"tf":2.449489742783178},"9":{"tf":1.0}}}},"n":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":1,"docs":{"24":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"15":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"w":{"df":11,"docs":{"12":{"tf":2.0},"21":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.23606797749979},"49":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":4.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":2.0},"21":{"tf":1.0},"68":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"10":{"tf":1.0},"15":{"tf":1.0},"21":{"tf":1.7320508075688772},"24":{"tf":2.0},"26":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0}}}},"w":{"df":6,"docs":{"12":{"tf":1.0},"37":{"tf":1.4142135623730951},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"20":{"tf":3.0},"21":{"tf":1.4142135623730951},"34":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"20":{"tf":2.6457513110645907},"24":{"tf":1.0},"68":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"10":{"tf":1.0},"23":{"tf":2.449489742783178},"33":{"tf":1.0},"36":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"2":{"df":1,"docs":{"15":{"tf":1.0}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"tf":1.0}}},"l":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"n":{"df":6,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"32":{"tf":4.0}}},"df":0,"docs":{}}},"df":9,"docs":{"21":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"32":{"tf":1.7320508075688772},"41":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"15":{"tf":1.7320508075688772}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"15":{"tf":1.0},"43":{"tf":1.4142135623730951},"68":{"tf":2.449489742783178}}}}}}},"s":{"df":4,"docs":{"10":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.0}}},"t":{"df":1,"docs":{"61":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"37":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"22":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"36":{"tf":2.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"24":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":2.23606797749979},"60":{"tf":2.6457513110645907},"61":{"tf":2.23606797749979},"62":{"tf":3.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.449489742783178}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.4142135623730951},"34":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":2.8284271247461903}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"10":{"tf":1.0},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"15":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":2.23606797749979},"45":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"12":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"23":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"18":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"21":{"tf":3.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"68":{"tf":2.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"12":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":5,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"33":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"9":{"tf":1.0}}}}}}}},"^":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"21":{"tf":1.0},"51":{"tf":1.0}}}}}},"a":{"d":{"d":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"36":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{".":{"b":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":1,"docs":{"45":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"b":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"[":{"1":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"24":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"c":{"(":{"1":{".":{"0":{",":{"2":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"33":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"d":{".":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"x":{"*":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":1,"docs":{"36":{"tf":1.0}}}},"df":4,"docs":{"10":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"7":{"tf":1.0}},"f":{"(":{"\"":{"%":{"d":{"\"":{",":{"1":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":14,"docs":{"1":{"tf":1.0},"10":{"tf":2.0},"12":{"tf":1.0},"15":{"tf":1.0},"22":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":2.23606797749979},"12":{"tf":2.6457513110645907},"13":{"tf":2.0},"14":{"tf":2.0},"68":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.0},"38":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"42":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{"=":{"3":{".":{"7":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"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":{"24":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":2.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}},"e":{"(":{"0":{"df":1,"docs":{"33":{"tf":1.0}}},"1":{",":{"1":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{".":{"1":{"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"68":{"tf":1.0}}},"df":2,"docs":{"24":{"tf":1.0},"43":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"58":{"tf":1.0}},"i":{"df":2,"docs":{"6":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"49":{"tf":2.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"21":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"3":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"68":{"tf":4.47213595499958}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"56":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"3":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":18,"docs":{"10":{"tf":2.6457513110645907},"12":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":3.1622776601683795},"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.6457513110645907},"65":{"tf":1.7320508075688772},"68":{"tf":2.6457513110645907},"9":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":1.7320508075688772}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.0},"68":{"tf":1.0}}}}}}},"g":{"b":{"(":{"1":{",":{"2":{",":{"3":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"5":{",":{"0":{",":{"0":{",":{"\"":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":7,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":2.449489742783178},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"9":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"d":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"15":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"20":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"25":{"tf":1.0},"42":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"52":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"65":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"12":{"tf":1.0},"15":{"tf":1.4142135623730951},"23":{"tf":1.0},"3":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":2.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":2.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":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"24":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"15":{"tf":2.0},"20":{"tf":1.0}}}},"h":{"a":{"2":{"5":{"6":{"df":2,"docs":{"62":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"52":{"tf":1.0},"68":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"17":{"tf":1.0},"24":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"1":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"df":4,"docs":{"24":{"tf":1.0},"37":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"68":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"(":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"d":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":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":{"12":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{":":{"c":{"+":{"+":{"1":{"7":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"2":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"10":{"tf":1.4142135623730951},"27":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":2.6457513110645907}}}}}}},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"38":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"22":{"tf":2.449489742783178},"38":{"tf":1.0},"68":{"tf":2.0}}},"df":0,"docs":{}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"58":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":6,"docs":{"18":{"tf":1.4142135623730951},"24":{"tf":4.47213595499958},"25":{"tf":1.0},"26":{"tf":1.0},"65":{"tf":2.8284271247461903},"68":{"tf":2.23606797749979}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"43":{"tf":1.4142135623730951},"46":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":2.23606797749979}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"43":{"tf":2.8284271247461903},"44":{"tf":2.0},"45":{"tf":2.0},"46":{"tf":2.6457513110645907},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"42":{"tf":2.0}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"10":{"tf":1.0},"7":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"15":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.7320508075688772}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":3,"docs":{"37":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{":":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"^":{")":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":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":{"1":{"tf":1.0},"11":{"tf":1.0},"47":{"tf":1.0},"68":{"tf":2.6457513110645907}}}}}}}},"t":{"a":{"b":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"37":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":2,"docs":{"24":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"7":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"x":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"y":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"33":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"26":{"tf":1.0},"43":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":7,"docs":{"15":{"tf":2.0},"27":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":3.605551275463989},"33":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":4,"docs":{"12":{"tf":1.0},"26":{"tf":1.0},"37":{"tf":1.0},"56":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}},">":{"(":{"<":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.0},"18":{"tf":2.0},"19":{"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":2.8284271247461903},"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":2.0},"43":{"tf":1.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":2.6457513110645907},"68":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}},"u":{"_":{"_":{"_":{"_":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"8":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":2,"docs":{"18":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":2.23606797749979},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"68":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"l":{"df":3,"docs":{"60":{"tf":2.0},"61":{"tf":1.0},"68":{"tf":1.0}}}},"s":{"df":42,"docs":{"1":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":2.449489742783178},"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.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"68":{"tf":2.0},"9":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"1":{".":{"3":{".":{"1":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"1":{"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"3":{"df":1,"docs":{"68":{"tf":1.0}}},"4":{"df":1,"docs":{"68":{"tf":1.0}}},"5":{"df":1,"docs":{"68":{"tf":1.0}}},"6":{"df":1,"docs":{"68":{"tf":1.0}}},"7":{"df":1,"docs":{"68":{"tf":1.0}}},"8":{"df":1,"docs":{"68":{"tf":1.0}}},"9":{"df":1,"docs":{"68":{"tf":2.449489742783178}},"x":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"1":{"df":1,"docs":{"68":{"tf":1.0}}},"2":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":14,"docs":{"10":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"57":{"tf":2.23606797749979},"68":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"1":{"df":1,"docs":{"32":{"tf":2.8284271247461903}}},"2":{"df":1,"docs":{"32":{"tf":2.8284271247461903}}},"df":21,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":2.449489742783178},"25":{"tf":2.449489742783178},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"43":{"tf":2.449489742783178},"46":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":2.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":12,"docs":{"19":{"tf":2.449489742783178},"20":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"22":{"tf":2.449489742783178},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"57":{"tf":1.0},"68":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"24":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"26":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"63":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"15":{"tf":1.7320508075688772},"24":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}},"y":{"df":5,"docs":{"21":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"6":{"tf":2.0},"68":{"tf":1.4142135623730951},"9":{"tf":1.0}},"s":{",":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"26":{"tf":1.4142135623730951},"43":{"tf":1.0},"52":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"57":{"tf":1.0}}},"l":{"d":{"!":{"\"":{",":{"4":{"2":{",":{"3":{".":{"1":{"4":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"24":{"tf":2.0},"25":{"tf":1.0},"34":{"tf":1.0},"7":{"tf":2.0},"8":{"tf":1.0},"9":{"tf":2.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":1.0},"16":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"x":{"6":{"4":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":2.0}}},"y":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":4,"docs":{"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"42":{"tf":1.0},"68":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"c":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"c":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"’":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"z":{"df":2,"docs":{"36":{"tf":1.0},"68":{"tf":1.0}}}}},"title":{"root":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"51":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":4,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"10":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"58":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"'":{"df":2,"docs":{"64":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"i":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"57":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"4":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"2":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"11":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"47":{"tf":1.0},"51":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"12":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"5":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"37":{"tf":1.0}}}}},"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":1,"docs":{"21":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"2":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"18":{"tf":1.0},"26":{"tf":1.0},"57":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"44":{"tf":1.0},"57":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"16":{"tf":1.0},"9":{"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
function main() : int {
}
main
function is the entry point of your program and it always should return int
(an integer), if there were parameters, they would go inside the parentheses, ()
.{}
and you write function codes inside {}
.main
function is the entry point of your program and it should always return int
(an integer). If there were parameters, they would go inside the parentheses, ()
.{}
and you can write function codes inside {}
.main
function is the following code :print("Hello World!")
print("Hello World!",42,3.14)
print
command is following statemetn :print
command, there is the following statement :return 0
0
at end of the function, every function that returns a value(declared with :
after ()
in function declaration) should return a value with mentioned type. 0
value in main function tell the OS that your program executed successfully.0
at the end of the function, every function that returns a value(declared with :
after ()
in a function declaration) should return a value corresponding to the type.0
value in main function tell the OS that your program has executed successfully.