diff --git a/css/general.css b/css/general.css
index 344b53eb7f..a6db6805a9 100644
--- a/css/general.css
+++ b/css/general.css
@@ -5,6 +5,7 @@
:root {
/* Browser default font-size is 16px, this way 1 rem = 10px */
font-size: 62.5%;
+ color-scheme: var(--color-scheme);
}
html {
diff --git a/css/print.css b/css/print.css
index 5e690f7559..27d05e9285 100644
--- a/css/print.css
+++ b/css/print.css
@@ -22,14 +22,6 @@
overflow-y: initial;
}
-code {
- background-color: #666666;
- border-radius: 5px;
-
- /* Force background to be printed in Chrome */
- -webkit-print-color-adjust: exact;
-}
-
pre > .buttons {
z-index: 2;
}
diff --git a/css/variables.css b/css/variables.css
index 21bf8e55e0..59fcda88f4 100644
--- a/css/variables.css
+++ b/css/variables.css
@@ -50,6 +50,8 @@
--searchresults-border-color: #888;
--searchresults-li-bg: #252932;
--search-mark-bg: #e3b171;
+
+ --color-scheme: dark;
}
.coal {
@@ -90,6 +92,8 @@
--searchresults-border-color: #98a3ad;
--searchresults-li-bg: #2b2b2f;
--search-mark-bg: #355c7d;
+
+ --color-scheme: dark;
}
.light {
@@ -130,6 +134,8 @@
--searchresults-border-color: #888;
--searchresults-li-bg: #e4f2fe;
--search-mark-bg: #a2cff5;
+
+ --color-scheme: light;
}
.navy {
@@ -170,6 +176,8 @@
--searchresults-border-color: #5c5c68;
--searchresults-li-bg: #242430;
--search-mark-bg: #a2cff5;
+
+ --color-scheme: dark;
}
.rust {
@@ -210,6 +218,8 @@
--searchresults-border-color: #888;
--searchresults-li-bg: #dec2a2;
--search-mark-bg: #e69f67;
+
+ --color-scheme: light;
}
@media (prefers-color-scheme: dark) {
diff --git a/print.html b/print.html
index eb9d38fa28..f255cca1e1 100644
--- a/print.html
+++ b/print.html
@@ -669,11 +669,12 @@
Miden assembly supports constant declarations. These constants are scoped to the module they are defined in and can be used as immediate parameters for Miden assembly instructions. Constants are supported as immediate values for the following instructions: push
, locaddr
, loc_load
, loc_loadw
, loc_store
, loc_storew
, mem_load
, mem_loadw
, mem_store
, mem_storew
.
-Constants must be declared right after module imports and before any procedures or program bodies. A constant's name must start with an upper-case letter and can contain any combination of numbers, upper-case ASCII letters, and underscores (_
). The number of characters in a constant name cannot exceed 100.
+Constants must be declared right after module imports and before any procedures or program bodies. A constant's name must start with an upper-case letter and can contain any combination of numbers, upper-case ASCII letters, and underscores (_
). The number of characters in a constant name cannot exceed 100.
+A constant's value must be in the range between 0 and 2 64 − 2 32 (both inclusive) and can be defined by an arithmetic expression using +
, -
, *
, /
, //
, (
, )
operators and references to the previously defined constants. Here /
is a field division and //
is an integer division. Note that the arithmetic expression cannot contain spaces.
use.std::math::u64
const.CONSTANT_1=100
-const.CONSTANT_2=200
+const.CONSTANT_2=200+(CONSTANT_1-50)
const.ADDR_1=3
begin
diff --git a/searchindex.js b/searchindex.js
index e11d4ee26f..aaa82cdb29 100644
--- a/searchindex.js
+++ b/searchindex.js
@@ -1 +1 @@
-Object.assign(window.search, {"doc_urls":["intro/main.html#introduction","intro/main.html#status-and-features","intro/main.html#feature-highlights","intro/main.html#planned-features","intro/main.html#structure-of-this-document","intro/main.html#license","intro/overview.html#miden-vm-overview","intro/overview.html#writing-programs","intro/overview.html#inputs-and-outputs","intro/overview.html#stack-depth-restrictions","intro/overview.html#nondeterministic-inputs","intro/usage.html#usage","intro/usage.html#cli-interface","intro/usage.html#compiling-miden-vm","intro/usage.html#controlling-parallelism","intro/usage.html#gpu-acceleration","intro/usage.html#running-miden-vm","intro/usage.html#inputs","intro/usage.html#fibonacci-example","intro/performance.html#performance","intro/performance.html#single-core-prover-performance","intro/performance.html#multi-core-prover-performance","tools/main.html#development-tools-and-resources","tools/debugger.html#miden-debugger","tools/repl.html#miden-repl","tools/repl.html#miden-assembly-instruction","tools/repl.html#help","tools/repl.html#program","tools/repl.html#stack","tools/repl.html#mem","tools/repl.html#memaddr","tools/repl.html#undo","user_docs/main.html#user-documentation","user_docs/assembly/main.html#miden-assembly","user_docs/assembly/main.html#terms-and-notations","user_docs/assembly/main.html#design-goals","user_docs/assembly/code_organization.html#code-organization","user_docs/assembly/code_organization.html#procedures","user_docs/assembly/code_organization.html#modules","user_docs/assembly/code_organization.html#constants","user_docs/assembly/code_organization.html#comments","user_docs/assembly/execution_contexts.html#execution-contexts","user_docs/assembly/execution_contexts.html#procedure-invocation-semantics","user_docs/assembly/execution_contexts.html#kernels","user_docs/assembly/execution_contexts.html#memory-layout","user_docs/assembly/execution_contexts.html#example","user_docs/assembly/flow_control.html#flow-control","user_docs/assembly/flow_control.html#conditional-execution","user_docs/assembly/flow_control.html#counter-controlled-loops","user_docs/assembly/flow_control.html#condition-controlled-loops","user_docs/assembly/field_operations.html#field-operations","user_docs/assembly/field_operations.html#assertions-and-tests","user_docs/assembly/field_operations.html#arithmetic-and-boolean-operations","user_docs/assembly/field_operations.html#comparison-operations","user_docs/assembly/field_operations.html#extension-field-operations","user_docs/assembly/u32_operations.html#u32-operations","user_docs/assembly/u32_operations.html#conversions-and-tests","user_docs/assembly/u32_operations.html#arithmetic-operations","user_docs/assembly/u32_operations.html#bitwise-operations","user_docs/assembly/u32_operations.html#comparison-operations","user_docs/assembly/stack_manipulation.html#stack-manipulation","user_docs/assembly/stack_manipulation.html#conditional-manipulation","user_docs/assembly/io_operations.html#input--output-operations","user_docs/assembly/io_operations.html#constant-inputs","user_docs/assembly/io_operations.html#environment-inputs","user_docs/assembly/io_operations.html#nondeterministic-inputs","user_docs/assembly/io_operations.html#random-access-memory","user_docs/assembly/cryptographic_operations.html#cryptographic-operations","user_docs/assembly/cryptographic_operations.html#hashing-and-merkle-trees","user_docs/stdlib/main.html#miden-standard-library","user_docs/stdlib/main.html#terms-and-notations","user_docs/stdlib/main.html#organization-and-usage","user_docs/stdlib/main.html#available-modules","user_docs/stdlib/collections.html#collections","user_docs/stdlib/collections.html#merkle-mountain-range","user_docs/stdlib/collections.html#sparse-merkle-tree-64","user_docs/stdlib/crypto/fri.html#fri-verification-procedures","user_docs/stdlib/crypto/fri.html#fri-extension-2-fold-4","user_docs/stdlib/crypto/hashes.html#cryptographic-hashes","user_docs/stdlib/crypto/hashes.html#blake3","user_docs/stdlib/crypto/hashes.html#sha256","user_docs/stdlib/math/u64.html#unsigned-64-bit-integer-operations","user_docs/stdlib/math/u64.html#arithmetic-operations","user_docs/stdlib/math/u64.html#comparison-operations","user_docs/stdlib/math/u64.html#bitwise-operations","user_docs/stdlib/mem.html#memory-procedures","user_docs/stdlib/sys.html#system-procedures","design/main.html#design","design/main.html#vm-components","design/main.html#vm-execution-trace","design/programs.html#programs-in-miden-vm","design/programs.html#code-blocks","design/programs.html#join-block","design/programs.html#split-block","design/programs.html#loop-block","design/programs.html#call-block","design/programs.html#syscall-block","design/programs.html#span-block","design/programs.html#program-example","design/programs.html#program-hash-computation","design/decoder/main.html#miden-vm-program-decoder","design/decoder/main.html#program-execution","design/decoder/main.html#decoder-structure","design/decoder/main.html#decoder-trace","design/decoder/main.html#program-block-hashing","design/decoder/main.html#control-flow-tables","design/decoder/main.html#control-flow-operation-semantics","design/decoder/main.html#program-decoding","design/decoder/main.html#join-block-decoding","design/decoder/main.html#split-block-decoding","design/decoder/main.html#loop-block-decoding","design/decoder/main.html#span-block-decoding","design/decoder/main.html#program-decoding-example","design/decoder/constraints.html#miden-vm-decoder-air-constraints","design/decoder/constraints.html#general-constraints","design/decoder/constraints.html#block-hash-computation-constraints","design/decoder/constraints.html#chiplets-bus-constraints","design/decoder/constraints.html#block-stack-table-constraints","design/decoder/constraints.html#block-hash-table-constraints","design/decoder/constraints.html#span-block","design/decoder/constraints.html#in-span-column-constraints","design/decoder/constraints.html#block-address-constraints","design/decoder/constraints.html#group-count-constraints","design/decoder/constraints.html#op-group-decoding-constraints","design/decoder/constraints.html#op-index-constraints","design/decoder/constraints.html#op-batch-flags-constraints","design/decoder/constraints.html#op-group-table-constraints","design/stack/main.html#operand-stack","design/stack/main.html#stack-representation","design/stack/main.html#overflow-table","design/stack/main.html#right-shift","design/stack/main.html#left-shift","design/stack/main.html#air-constraints","design/stack/main.html#stack-overflow-flag","design/stack/main.html#stack-depth-constraints","design/stack/main.html#overflow-table-constraints","design/stack/main.html#boundary-constraints","design/stack/op_constraints.html#stack-operation-constraints","design/stack/op_constraints.html#operation-flags","design/stack/op_constraints.html#no-stack-shift-operations","design/stack/op_constraints.html#left-stack-shift-operations","design/stack/op_constraints.html#right-stack-shift-operations","design/stack/op_constraints.html#u32-operations","design/stack/op_constraints.html#high-degree-operations","design/stack/op_constraints.html#very-high-degree-operations","design/stack/op_constraints.html#composite-flags","design/stack/op_constraints.html#shift-right-flag","design/stack/op_constraints.html#shift-left-flag","design/stack/op_constraints.html#control-flow-flag","design/stack/system_ops.html#system-operations","design/stack/system_ops.html#noop","design/stack/system_ops.html#assert","design/stack/system_ops.html#fmpadd","design/stack/system_ops.html#fmpupdate","design/stack/system_ops.html#clk","design/stack/field_ops.html#field-operations","design/stack/field_ops.html#add","design/stack/field_ops.html#neg","design/stack/field_ops.html#mul","design/stack/field_ops.html#inv","design/stack/field_ops.html#incr","design/stack/field_ops.html#not","design/stack/field_ops.html#and","design/stack/field_ops.html#or","design/stack/field_ops.html#eq","design/stack/field_ops.html#eqz","design/stack/field_ops.html#expacc","design/stack/field_ops.html#ext2mul","design/stack/u32_ops.html#u32-operations","design/stack/u32_ops.html#range-checks","design/stack/u32_ops.html#checking-element-validity","design/stack/u32_ops.html#u32split","design/stack/u32_ops.html#u32assert2","design/stack/u32_ops.html#u32add","design/stack/u32_ops.html#u32add3","design/stack/u32_ops.html#u32sub","design/stack/u32_ops.html#u32mul","design/stack/u32_ops.html#u32madd","design/stack/u32_ops.html#u32div","design/stack/u32_ops.html#u32and","design/stack/u32_ops.html#u32xor","design/stack/stack_ops.html#stack-manipulation","design/stack/stack_ops.html#pad","design/stack/stack_ops.html#drop","design/stack/stack_ops.html#dupn","design/stack/stack_ops.html#swap","design/stack/stack_ops.html#swapw","design/stack/stack_ops.html#swapw2","design/stack/stack_ops.html#swapw3","design/stack/stack_ops.html#swapdw","design/stack/stack_ops.html#movupn","design/stack/stack_ops.html#movdnn","design/stack/stack_ops.html#cswap","design/stack/stack_ops.html#cswapw","design/stack/io_ops.html#input--output-operations","design/stack/io_ops.html#push","design/stack/io_ops.html#sdepth","design/stack/io_ops.html#advpop","design/stack/io_ops.html#advpopw","design/stack/io_ops.html#memory-access-operations","design/stack/io_ops.html#mloadw","design/stack/io_ops.html#mload","design/stack/io_ops.html#mstorew","design/stack/io_ops.html#mstore","design/stack/io_ops.html#mstream","design/stack/crypto_ops.html#cryptographic-operations","design/stack/crypto_ops.html#hperm","design/stack/crypto_ops.html#mpverify","design/stack/crypto_ops.html#mrupdate","design/stack/crypto_ops.html#frie2f4","design/range.html#range-checker","design/range.html#8-bit-range-checks","design/range.html#a-better-construction","design/range.html#16-bit-range-checks","design/range.html#miden-approach","design/range.html#requirements","design/range.html#capabilities","design/range.html#execution-trace","design/range.html#execution-trace-constraints","design/range.html#communication-bus","design/chiplets/main.html#chiplets","design/chiplets/main.html#chiplets-module-trace","design/chiplets/main.html#chiplets-order","design/chiplets/main.html#additional-requirements-for-stacking-execution-traces","design/chiplets/main.html#operation-labels","design/chiplets/main.html#chiplets-module-constraints","design/chiplets/main.html#chiplet-constraints","design/chiplets/main.html#chiplet-selector-constraints","design/chiplets/main.html#chiplets-bus","design/chiplets/main.html#chiplets-bus-constraints","design/chiplets/main.html#chiplets-virtual-table","design/chiplets/main.html#chiplets-virtual-table-constraints","design/chiplets/hasher.html#hash-chiplet","design/chiplets/hasher.html#chiplet-trace","design/chiplets/hasher.html#instruction-flags","design/chiplets/hasher.html#computation-examples","design/chiplets/hasher.html#single-permutation","design/chiplets/hasher.html#simple-2-to-1-hash","design/chiplets/hasher.html#linear-hash-of-n-elements","design/chiplets/hasher.html#verify-merkle-path","design/chiplets/hasher.html#update-merkle-root","design/chiplets/hasher.html#air-constraints","design/chiplets/hasher.html#selector-columns-constraints","design/chiplets/hasher.html#node-index-constraints","design/chiplets/hasher.html#hasher-state-constraints","design/chiplets/hasher.html#multiset-check-constraints","design/chiplets/bitwise.html#bitwise-chiplet","design/chiplets/bitwise.html#example","design/chiplets/bitwise.html#constraints","design/chiplets/bitwise.html#selectors","design/chiplets/bitwise.html#input-decomposition","design/chiplets/bitwise.html#output-aggregation","design/chiplets/bitwise.html#chiplets-bus-constraints","design/chiplets/memory.html#memory-chiplet","design/chiplets/memory.html#alternative-designs","design/chiplets/memory.html#read-write-memory","design/chiplets/memory.html#non-contiguous-memory","design/chiplets/memory.html#context-separation","design/chiplets/memory.html#miden-approach","design/chiplets/memory.html#air-constraints","design/chiplets/kernel_rom.html#kernel-rom-chiplet","design/chiplets/kernel_rom.html#kernel-rom-trace","design/chiplets/kernel_rom.html#constraints","design/chiplets/kernel_rom.html#chiplets-bus-constraints","design/chiplets/kernel_rom.html#kernel-procedure-table-constraints","design/multiset.html#multiset-checks","design/multiset.html#running-product-columns","design/multiset.html#virtual-tables","design/multiset.html#computing-a-virtual-tables-trace-column","design/multiset.html#virtual-tables-in-miden-vm","design/multiset.html#communication-buses","design/multiset.html#implementation","design/multiset.html#communication-bus-constraints","design/multiset.html#communication-buses-in-miden-vm","background.html#background-material"],"index":{"documentStore":{"docInfo":{"0":{"body":34,"breadcrumbs":2,"title":1},"1":{"body":53,"breadcrumbs":3,"title":2},"10":{"body":115,"breadcrumbs":4,"title":2},"100":{"body":131,"breadcrumbs":7,"title":4},"101":{"body":209,"breadcrumbs":5,"title":2},"102":{"body":45,"breadcrumbs":5,"title":2},"103":{"body":183,"breadcrumbs":5,"title":2},"104":{"body":298,"breadcrumbs":6,"title":3},"105":{"body":516,"breadcrumbs":6,"title":3},"106":{"body":814,"breadcrumbs":7,"title":4},"107":{"body":91,"breadcrumbs":5,"title":2},"108":{"body":59,"breadcrumbs":6,"title":3},"109":{"body":54,"breadcrumbs":6,"title":3},"11":{"body":72,"breadcrumbs":3,"title":1},"110":{"body":227,"breadcrumbs":6,"title":3},"111":{"body":1070,"breadcrumbs":6,"title":3},"112":{"body":292,"breadcrumbs":6,"title":3},"113":{"body":302,"breadcrumbs":10,"title":5},"114":{"body":137,"breadcrumbs":7,"title":2},"115":{"body":144,"breadcrumbs":9,"title":4},"116":{"body":447,"breadcrumbs":8,"title":3},"117":{"body":306,"breadcrumbs":9,"title":4},"118":{"body":403,"breadcrumbs":9,"title":4},"119":{"body":26,"breadcrumbs":7,"title":2},"12":{"body":0,"breadcrumbs":4,"title":2},"120":{"body":135,"breadcrumbs":8,"title":3},"121":{"body":70,"breadcrumbs":8,"title":3},"122":{"body":184,"breadcrumbs":8,"title":3},"123":{"body":225,"breadcrumbs":9,"title":4},"124":{"body":132,"breadcrumbs":8,"title":3},"125":{"body":141,"breadcrumbs":9,"title":4},"126":{"body":349,"breadcrumbs":9,"title":4},"127":{"body":120,"breadcrumbs":5,"title":2},"128":{"body":80,"breadcrumbs":5,"title":2},"129":{"body":172,"breadcrumbs":5,"title":2},"13":{"body":62,"breadcrumbs":5,"title":3},"130":{"body":172,"breadcrumbs":5,"title":2},"131":{"body":114,"breadcrumbs":5,"title":2},"132":{"body":59,"breadcrumbs":5,"title":2},"133":{"body":58,"breadcrumbs":6,"title":3},"134":{"body":51,"breadcrumbs":6,"title":3},"135":{"body":132,"breadcrumbs":6,"title":3},"136":{"body":27,"breadcrumbs":5,"title":2},"137":{"body":181,"breadcrumbs":8,"title":3},"138":{"body":312,"breadcrumbs":7,"title":2},"139":{"body":216,"breadcrumbs":8,"title":3},"14":{"body":18,"breadcrumbs":4,"title":2},"140":{"body":129,"breadcrumbs":9,"title":4},"141":{"body":133,"breadcrumbs":9,"title":4},"142":{"body":167,"breadcrumbs":7,"title":2},"143":{"body":159,"breadcrumbs":8,"title":3},"144":{"body":113,"breadcrumbs":9,"title":4},"145":{"body":13,"breadcrumbs":7,"title":2},"146":{"body":41,"breadcrumbs":8,"title":3},"147":{"body":93,"breadcrumbs":8,"title":3},"148":{"body":37,"breadcrumbs":8,"title":3},"149":{"body":8,"breadcrumbs":7,"title":2},"15":{"body":48,"breadcrumbs":4,"title":2},"150":{"body":34,"breadcrumbs":6,"title":1},"151":{"body":33,"breadcrumbs":6,"title":1},"152":{"body":35,"breadcrumbs":6,"title":1},"153":{"body":31,"breadcrumbs":6,"title":1},"154":{"body":30,"breadcrumbs":6,"title":1},"155":{"body":14,"breadcrumbs":7,"title":2},"156":{"body":30,"breadcrumbs":6,"title":1},"157":{"body":28,"breadcrumbs":6,"title":1},"158":{"body":30,"breadcrumbs":6,"title":1},"159":{"body":34,"breadcrumbs":6,"title":1},"16":{"body":118,"breadcrumbs":5,"title":3},"160":{"body":28,"breadcrumbs":6,"title":1},"161":{"body":41,"breadcrumbs":5,"title":0},"162":{"body":46,"breadcrumbs":5,"title":0},"163":{"body":46,"breadcrumbs":5,"title":0},"164":{"body":56,"breadcrumbs":6,"title":1},"165":{"body":54,"breadcrumbs":6,"title":1},"166":{"body":85,"breadcrumbs":6,"title":1},"167":{"body":71,"breadcrumbs":6,"title":1},"168":{"body":17,"breadcrumbs":7,"title":2},"169":{"body":86,"breadcrumbs":7,"title":2},"17":{"body":151,"breadcrumbs":3,"title":1},"170":{"body":113,"breadcrumbs":8,"title":3},"171":{"body":95,"breadcrumbs":6,"title":1},"172":{"body":76,"breadcrumbs":6,"title":1},"173":{"body":83,"breadcrumbs":6,"title":1},"174":{"body":85,"breadcrumbs":6,"title":1},"175":{"body":83,"breadcrumbs":6,"title":1},"176":{"body":98,"breadcrumbs":6,"title":1},"177":{"body":114,"breadcrumbs":6,"title":1},"178":{"body":70,"breadcrumbs":6,"title":1},"179":{"body":74,"breadcrumbs":6,"title":1},"18":{"body":63,"breadcrumbs":4,"title":2},"180":{"body":77,"breadcrumbs":6,"title":1},"181":{"body":9,"breadcrumbs":7,"title":2},"182":{"body":28,"breadcrumbs":6,"title":1},"183":{"body":35,"breadcrumbs":6,"title":1},"184":{"body":62,"breadcrumbs":6,"title":1},"185":{"body":30,"breadcrumbs":6,"title":1},"186":{"body":33,"breadcrumbs":6,"title":1},"187":{"body":36,"breadcrumbs":6,"title":1},"188":{"body":36,"breadcrumbs":6,"title":1},"189":{"body":33,"breadcrumbs":6,"title":1},"19":{"body":124,"breadcrumbs":3,"title":1},"190":{"body":71,"breadcrumbs":6,"title":1},"191":{"body":70,"breadcrumbs":6,"title":1},"192":{"body":60,"breadcrumbs":6,"title":1},"193":{"body":62,"breadcrumbs":6,"title":1},"194":{"body":24,"breadcrumbs":9,"title":3},"195":{"body":34,"breadcrumbs":7,"title":1},"196":{"body":37,"breadcrumbs":7,"title":1},"197":{"body":38,"breadcrumbs":7,"title":1},"198":{"body":49,"breadcrumbs":7,"title":1},"199":{"body":73,"breadcrumbs":9,"title":3},"2":{"body":253,"breadcrumbs":3,"title":2},"20":{"body":207,"breadcrumbs":6,"title":4},"200":{"body":90,"breadcrumbs":7,"title":1},"201":{"body":95,"breadcrumbs":7,"title":1},"202":{"body":90,"breadcrumbs":7,"title":1},"203":{"body":102,"breadcrumbs":7,"title":1},"204":{"body":100,"breadcrumbs":7,"title":1},"205":{"body":54,"breadcrumbs":7,"title":2},"206":{"body":118,"breadcrumbs":6,"title":1},"207":{"body":169,"breadcrumbs":6,"title":1},"208":{"body":204,"breadcrumbs":6,"title":1},"209":{"body":281,"breadcrumbs":6,"title":1},"21":{"body":106,"breadcrumbs":6,"title":4},"210":{"body":64,"breadcrumbs":5,"title":2},"211":{"body":201,"breadcrumbs":7,"title":4},"212":{"body":183,"breadcrumbs":5,"title":2},"213":{"body":130,"breadcrumbs":7,"title":4},"214":{"body":7,"breadcrumbs":5,"title":2},"215":{"body":22,"breadcrumbs":4,"title":1},"216":{"body":31,"breadcrumbs":4,"title":1},"217":{"body":90,"breadcrumbs":5,"title":2},"218":{"body":49,"breadcrumbs":6,"title":3},"219":{"body":117,"breadcrumbs":5,"title":2},"22":{"body":59,"breadcrumbs":5,"title":3},"220":{"body":98,"breadcrumbs":3,"title":1},"221":{"body":121,"breadcrumbs":5,"title":3},"222":{"body":101,"breadcrumbs":4,"title":2},"223":{"body":137,"breadcrumbs":7,"title":5},"224":{"body":121,"breadcrumbs":4,"title":2},"225":{"body":0,"breadcrumbs":5,"title":3},"226":{"body":75,"breadcrumbs":4,"title":2},"227":{"body":116,"breadcrumbs":5,"title":3},"228":{"body":123,"breadcrumbs":4,"title":2},"229":{"body":52,"breadcrumbs":5,"title":3},"23":{"body":212,"breadcrumbs":5,"title":2},"230":{"body":65,"breadcrumbs":5,"title":3},"231":{"body":86,"breadcrumbs":6,"title":4},"232":{"body":313,"breadcrumbs":6,"title":2},"233":{"body":331,"breadcrumbs":6,"title":2},"234":{"body":266,"breadcrumbs":6,"title":2},"235":{"body":0,"breadcrumbs":6,"title":2},"236":{"body":73,"breadcrumbs":6,"title":2},"237":{"body":84,"breadcrumbs":8,"title":4},"238":{"body":143,"breadcrumbs":8,"title":4},"239":{"body":197,"breadcrumbs":7,"title":3},"24":{"body":55,"breadcrumbs":5,"title":2},"240":{"body":215,"breadcrumbs":7,"title":3},"241":{"body":30,"breadcrumbs":6,"title":2},"242":{"body":98,"breadcrumbs":7,"title":3},"243":{"body":148,"breadcrumbs":7,"title":3},"244":{"body":105,"breadcrumbs":7,"title":3},"245":{"body":559,"breadcrumbs":7,"title":3},"246":{"body":227,"breadcrumbs":6,"title":2},"247":{"body":180,"breadcrumbs":5,"title":1},"248":{"body":24,"breadcrumbs":5,"title":1},"249":{"body":24,"breadcrumbs":5,"title":1},"25":{"body":55,"breadcrumbs":6,"title":3},"250":{"body":117,"breadcrumbs":6,"title":2},"251":{"body":86,"breadcrumbs":6,"title":2},"252":{"body":114,"breadcrumbs":7,"title":3},"253":{"body":66,"breadcrumbs":6,"title":2},"254":{"body":155,"breadcrumbs":6,"title":2},"255":{"body":228,"breadcrumbs":7,"title":3},"256":{"body":147,"breadcrumbs":7,"title":3},"257":{"body":230,"breadcrumbs":6,"title":2},"258":{"body":418,"breadcrumbs":6,"title":2},"259":{"body":255,"breadcrumbs":6,"title":2},"26":{"body":8,"breadcrumbs":4,"title":1},"260":{"body":38,"breadcrumbs":8,"title":3},"261":{"body":54,"breadcrumbs":8,"title":3},"262":{"body":103,"breadcrumbs":6,"title":1},"263":{"body":85,"breadcrumbs":8,"title":3},"264":{"body":101,"breadcrumbs":9,"title":4},"265":{"body":123,"breadcrumbs":5,"title":2},"266":{"body":173,"breadcrumbs":6,"title":3},"267":{"body":105,"breadcrumbs":5,"title":2},"268":{"body":58,"breadcrumbs":8,"title":5},"269":{"body":41,"breadcrumbs":7,"title":4},"27":{"body":25,"breadcrumbs":4,"title":1},"270":{"body":81,"breadcrumbs":5,"title":2},"271":{"body":111,"breadcrumbs":4,"title":1},"272":{"body":105,"breadcrumbs":6,"title":3},"273":{"body":42,"breadcrumbs":7,"title":4},"274":{"body":117,"breadcrumbs":4,"title":2},"28":{"body":57,"breadcrumbs":4,"title":1},"29":{"body":48,"breadcrumbs":4,"title":1},"3":{"body":69,"breadcrumbs":3,"title":2},"30":{"body":24,"breadcrumbs":4,"title":1},"31":{"body":110,"breadcrumbs":4,"title":1},"32":{"body":57,"breadcrumbs":4,"title":2},"33":{"body":165,"breadcrumbs":6,"title":2},"34":{"body":79,"breadcrumbs":6,"title":2},"35":{"body":160,"breadcrumbs":6,"title":2},"36":{"body":53,"breadcrumbs":8,"title":2},"37":{"body":128,"breadcrumbs":7,"title":1},"38":{"body":225,"breadcrumbs":7,"title":1},"39":{"body":70,"breadcrumbs":7,"title":1},"4":{"body":78,"breadcrumbs":3,"title":2},"40":{"body":37,"breadcrumbs":7,"title":1},"41":{"body":96,"breadcrumbs":8,"title":2},"42":{"body":205,"breadcrumbs":9,"title":3},"43":{"body":90,"breadcrumbs":7,"title":1},"44":{"body":138,"breadcrumbs":8,"title":2},"45":{"body":274,"breadcrumbs":7,"title":1},"46":{"body":26,"breadcrumbs":8,"title":2},"47":{"body":69,"breadcrumbs":8,"title":2},"48":{"body":49,"breadcrumbs":9,"title":3},"49":{"body":93,"breadcrumbs":9,"title":3},"5":{"body":4,"breadcrumbs":2,"title":1},"50":{"body":53,"breadcrumbs":8,"title":2},"51":{"body":38,"breadcrumbs":8,"title":2},"52":{"body":118,"breadcrumbs":9,"title":3},"53":{"body":70,"breadcrumbs":8,"title":2},"54":{"body":75,"breadcrumbs":9,"title":3},"55":{"body":112,"breadcrumbs":8,"title":2},"56":{"body":50,"breadcrumbs":8,"title":2},"57":{"body":263,"breadcrumbs":8,"title":2},"58":{"body":221,"breadcrumbs":8,"title":2},"59":{"body":156,"breadcrumbs":8,"title":2},"6":{"body":148,"breadcrumbs":5,"title":3},"60":{"body":235,"breadcrumbs":8,"title":2},"61":{"body":56,"breadcrumbs":8,"title":2},"62":{"body":120,"breadcrumbs":10,"title":3},"63":{"body":68,"breadcrumbs":9,"title":2},"64":{"body":64,"breadcrumbs":9,"title":2},"65":{"body":391,"breadcrumbs":9,"title":2},"66":{"body":348,"breadcrumbs":10,"title":3},"67":{"body":13,"breadcrumbs":8,"title":2},"68":{"body":243,"breadcrumbs":9,"title":3},"69":{"body":59,"breadcrumbs":8,"title":3},"7":{"body":58,"breadcrumbs":4,"title":2},"70":{"body":79,"breadcrumbs":7,"title":2},"71":{"body":47,"breadcrumbs":7,"title":2},"72":{"body":100,"breadcrumbs":7,"title":2},"73":{"body":8,"breadcrumbs":7,"title":1},"74":{"body":148,"breadcrumbs":9,"title":3},"75":{"body":188,"breadcrumbs":10,"title":4},"76":{"body":7,"breadcrumbs":9,"title":3},"77":{"body":210,"breadcrumbs":11,"title":5},"78":{"body":9,"breadcrumbs":8,"title":2},"79":{"body":83,"breadcrumbs":7,"title":1},"8":{"body":150,"breadcrumbs":4,"title":2},"80":{"body":83,"breadcrumbs":7,"title":1},"81":{"body":125,"breadcrumbs":11,"title":5},"82":{"body":493,"breadcrumbs":8,"title":2},"83":{"body":595,"breadcrumbs":8,"title":2},"84":{"body":373,"breadcrumbs":8,"title":2},"85":{"body":124,"breadcrumbs":8,"title":2},"86":{"body":58,"breadcrumbs":8,"title":2},"87":{"body":187,"breadcrumbs":2,"title":1},"88":{"body":150,"breadcrumbs":3,"title":2},"89":{"body":103,"breadcrumbs":4,"title":3},"9":{"body":44,"breadcrumbs":5,"title":3},"90":{"body":48,"breadcrumbs":5,"title":3},"91":{"body":0,"breadcrumbs":4,"title":2},"92":{"body":27,"breadcrumbs":4,"title":2},"93":{"body":41,"breadcrumbs":4,"title":2},"94":{"body":67,"breadcrumbs":4,"title":2},"95":{"body":82,"breadcrumbs":4,"title":2},"96":{"body":85,"breadcrumbs":4,"title":2},"97":{"body":196,"breadcrumbs":4,"title":2},"98":{"body":200,"breadcrumbs":4,"title":2},"99":{"body":207,"breadcrumbs":5,"title":3}},"docs":{"0":{"body":"Miden VM is a zero-knowledge virtual machine written in Rust. For any program executed on Miden VM, a STARK-based proof of execution is automatically generated. This proof can then be used by anyone to verify that the program was executed correctly without the need for re-executing the program or even knowing the contents of the program.","breadcrumbs":"Introduction » Introduction","id":"0","title":"Introduction"},"1":{"body":"Miden VM is currently on release v0.7. In this release, most of the core features of the VM have been stabilized, and most of the STARK proof generation has been implemented. While we expect to keep making changes to the VM internals, the external interfaces should remain relatively stable, and we will do our best to minimize the amount of breaking changes going forward. At this point, Miden VM is good enough for experimentation, and even for real-world applications, but it is not yet ready for production use. The codebase has not been audited and contains known and unknown bugs and security flaws.","breadcrumbs":"Introduction » Status and features","id":"1","title":"Status and features"},"10":{"body":"The advice provider component is responsible for supplying nondeterministic inputs to the VM. These inputs only need to be known to the prover (i.e., they do not need to be shared with the verifier). The advice provider consists of three components: Advice stack which is a one-dimensional array of field elements. Being a stack, the VM can either push new elements onto the advice stack, or pop the elements from its top. Advice map which is a key-value map where keys are words and values are vectors of field elements. The VM can copy values from the advice map onto the advice stack as well as insert new values into the advice map (e.g., from a region of memory). Merkle store which contain structured data reducible to Merkle paths. Some examples of such structures are: Merkle tree, Sparse Merkle Tree, and a collection of Merkle paths. The VM can request Merkle paths from the Merkle store, as well as mutate it by updating or merging nodes contained in the store. The prover initializes the advice provider prior to executing a program, and from that point on the advice provider is manipulated solely by executing operations on the VM.","breadcrumbs":"Introduction » Overview » Nondeterministic inputs","id":"10","title":"Nondeterministic inputs"},"100":{"body":"Miden VM program decoder is responsible for ensuring that a program with a given MAST root is executed by the VM. As the VM executes a program, the decoder does the following: Decodes a sequence of field elements supplied by the prover into individual operation codes (or opcodes for short). Organizes the sequence of field elements into code blocks, and computes the hash of the program according to the methodology described here . At the end of program execution, the decoder outputs the computed program hash. This hash binds the sequence of opcodes executed by the VM to a program the prover claims to have executed. The verifier uses this hash during the STARK proof verification process to verify that the proof attests to a correct execution of a specific program (i.e., the prover didn't claim to execute program A while in fact executing a different program B). The sections below describe how Miden VM decoder works. Throughout these sections we make the following assumptions: An opcode requires 7 bits to represent. An immediate value requires one full field element to represent. A NOOP operation has a numeric value of 0, and thus, can be encoded as seven zeros. Executing a NOOP operation does not change the state of the VM, but it does advance operation counter, and may affect program hash.","breadcrumbs":"Design » Program decoder » Miden VM Program decoder","id":"100","title":"Miden VM Program decoder"},"101":{"body":"Miden VM programs consist of a set of code blocks organized into a binary tree. The leaves of the tree contain linear sequences of instructions, and control flow is defined by the internal nodes of the tree. Managing control flow in the VM is accomplished by executing control flow operations listed in the table below. Each of these operations require exactly one VM cycle to execute. Operation Description JOIN Initiates processing of a new Join block . SPLIT Initiates processing of a new Split block . LOOP Initiates processing of a new Loop block . REPEAT Initiates a new iteration of an executing loop. SPAN Initiates processing of a new Span block . RESPAN Initiates processing of a new operation batch within a span block. CALL Initiates processing of a new Call block . SYSCALL Initiates processing ofa new Syscall block . END Marks the end of a program block. HALT Marks the end of the entire program. Let's consider a simple program below: begin if.true else end\nend Block structure of this program is shown below. JOIN SPAN END SPLIT SPAN END SPAN END END\nEND Executing this program on the VM can result in one of two possible instruction sequences. First, if after operations in are executed the top of the stack is 1, the VM will execute the following: JOIN\nSPAN\n\nEND\nSPLIT\nSPAN\n\nEND\nEND\nEND\nHALT However, if after are executed, the top of the stack is 0, the VM will execute the following: JOIN\nSPAN\n\nEND\nSPLIT\nSPAN\n\nEND\nEND\nEND\nHALT The main task of the decoder is to output exactly the same program hash, regardless of which one of the two possible execution paths was taken. However, before we can describe how this is achieved, we need to give an overview of the overall decoder structure.","breadcrumbs":"Design » Program decoder » Program execution","id":"101","title":"Program execution"},"102":{"body":"The decoder is one of the more complex parts of the VM. It consists of the following components: Main execution trace consisting of 24 trace columns which contain the state of the decoder at a given cycle of a computation. Connection to the hash chiplet, which is used to offload hash computations from the decoder. 3 virtual tables (implemented via multi-set checks), which keep track of code blocks and operations executing on the VM.","breadcrumbs":"Design » Program decoder » Decoder structure","id":"102","title":"Decoder structure"},"103":{"body":"Decoder trace columns can be grouped into several logical sets of registers as illustrated below. decoder_trace.png These registers have the following meanings: Block address register a. This register contains address of the hasher for the current block (row index from the auxiliary hashing table). It also serves the role of unique block identifiers. This is convenient, because hasher addresses are guaranteed to be unique. Registers b0,...,b6, which encode opcodes for operation to be executed by the VM. Each of these registers can contain a single binary value (either 1 or 0). And together these values describe a single opcode. Hasher registers h0,...,h7. When control flow operations are executed, these registers are used to provide inputs for the current block's hash computation (e.g., for JOIN, SPLIT, LOOP, SPAN, CALL, SYSCALL operations) or to record the result of the hash computation (i.e., for END operation). However, when regular operations are executed, 2 of these registers are used to help with op group decoding, and the remaining 6 can be used to hold operation-specific helper variables. Register sp which contains a binary flag indicating whether the VM is currently executing instructions inside a span block. The flag is set to 1 when the VM executes non-control flow instructions, and is set to 0 otherwise. Register gc which keep track of the number of unprocessed operation groups in a given span block. Register ox which keeps track of a currently executing operation's index within its operation group. Operation batch flags c0,c1,c2 which indicate how many operation groups a given operation batch contains. These flags are set only for SPAN and RESPAN operations, and are set to 0's otherwise. Two additional registers (not shown) used primarily for constraint degree reduction.","breadcrumbs":"Design » Program decoder » Decoder trace","id":"103","title":"Decoder trace"},"104":{"body":"To compute hashes of program blocks, the decoder relies on the hash chiplet . Specifically, the decoder needs to perform two types of hashing operations: A simple 2-to-1 hash, where we provide a sequence of 8 field elements, and get back 4 field elements representing the result. Computing such a hash requires 8 rows in the hash chiplet. A sequential hash of n elements. Computing such a hash requires multiple absorption steps, and at each step 8 field elements are absorbed into the hasher. Thus, computing a sequential hash of n elements requires ⌈n/8⌉ rows in the hash chiplet. At the end, we also get 4 field elements representing the result. To make hashing requests to the hash chiplet and to read the results from it, we will need to divide out relevant values from the chiplets bus column bchip as described below. Simple 2-to-1 hash To initiate a 2-to-1 hash of 8 elements (v0,...,v7) we need to divide bchip by the following value: α0+α1⋅mbp+α2⋅r+i=0∑7(αi+8⋅vi) where: mbp is a label indicating beginning of a new permutation. Value of this label is computed based on hash chiplet selector flags according to the methodology described here . r is the address of the row at which the hashing begins. Some α values are skipped in the above (e.g., α3) because of the specifics of how auxiliary hasher table rows are reduced to field elements (described here ). For example, α3 is used as a coefficient for node index values during Merkle path computations in the hasher, and thus, is not relevant in this case. The α4 term is omitted when the number of items being hashed is a multiple of the rate width (8) because it is multiplied by 0 - the value of the first capacity register as determined by the hasher chiplet logic . To read the 4-element result (u0,...,u3), we need to divide bchip by the following value: α0+α1⋅mhout+α2⋅(r+7)+i=0∑3(αi+8⋅ui) where: mhout is a label indicating return of the hash value. Value of this label is computed based on hash chiplet selector flags according to the methodology described here . r is the address of the row at which the hashing began. Sequential hash To initiate a sequential hash of n elements (v0,...,vn−1), we need to divide bchip by the following value: α0+α1⋅mbp+α2⋅r+α4⋅n+i=0∑7(αi+8⋅vi) This also absorbs the first 8 elements of the sequence into the hasher state. Then, to absorb the next sequence of 8 elements (e.g., v8,...,v15), we need to divide bchip by the following value: α0+α1⋅mabp+α2⋅(r+7)+i=0∑7(αi+8⋅vi+8) Where mabp is a label indicating absorption of more elements into the hasher state. Value of this label is computed based on hash chiplet selector flags according to the methodology described here . We can keep absorbing elements into the hasher in the similar manner until all elements have been absorbed. Then, to read the result (e.g., u0,...,u3), we need to divide bchip by the following value: α0+α1⋅mhout+α2⋅(r+⌈n/8⌉⋅8−1)+i=0∑3(αi+8⋅ui) Thus, for example, if n=14, the result will of the hash will be available at hasher row r+15.","breadcrumbs":"Design » Program decoder » Program block hashing","id":"104","title":"Program block hashing"},"105":{"body":"In addition to the hash chiplet, control flow operations rely on 3 virtual tables: block stack table, block hash table, and op group table. These tables are virtual in that they don't require separate trace columns. Their state is described solely by running product columns: p1, p2, and p3. The tables are described in the following sections. Block stack table When the VM starts executing a new program block, it adds its block ID together with the ID of its parent block (and some additional info) to the block stack table. When a program block is fully executed, it is removed from the table. In this way, the table represents a stack of blocks which are currently executing on the VM. By the time program execution completes, block stack table must be empty. The table can be thought of as consisting of 3 columns as shown below: decoder_block_stack_table where: The first column (t0) contains the ID of the block. The second column (t1) contains the ID of the parent block. If the block has no parent (i.e., it is a root block of the program), parent ID is 0. The third column (t2) contains a binary value which is set to 1 is the block is a loop block, and to 0 otherwise. Running product column p1 is used to keep track of the state of the table. At any step of the computation, the current value of p1 defines which rows are present in the table. To reduce a row in the block stack table to a single value, we compute the following. row=α0+i=0∑3(αi+1⋅ti) Where α0,...,α3 are the random values provided by the verifier. Block hash table When the VM starts executing a new program block, it adds hashes of the block's children to the block hash table. And when the VM finishes executing a block, it removes its hash from the block hash table. Thus, by the time program execution completes, block hash table must be empty. The table can be thought of as consisting of 7 columns as shown below: block_hash_table where: The first column (t0) contains the ID of the block's parent. For program root, parent ID is 0. The next 4 columns (t1,...,t4) contain the hash of the block. The next column (t5) contains a binary value which is set to 1 if the block is the first child of a join block, and to 0 otherwise. The last column (t6) contains a binary value which is set to 1 if the block is a body of a loop, and to 0 otherwise. Running product column p2 is used to keep track of the state of the table. At any step of the computation, the current value of p2 defines which rows are present in the table. To reduce a row in the block hash table to a single value, we compute the following. row=α0+i=0∑6(αi+1⋅ti) Where α0,...,α7 are the random values provided by the verifier. Unlike other virtual tables, block hash table does not start out in an empty state. Specifically, it is initialized with a single row containing the hash of the program's root block. This needs to be done because the root block does not have a parent and, thus, otherwise it would never be added to the block hash table. Initialization of the block hash table is done by setting the initial value of p2 to the value of the row containing the hash of a program's root block. Op group table Op group table is used in decoding of span blocks, which are leaves in a program's MAST. As described here , a span block can contain one or more operation batches, each batch containing up to 8 operation groups. When the VM starts executing a new batch of operations, it adds all operation groups within a batch, except for the first one, to the op group table. Then, as the VM starts executing an operation group, it removes the group from the table. Thus, by the time all operation groups in a batch have been executed, the op group table must be empty. The table can be thought of as consisting of 3 columns as shown below: decoder_op_group_table The meaning of the columns is as follows: The first column (t0) contains operation batch ID. During the execution of the program, each operation batch is assigned a unique ID. The second column (t1) contains the position of the group in the span block (not just in the current batch). The position is 1-based and is counted from the end. Thus, for example, if a span block consists of a single batch with 4 groups, the position of the first group would be 4, the position of the second group would be 3 etc. (the reason for this is explained in this section). Note that the group with position 4 is not added to the table, because it is the first group in the batch, so the first row of the table will be for the group with position 3. The third column (t2) contains the actual values of operation groups (this could include up to 9 opcodes or a single immediate value). Permutation column p3 is used to keep track of the state of the table. At any step of the computation, the current value of p3 defines which rows are present in the table. To reduce a row in the op group table to a single value, we compute the following. row=α0+i=0∑2(αi+1⋅ti) Where α0,...,α3 are the random values provided by the verifier.","breadcrumbs":"Design » Program decoder » Control flow tables","id":"105","title":"Control flow tables"},"106":{"body":"In this section we describe high-level semantics of executing all control flow operations. The descriptions are not meant to be complete and omit some low-level details. However, they provide good intuition on how these operations work. JOIN operation Before a JOIN operation is executed by the VM, the prover populates h0,...,h7 registers with hashes of left and right children of the join program block as shown in the diagram below. decoder_join_operation In the above diagram, blk is the ID of the join block which is about to be executed. blk is also the address of the hasher row in the auxiliary hasher table. prnt is the ID of the block's parent. When the VM executes a JOIN operation, it does the following: Adds a tuple (blk, prnt, 0) to the block stack table. Adds tuples (blk, left_child_hash, 1, 0) and (blk, right_child_hash, 0, 0) to the block hash table. Initiates a 2-to-1 hash computation in the hash chiplet (as described here ) using blk as row address in the auxiliary hashing table and h0,...,h7 as input values. SPLIT operation Before a SPLIT operation is executed by the VM, the prover populates h0,...,h7 registers with hashes of true and false branches of the split program block as shown in the diagram below. decoder_split_operation In the above diagram, blk is the ID of the split block which is about to be executed. blk is also the address of the hasher row in the auxiliary hasher table. prnt is the ID of the block's parent. When the VM executes a SPLIT operation, it does the following: Adds a tuple (blk, prnt, 0) to the block stack table. Pops the stack and: a. If the popped value is 1, adds a tuple (blk, true_branch_hash, 0, 0) to the block hash table. b. If the popped value is 0, adds a tuple (blk, false_branch_hash, 0, 0) to the block hash table. c. If the popped value is neither 1 nor 0, the execution fails. Initiates a 2-to-1 hash computation in the hash chiplet (as described here ) using blk as row address in the auxiliary hashing table and h0,...,h7 as input values. LOOP operation Before a LOOP operation is executed by the VM, the prover populates h0,...,h3 registers with hash of the loop's body as shown in the diagram below. decoder_loop_operation In the above diagram, blk is the ID of the loop block which is about to be executed. blk is also the address of the hasher row in the auxiliary hasher table. prnt is the ID of the block's parent. When the VM executes a LOOP operation, it does the following: Pops the stack and: a. If the popped value is 1 adds a tuple (blk, prnt, 1) to the block stack table (the 1 indicates that the loop's body is expected to be executed). Then, adds a tuple (blk, loop_body_hash, 0, 1) to the block hash table. b. If the popped value is 0, adds (blk, prnt, 0) to the block stack table. In this case, nothing is added to the block hash table. c. If the popped value is neither 1 nor 0, the execution fails. Initiates a 2-to-1 hash computation in the hash chiplet (as described here ) using blk as row address in the auxiliary hashing table and h0,...,h3 as input values. SPAN operation Before a SPAN operation is executed by the VM, the prover populates h0,...,h7 registers with contents of the first operation batch of the span block as shown in the diagram below. The prover also sets the group count register gc to the total number of operation groups in the span block. decoder_span_block In the above diagram, blk is the ID of the span block which is about to be executed. blk is also the address of the hasher row in the auxiliary hasher table. prnt is the ID of the block's parent. g0_op0 is the first operation of the batch, and g_0' is the first operation group of the batch with the first operation removed. When the VM executes a SPAN operation, it does the following: Adds a tuple (blk, prnt, 0) to the block stack table. Adds groups of the operation batch, as specified by op batch flags (see here ) to the op group table. Initiates a sequential hash computation in the hash chiplet (as described here ) using blk as row address in the auxiliary hashing table and h0,...,h7 as input values. Sets the in_span register to 1. Decrements group_count register by 1. Sets the op_index register to 0. END operation Before an END operation is executed by the VM, the prover populates h0,...,h3 registers with the hash of the block which is about to end. The prover also sets values in h4 and h5 registers as follows: h4 is set to 1 if the block is a body of a loop block. We denote this value as f0. h5 is set to 1 if the block is a loop block. We denote this value as f1. decoder_end_operation In the above diagram, blk is the ID of the block which is about to finish executing. prnt is the ID of the block's parent. When the VM executes an END operation, it does the following: Removes a tuple (blk, prnt, f1) from the block stack table. Removes a tuple (prnt, current_block_hash, nxt, f0) from the block hash table, where nxt=0 if the next operation is either END or REPEAT, and 1 otherwise. Reads the hash result from the hash chiplet (as described here ) using blk + 7 as row address in the auxiliary hashing table. If h5=1 (i.e., we are exiting a loop block), pops the value off the top of the stack and verifies that the value is 0. Verifies that group_count register is set to 0. HALT operation Before a HALT operation is executed by the VM, the VM copies values in h0,...,h3 registers to the next row as illustrated in the diagram below: decoder_halt_operation In the above diagram, blk is the ID of the block which is about to finish executing. When the VM executes a HALT operation, it does the following: Verifies that block address register is set to 0. If we are not at the last row of the trace, verifies that the next operation is HALT. Copies values of h0,...,h3 registers to the next row. Populates all other decoder registers with 0's in the next row. REPEAT operation Before a REPEAT operation is executed by the VM, the VM copies values in registers h0,...,h4 to the next row as shown in the diagram below. decoder_repeat_operation In the above diagram, blk is the ID of the loop's body and prnt is the ID of the loop. When the VM executes a REPEAT operation, it does the following: Checks whether register h4 is set to 1. If it isn't (i.e., we are not in a loop), the execution fails. Pops the stack and if the popped value is 1, adds a tuple (prnt, loop_body_loop 0, 1) to the block hash table. If the popped value is not 1, the execution fails. The effect of the above is that the VM needs to execute the loop's body again to clear the block hash table. RESPAN operation Before a RESPAN operation is executed by the VM, the VM copies the ID of the current block blk and the number of remaining operation groups in the span to the next row, and sets the value of in_span column to 0. The prover also sets the value of h1 register for the next row to the ID of the current block's parent prnt as shown in the diagram below: decoder_respan_operation In the above diagram, g0_op0 is the first operation of the new operation batch, and g0' is the first operation group of the batch with g0_op0 operation removed. When the VM executes a RESPAN operation, it does the following: Increments block address by 8. Removes the tuple (blk, prnt, 0) from the block stack table. Adds the tuple (blk+8, prnt, 0) to the block stack table. Absorbs values in registers h0,...,h7 into the hasher state of the hash chiplet (as described here ). Sets the in_span register to 1. Adds groups of the operation batch, as specified by op batch flags (see here ) to the op group table using blk+8 as batch ID. The net result of the above is that we incremented the ID of the current block by 8 and added the next set of operation groups to the op group table.","breadcrumbs":"Design » Program decoder » Control flow operation semantics","id":"106","title":"Control flow operation semantics"},"107":{"body":"When decoding a program, we start at the root block of the program. We can compute the hash of the root block directly from hashes of its children. The prover provides hashes of the child blocks non-deterministically, and we use them to compute the program's hash (here we rely on the hash chiplet). We then verify the program hash via boundary constraints. Thus, if the prover provided valid hashes for the child blocks, we will get the expected program hash. Now, we need to verify that the VM executed the child blocks correctly. We do this recursively similar to what is described above: for each of the blocks, the prover provides hashes of its children non-deterministically and we verify that the hash has been computed correctly. We do this until we get to the leaf nodes (i.e., span blocks). Hashes of span blocks are computed sequentially from the instructions executed by the VM. The sections below illustrate how different types of code blocks are decoded by the VM.","breadcrumbs":"Design » Program decoder » Program decoding","id":"107","title":"Program decoding"},"108":{"body":"When decoding a join bock, the VM first executes a JOIN operation, then executes the first child block, followed by the second child block. Once the children of the join block are executed, the VM executes an END operation. This is illustrated in the diagram below. decoder_join_block_decoding As described previously, when the VM executes a JOIN operation, hashes of both children are added to the block hash table. These hashes are removed only when the END operations for the child blocks are executed. Thus, until both child blocks are executed, the block hash table is not cleared.","breadcrumbs":"Design » Program decoder » JOIN block decoding","id":"108","title":"JOIN block decoding"},"109":{"body":"When decoding a split block, the decoder pops an element off the top of the stack, and if the popped element is 1, executes the block corresponding to the true branch. If the popped element is 0, the decoder executes the block corresponding to the false branch. This is illustrated on the diagram below. decoder_split_block_decoding As described previously, when the VM executes a SPLIT operation, only the hash of the branch to be executed is added to the block hash table. Thus, until the child block corresponding to the required branch is executed, the block hash table is not cleared.","breadcrumbs":"Design » Program decoder » SPLIT block decoding","id":"109","title":"SPLIT block decoding"},"11":{"body":"Before you can use Miden VM, you'll need to make sure you have Rust installed . Miden VM v0.7 requires Rust version 1.67 or later. Miden VM consists of several crates, each of which exposes a small set of functionality. The most notable of these crates are: miden-processor , which can be used to execute Miden VM programs. miden-prover , which can be used to execute Miden VM programs and generate proofs of their execution. miden-verifier , which can be used to verify proofs of program execution generated by Miden VM prover. The above functionality is also exposed via the single miden-vm crate, which also provides a CLI interface for interacting with Miden VM.","breadcrumbs":"Introduction » Usage » Usage","id":"11","title":"Usage"},"110":{"body":"When decoding a loop bock, we need to consider two possible scenarios: When the top of the stack is 1, we need to enter the loop and execute loop body at least once. When the top of the stack is, 0 we need to skip the loop. In both cases, we need to pop an element off the top of the stack. Executing the loop If the top of the stack is 1, the VM executes a LOOP operation. This removes the top element from the stack and adds the hash of the loop's body to the block hash table. It also adds a row to the block stack table setting the is_loop value to 1. To clear the block hash table, the VM needs to execute the loop body (executing the END operation for the loop body block will remove the corresponding row from the block hash table). After loop body is executed, if the top of the stack is 1, the VM executes a REPEAT operation (executing REPEAT operation when the top of the stack is 0 will result in an error). This operation again adds the hash of the loop's body to the block hash table. Thus, the VM needs to execute the loop body again to clear the block hash table. This process is illustrated on the diagram below. decoder_loop_execution The above steps are repeated until the top of the stack becomes 0, at which point the VM executes the END operation. Since in the beginning we set is_loop column in the block stack table to 1, h6 column will be set to 1 when the END operation is executed. Thus, executing the END operation will also remove the top value from the stack. If the removed value is not 0, the operation will fail. Thus, the VM can exit the loop block only when the top of the stack is 0. Skipping the loop If the top of the stack is 0, the VM still executes the LOOP operation. But unlike in the case when we need to enter the loop, the VM sets is_loop flag to 0 in the block stack table, and does not add any rows to the block hash table. The last point means that the only possible operation to be executed after the LOOP operation is the END operation. This is illustrated in the diagram below. decoder_loop_skipping Moreover, since we've set the is_loop flag to 0, executing the END operation does not remove any items from the stack.","breadcrumbs":"Design » Program decoder » LOOP block decoding","id":"110","title":"LOOP block decoding"},"111":{"body":"As described here , a span block can contain one or more operation batches, each batch containing up to 8 operation groups. At the high level, decoding of a span block is done as follows: At the beginning of the block, we make a request to the hash chiplet which initiates the hasher, absorbs the first operation batch (8 field elements) into the hasher, and returns the row address of the hasher, which we use as the unique ID for the span block (see here ). We then add groups of the operation batch, as specified by op batch flags (but always skipping the first one) to the op group table. We then remove operation groups from the op group table in the FIFO order one by one, and decode them in the manner similar to the one described here . Once all operation groups in a batch have been decoded, we absorb the next batch into the hasher and repeat the process described above. Once all batches have been decoded, we return the hash of the span block from the hasher. Overall, three control flow operations are used when decoding a span block: SPAN operation is used to initialize a hasher and absorbs the first operation batch into it. RESPAN operation is used to absorb any additional batches in the span block. END operation is used to end the decoding of a span block and retrieve its hash from the hash chiplet. Operation group decoding As described here , an operation group is a sequence of operations which can be encoded into a single field element. For a field element of 64 bits, we can fit up to 9 operations into a group. We do this by concatenating binary representations of opcodes together with the first operation located in the least significant position. We can read opcodes from the group by simply subtracting them from the op group value and then dividing the result by 27. Once the value of the op group reaches 0, we know that all opcodes have been read. Graphically, this can be illustrated like so: decoder_operation_group_decoding Notice that despite their appearance, op bits is actually 7 separate registers, while op group is just a single register. We also need to make sure that at most 9 operations are executed as a part of a single group. For this purpose we use the op_index column. Values in this column start out at 0 for each operation group, and are incremented by 1 for each executed operation. To make sure that at most 9 operations can be executed in a group, the value of the op_index column is not allowed to exceed 8. Operation batch flags Operation batch flags are used to specify how many operation groups comprise in a given operation batch. For most batches, the number of groups will be equal to 8. However, for the last batch in a block (or for the first batch, if the block consists of only a single batch), the number of groups may be less than 8. Since processing of new batches starts only on SPAN and RESPAN operations, only for these operations the flags can be set to non-zero values. To simplify the constraint system, number of groups in a batch can be only one of the following values: 1, 2, 4, and 8. If number of groups in a batch does not match one of these values, the batch is simply padded with NOOP's (one NOOP per added group). Consider the diagram below. decoder_OPERATION_batch_flags In the above, the batch contains 3 operation groups. To bring the count up to 4, we consider the 4-th group (i.e., 0) to be a part of the batch. Since a numeric value for NOOP operation is 0, op group value of 0 can be interpreted as a single NOOP. Operation batch flags (denoted as c0,c1,c2), encode the number of groups and define how many groups are added to the op group table as follows: (1, 0, 0) - 8 groups. Groups in h1,...h7 are added to the op group table. (0, 1, 0) - 4 groups. Groups in h1,...h3 are added to the op group table (0, 0, 1) - 2 groups. Groups in h1 is added to the op group table. (0, 1, 1) - 1 group. Nothing is added to the op group table (0, 0, 0) - not a SPAN or RESPAN operation. Single-batch span The simplest example of a span block is a block with a single batch. This batch may contain up to 8 operation groups (e.g., g0,...,g7). Decoding of such a block is illustrated in the diagram below. decoder_single_batch_span Before the VM starts processing this span block, the prover populates registers h0,...,h7 with operation groups g0,...,g7. The prover also puts the total number of groups into the group count register gc. In this case, the total number of groups is 8. When the VM executes a SPAN operation, it does the following: Initiates hashing of elements g0,...,g7 using hash chiplet. The hasher address is used as the block ID blk, and it is inserted into addr register in the next row. Adds a tuple (blk, prnt, 0) to the block stack table. Sets the is_span register to 1 in the next row. Sets the op_index register to 0 in the next row. Decrements group_count register by 1. Sets op bits registers at the next step to the first operation of g0, and also copies g0 with the first operation removed (denoted as g0′) to the next row. Adds groups g1,...,g7 to the op group table. Thus, after the SPAN operation is executed, op group table looks as shown below. decoder_op_group_table_after_span_op Then, with every step the next operation is removed from g0, and by step 9, value of g0 is 0. Once this happens, the VM does the following: Decrements group_count register by 1. Sets op bits registers at the next step to the first operation of g1. Sets hasher register h0 to the value of g1 with the first operation removed (denoted as g1′). Removes row (blk, 7, g1) from the op group table. This row can be obtained by taking values from registers: addr, group_count, and h0′+i=0∑6(2i⋅bi′) for i∈[0,7), where h0′ and bi′ refer to values in the next row for the first hasher column and op_bits columns respectively. Note that we rely on the group_count column to construct the row to be removed from the op group table. Since group count is decremented from the total number of groups to 0, to remove groups from the op group table in correct order, we need to assign group position to groups in the op group table in the reverse order. For example, the first group to be removed should have position 7, the second group to be removed should have position 6 etc. Decoding of g1 is performed in the same manner as decoding of g0: with every subsequent step the next operation is removed from g1 until its value reaches 0, at which point, decoding of group g2 begins. The above steps are executed until value of group_count reaches 0. Once group_count reaches 0 and the last operation group g7 is executed, the VM executed the END operation. Semantics of the END operation are described here . Notice that by the time we get to the END operation, all rows are removed from the op group table. Multi-batch span A span block may contain an unlimited number of operation batches. As mentioned previously, to absorb a new batch into the hasher, the VM executes a RESPAN operation. The diagram below illustrates decoding of a span block consisting of two operation batches. decoder_multi_batch_span Decoding of such a block will look very similar to decoding of the single-span block described previously, but there also will be some differences. First, after the SPAN operation is executed, the op group table will look as follows: decoder_op_group_table_multi_span Notice that while the same groups (g1,...,g7) are added to the table, their positions now reflect the total number of groups in the span block. Second, executing a RESPAN operation increments hasher address by 8. This is done because absorbing additional 8 elements into the hasher state requires 8 more rows in the auxiliary hasher table. Incrementing value of addr register actually changes the ID of the span block (though, for a span block, it may be more appropriate to view values in this column as IDs of individual operation batches). This means that we also need to update the block stack table. Specifically, we need to remove row (blk, prnt, 0) from it, and replace it with row (blk + 8, prnt, 0). To perform this operation, the prover sets the value of h1 in the next row to prnt. Executing a RESPAN operation also adds groups g9,g10,g11 to the op group table, which now would look as follows: decoder_op_group_table_post_respan Then, the execution of the second batch proceeds in the manner similar to the first batch: we remove operations from the current op group, execute them, and when the value of the op group reaches 0, we start executing the next group in the batch. Thus, by the time we get to the END operation, the op group table should be empty. When executing the END operation, the hash of the span block will be read from hasher row at address addr + 7, which, in our example, will be equal to blk + 15. Handling immediate values Miden VM operations can carry immediate values. Currently, the only such operation is a PUSH operation. Since immediate values can be thought of as constants embedded into program code, we need to make sure that changing immediate values affects program hash. To achieve this, we treat immediate values in a manner similar to how we treat operation groups. Specifically, when computing hash of a span block, immediate values are absorbed into the hasher state in the same way as operation groups are. As mentioned previously, an immediate value is represented by a single field element, and thus, an immediate value takes place of a single operation group. The diagram below illustrates decoding of a span block with 9 operations one of which is a PUSH operation. decoder_decoding_span_block_with_push In the above, when the SPAN operation is executed, immediate value imm0 will be added to the op group table, which will look as follows: decoder_imm_vale_op_group_table Then, when the PUSH operation is executed, the VM will do the following: Decrement group_count by 1. Remove a row from the op group table equal to (addr, group_count, s0'), where s0′ is the value of the top of the stack at the next row (i.e., it is the value that is pushed onto the stack). Thus, after the PUSH operation is executed, the op group table is cleared, and group count decreases to 0 (which means that there are no more op groups to execute). Decoding of the rest of the op group proceeds as described in the previous sections.","breadcrumbs":"Design » Program decoder » SPAN block decoding","id":"111","title":"SPAN block decoding"},"112":{"body":"Let's run through an example of decoding a simple program shown previously: begin if.true else end\nend Translating this into code blocks with IDs assigned, we get the following: b0: JOIN b1: SPAN b1: END b2: SPLIT b3: SPAN b3: END b4: SPAN b4: END b2: END\nb0: END The root of the program is a join block b0. This block contains two children: a span bock b1 and a split block b2. In turn, the split block b2 contains two children: a span block b3 and a span block b4. When this program is executed on the VM, the following happens: Before the program starts executing, block hash table is initialized with a single row containing the hash of b0. Then, JOIN operation for b0 is executed. It adds hashes of b1 and b2 to the block hash table. It also adds an entry for b0 to the block stack table. States of both tables after this step are illustrated below. Then, span b1 is executed and a sequential hash of its operations is computed. Also, when SPAN operation for b1 is executed, an entry for b1 is added to the block stack table. At the end of b1 (when END is executed), entries for b1 are removed from both the block hash and block stack tables. Then, SPLIT operation for b2 is executed. It adds an entry for b2 to the block stack table. Also, depending on whether the top of the stack is 1 or 0, either hash of b3 or hash of b4 is added to the block hash table. Let's say the top of the stack is 1. Then, at this point, the block hash and block stack tables will look like in the second picture below. Then, span b3 is executed and a sequential hash of its instructions is computed. Also, when SPAN operation for b3 is executed, an entry for b3 is added to the block stack table. At the end of b3 (when END is executed), entries for b3 are removed from both the block hash and block stack tables. Then, END operation for b2 is executed. It removes the hash of b2 from the block hash table, and also removes the entry for b2 from the block stack table. The third picture below illustrates the states of block stack and block hash tables after this step. Then, END for b0 is executed, which removes entries for b0 from the block stack and block hash tables. At this point both tables are empty. Finally, a sequence of HALT operations is executed until the length of the trace reaches a power of two. States of block hash and block stack tables after step 2: decoder_state_block_hash_2 States of block hash and block stack tables after step 4: decoder_state_block_hash_4 States of block hash and block stack tables after step 6: decoder_state_block_hash_6","breadcrumbs":"Design » Program decoder » Program decoding example","id":"112","title":"Program decoding example"},"113":{"body":"In this section we describe AIR constraint for Miden VM program decoder. These constraints enforce that the execution trace generated by the prover when executing a particular program complies with the rules described in the previous section . To refer to decoder execution trace columns, we use the names shown on the diagram below (these are the same names as in the previous section). Additionally, we denote the register containing the value at the top of the stack as s0. air_decoder_columns We assume that the VM exposes a flag per operation which is set to 1 when the operation is executed, and to 0 otherwise. The notation for such flags is fopname. For example, when the VM executes a PUSH operation, flag fpush=1. All flags are mutually exclusive - i.e., when one flag is set to 1 all other flags are set to 0. The flags are computed based on values in op_bits columns. AIR constraints for the decoder involve operations listed in the table below. For each operation we also provide the degree of the corresponding flag and the effect that the operation has on the operand stack (however, in this section we do not cover the constraints needed to enforce the correct transition of the operand stack). Operation Flag Degree Effect on stack JOIN fjoin 5 Stack remains unchanged. SPLIT fsplit 5 Top stack element is dropped. LOOP floop 5 Top stack element is dropped. REPEAT frepeat 4 Top stack element is dropped. SPAN fspan 5 Stack remains unchanged. RESPAN frespan 4 Stack remains unchanged. CALL fcall 4 Top stack element is dropped. SYSCALL fsyscall 4 Top stack element is dropped. END fend 4 When exiting a loop block, top stack element is dropped; otherwise, the stack remains unchanged. HALT fhalt 4 Stack remains unchanged. PUSH fpush 4 An immediate value is pushed onto the stack. We also use the control flow flag fctrl exposed by the VM, which is set when any one of the above control flow operations is being executed. It has degree 3. As described previously , the general idea of the decoder is that the prove provides the program to the VM by populating some of cells in the trace non-deterministically. Values in these are then used to update virtual tables (represented via multiset checks) such as block hash table, block stack table etc. Transition constraints are used to enforce that the tables are updates correctly, and we also apply boundary constraints to enforce the correct initial and final states of these tables. One of these boundary constraints binds the execution trace to the hash of the program being executed. Thus, if the virtual tables were updated correctly and boundary constraints hold, we can be convinced that the prover executed the claimed program on the VM. In the sections below, we describe constraints according to their logical grouping. However, we start out with a set of general constraints which are applicable to multiple parts of the decoder.","breadcrumbs":"Design » Program decoder » Decoder constraints » Miden VM decoder AIR constraints","id":"113","title":"Miden VM decoder AIR constraints"},"114":{"body":"When SPLIT or LOOP operation is executed, the top of the operand stack must contain a binary value: (fsplit+floop)⋅(s02−s0)=0 | degree=7 When REPEAT operation is executed, the value at the top of the operand stack must be 1: frepeat⋅(1−s0)=0 | degree=5 Also, when REPEAT operation is executed, the value in h4 column (the is_loop_body flag), must be set to 1. This ensures that REPEAT operation can be executed only inside a loop: frepeat⋅(1−h4)=0 | degree=5 When RESPAN operation is executed, we need to make sure that the block ID is incremented by 8: frespan⋅(a′−a−8)=0 | degree=5 When END operation is executed and we are exiting a loop block (i.e., is_loop, value which is stored in h5, is 1), the value at the top of the operand stack must be 0: fend⋅h5⋅s0=0 | degree=6 Also, when END operation is executed and the next operation is REPEAT, values in h0,...,h4 (the hash of the current block and the is_loop_body flag) must be copied to the next row: fend⋅frepeat′⋅(hi′−hi)=0 for i∈[0,5) | degree=9 A HALT instruction can be followed only by another HALT instruction: fhalt⋅(1−fhalt′)=0 | degree=8 When a HALT operation is executed, block address column must be 0: fhalt⋅a=0 | degree=5 Values in op_bits columns must be binary (i.e., either 1 or 0): bi2−bi=0 for i∈[0,7) | degree=2 When the value in in_span column is set to 1, control flow operations cannot be executed on the VM, but when in_span flag is 0, only control flow operations can be executed on the VM: 1−sp−fctrl=0 | degree=3","breadcrumbs":"Design » Program decoder » Decoder constraints » General constraints","id":"114","title":"General constraints"},"115":{"body":"As described previously , when the VM starts executing a new block, it also initiates computation of the block's hash. There are two separate methodologies for computing block hashes. For join , split , and loop blocks, the hash is computed directly from the hashes of the block's children. The prover provides these child hashes non-deterministically by populating registers h0,...,h7. The hasher is initialized using the hash chiplet, and we use the address of the hasher as the block's ID. The result of the hash is available 7 rows down in the hasher table (i.e., at row with index equal to block ID plus 7). We read the result from the hasher table at the time the END operation is executed for a given block. For span blocks, the hash is computed by absorbing a linear sequence of instructions (organized into operation groups and batches) into the hasher and then returning the result. The prover provides operation batches non-deterministically by populating registers h0,...,h7. Similarly to other blocks, the hasher is initialized using the hash chiplet at the start of the block, and we use the address of the hasher as the ID of the first operation batch in the block. As we absorb additional operation batches into the hasher (by executing RESPAN operation), the batch address is incremented by 8. This moves the \"pointer\" into the hasher table 8 rows down with every new batch. We read the result from the hasher table at the time the END operation is executed for a given block.","breadcrumbs":"Design » Program decoder » Decoder constraints » Block hash computation constraints","id":"115","title":"Block hash computation constraints"},"116":{"body":"The decoder communicates with the hash chiplet via the chiplets bus . This works by dividing values of the multiset check column bchip by the values of operations providing inputs to or reading outputs from the hash chiplet. A constraint to enforce this would look as bchip′⋅u=bchip, where u is the value which defines the operation. In constructing value of u for decoder AIR constraints, we will use the following labels (see here for an explanation of how values for these labels are computed): mbp this label specifies that we are starting a new hash computation. mabp this label specifies that we are absorbing the next sequence of 8 elements into an ongoing hash computation. mhout this label specifies that we are reading the result of a hash computation. To simplify constraint description, we define the following variables: hinit=α0+α1⋅mbp+α2⋅a′+i=0∑7(αi+8⋅hi) In the above, hinit can be thought of as initiating a hasher with address a′ and absorbing 8 elements from the hasher state (h0,...,h7) into it. Control blocks are always padded to fill the hasher rate and as such the α4 (first capacity register) term is set to 0. habp=α0+α1⋅mabp+α2⋅a′+i=0∑7(αi+8⋅hi) It should be noted that a refers to a column in the decoder, as depicted. The addresses in this column are set using the address from the hasher chiplet for the corresponding hash initialization / absorption / return. In the case of habp the value of the address in column a in the current row of the decoder is set to equal the value of the address of the row in the hasher chiplet where the previous absorption (or initialization) occurred. a′ is the address of the next row of the decoder, which is set to equal the address in the hasher chiplet where the absorption referred to by the habp label is happening. hres=α0+α1⋅mhout+α2⋅(a+7)+i=0∑3(αi+8⋅hi) In the above, a represents the address value in the decoder which corresponds to the hasher chiplet address at which the hasher was initialized (or the last absorption took place). As such, a+7 corresponds to the hasher chiplet address at which the result is returned. fctrli=fjoin+fsplit+floop+fcall | degree=5 In the above, fctrli is set to 1 when a control flow operation that signifies the initialization of a control block is being executed on the VM. Otherwise, it is set to 0. An exception is made for the SYSCALL operation. Although it also signifies the initialization of a control block, it must additionally send a procedure access request to the kernel ROM chiplet via the chiplets bus. Therefore, it is excluded from this flag and its communication with the chiplets bus is handled separately. d=b=0∑6(bi⋅2i) In the above, d represents the opcode value of the opcode being executed on the virtual machine. It is calculated via a bitwise combination of the op bits. We leverage the opcode value to achieve domain separation when hashing control blocks. This is done by populating the second capacity register of the hasher with the value d via the α5 term when initializing the hasher. Using the above variables, we define operation values as described below. When a control block initializer operation (JOIN, SPLIT, LOOP, CALL, SYSCALL) is executed, a new hasher is initialized and the contents of h0,...,h7 are absorbed into the hasher. As mentioned above, the opcode value d is populated in the second capacity resister via the α5 term. uctrli=fctrli⋅(hinit+α5⋅d) | degree=6 As mentioned previously, the value sent by the SYSCALL operation is defined separately, since in addition to communicating with the hash chiplet it must also send a kernel procedure access request to the kernel ROM chiplet. This value of this kernel procedure request is described by kproc. kproc=α6+α7⋅opkrom+i=0∑3(αi+8⋅hi) In the above, opkrom is the unique operation label of the kernel procedure call operation. The values h0,h1,h2,h3 contain the root hash of the procedure being called, which is the procedure that must be requested from the kernel ROM chiplet. usyscall=fsyscall⋅(hinit+α5⋅d)⋅kproc | degree=7 The above value sends both the hash initialization request and the kernel procedure access request to the chiplets bus when the SYSCALL operation is executed. When SPAN operation is executed, a new hasher is initialized and contents of h0,...,h7 are absorbed into the hasher. The number of operation groups to be hashed is padded to a multiple of the rate width (8) and so the α4 is set to 0: uspan=fspan⋅hinit | degree=6 When RESPAN operation is executed, contents of h0,...,h7 (which contain the new operation batch) are absorbed into the hasher: urespan=frespan⋅habp | degree=5 When END operation is executed, the hash result is copied into registers h0,..,h3: uend=fend⋅hres | degree=5 Using the above definitions, we can describe the constraint for computing block hashes as follows: bchip′⋅(uctrli+usyscall+uspan+urespan+uend+1−(fctrli+fsyscall+fspan+frespan+fend))=bchip We need to add 1 and subtract the sum of the relevant operation flags to ensure that when none of the flags is set to 1, the above constraint reduces to bchip′=bchip. The degree of this constraint is 8.","breadcrumbs":"Design » Program decoder » Decoder constraints » Chiplets bus constraints","id":"116","title":"Chiplets bus constraints"},"117":{"body":"As described previously , block stack table keeps track of program blocks currently executing on the VM. Thus, whenever the VM starts executing a new block, an entry for this block is added to the block stack table. And when execution of a block completes, it is removed from the block stack table. Adding and removing entries to/from the block stack table is accomplished as follows: To add an entry, we multiply the value in column p1 by a value representing a tuple (blk_id, prnt_id, is_loop). A constraint to enforce this would look as p1′=p1⋅v, where v is the value representing the row to be added. To remove an entry, we divide the value in column p1 by a value representing a tuple (blk_id, prnt_id, is_loop). A constraint to enforce this would look as p1′⋅u=p1, where u is the value representing the row to be removed. Before describing the constraints for the block stack table, we first describe how we compute the values to be added and removed from the table for each operation. In the below, for block start operations (JOIN, SPLIT, LOOP, SPAN) a refers to the ID of the parent block, and a′ refers to the ID of the starting block. For END operation, the situation is reversed: a is the ID of the ending block, and a′ is the ID of the parent block. For RESPAN operation, a refers to the ID of the current operation batch, a′ refers to the ID of the next batch, and the parent ID for both batches is set by the prover non-deterministically in register h1. When JOIN operation is executed, row (a′,a,0) is added to the block stack table: vjoin=fjoin⋅(α0+α1⋅a′+α2⋅a) | degree=6 When SPLIT operation is executed, row (a′,a,0) added to the block stack table: vsplit=fsplit⋅(α0+α1⋅a′+α2⋅a) | degree=6 When LOOP operation is executed, row (a′,a,1) is added to the block stack table if the value at the top of the operand stack is 1, and row (a′,a,0) is added to the block stack table if the value at the top of the operand stack is 0: vloop=floop⋅(α0+α1⋅a′+α2⋅a+α3⋅s0) | degree=6 When SPAN operation is executed, row (a′,a,0) is added to the block stack table: vspan=fspan⋅(α0+α1⋅a′+α2⋅a) | degree=6 When RESPAN operation is executed, row (a,h1′,0) is removed from the block stack table, and row (a′,h1′,0) is added to the table. The prover sets the value of register h1 at the next row to the ID of the parent block: urespan=frespan⋅(α0+α1⋅a+α2⋅h1′) | degree=5vrespan=frespan⋅(α0+α1⋅a′+α2⋅h1′) | degree=5 When END operation is executed, row (a,a′,h5) is removed from the block span table. Register h5 contains the is_loop flag: uend=fend⋅(α0+α1⋅a+α2⋅a′+α3⋅h5) | degree=5 Using the above definitions, we can describe the constraint for updating the block stack table as follows: p1′⋅(uend+urespan+1−(fend+frespan))=p1⋅(vjoin+vsplit+vloop+vspan+vrespan+1−(fjoin+fsplit+floop+fspan+frespan)) We need to add 1 and subtract the sum of the relevant operation flags from each side to ensure that when none of the flags is set to 1, the above constraint reduces to p1′=p1. The degree of this constraint is 7. In addition to the above transition constraint, we also need to impose boundary constraints against the p1 column to make sure the first and the last value in the column is set to 1. This enforces that the block stack table starts and ends in an empty state.","breadcrumbs":"Design » Program decoder » Decoder constraints » Block stack table constraints","id":"117","title":"Block stack table constraints"},"118":{"body":"As described previously , when the VM starts executing a new program block, it adds hashes of the block's children to the block hash table. And when the VM finishes executing a block, it removes the block's hash from the block hash table. This means that the block hash tables gets updated when we execute JOIN, SPLIT, LOOP, REPEAT, and END operations (executing SPAN operation does not affect the block hash table because a span block has no children). Adding and removing entries to/from the block hash table is accomplished as follows: To add an entry, we multiply the value in column p2 by a value representing a tuple (prnt_id, block_hash, is_first_child, is_loop_body). A constraint to enforce this would look as p2′=p2⋅v, where v is the value representing the row to be added. To remove an entry, we divide the value in column p2 by a value representing a tuple (prnt_id, block_hash, is_first_child, is_loop_body). A constraint to enforce this would look as p2′⋅u=p2, where u is the value representing the row to be removed. To simplify constraint descriptions, we define values representing left and right children of a block as follows: ch1=α0+α1⋅a′+i=0∑3(αi+2⋅hi) | degree=1ch2=α0+α1⋅a′+i=0∑3(αi+2⋅hi+4) | degree=1 Graphically, this looks like so: air_decoder_left_right_child In a similar manner, we define a value representing the result of hash computation as follows: bh=α0+α1⋅a+i=0∑3(αi+2⋅hi)+α7⋅h4 | degree=1 Note that in the above we use a (block address from the current row) rather than a′ (block address from the next row) as we did for for values of ch1 and ch2. Also, note that we are not adding a flag indicating whether the block is the first child of a join block (i.e., α6 term is missing). It will be added later on. Using the above variables, we define row values to be added to and removed from the block hash table as follows. When JOIN operation is executed, hashes of both child nodes are added to the block hash table. We add α6 term to the first child value to differentiate it from the second child (i.e., this sets is_first_child to 1): vjoin=fjoin⋅(ch1+α6)⋅ch2 | degree=7 When SPLIT operation is executed and the top of the stack is 1, hash of the true branch is added to the block hash table, but when the top of the stack is 0, hash of the false branch is added to the block hash table: vsplit=fsplit⋅(s0⋅ch1+(1−s0)⋅ch2) | degree=7 When LOOP operation is executed and the top of the stack is 1, hash of loop body is added to the block hash table. We add α7 term to indicate that the child is a body of a loop. The below also means that if the top of the stack is 0, nothing is added to the block hash table as the expression evaluates to 0: vloop=floop⋅s0⋅(ch1+α7) | degree=7 When REPEAT operation is executed, hash of loop body is added to the block hash table. We add α7 term to indicate that the child is a body of a loop: vrepeat=frepeat⋅(ch1+α7) | degree=5 When END operation is executed, hash of the completed block is removed from the block hash table. However, we also need to differentiate between removing the first and the second child of a join block. We do this by looking at the next operation. Specifically, if the next operation is neither END nor REPEAT we know that another block is about to be executed, and thus, we have just finished executing the first child of a join block. Thus, if the next operation is neither END nor REPEAT we need to set the term for α6 coefficient to 1 as shown below: uend=fend⋅(bh+α6⋅(1−(fend′+frepeat′))) | degree=8 Using the above definitions, we can describe the constraint for updating the block hash table as follows: p2′⋅(uend+1−fend)=p2⋅(vjoin+vsplit+vloop+vrepeat+1−(fjoin+fsplit+floop+frepeat)) We need to add 1 and subtract the sum of the relevant operation flags from each side to ensure that when none of the flags is set to 1, the above constraint reduces to p2′=p2. The degree of this constraint is 9. In addition to the above transition constraint, we also need to set the following boundary constraints against the p2 column: The first value in the column represents a row for the entire program. Specifically, the row tuple would be (0, program_hash, 0, 0). This row should be removed from the table when the last END operation is executed. The last value in the column is 1 - i.e., the block hash table is empty.","breadcrumbs":"Design » Program decoder » Decoder constraints » Block hash table constraints","id":"118","title":"Block hash table constraints"},"119":{"body":"Span block constraints ensure proper decoding of span blocks. In addition to the block stack table constraints and block hash table constraints described previously, decoding of span blocks requires constraints described below.","breadcrumbs":"Design » Program decoder » Decoder constraints » Span block","id":"119","title":"Span block"},"12":{"body":"","breadcrumbs":"Introduction » Usage » CLI interface","id":"12","title":"CLI interface"},"120":{"body":"The in_span column (denoted as sp) is used to identify rows which execute non-control flow operations. The values in this column are set as follows: Executing a SPAN operation sets the value of in_span column to 1. The value remains 1 until the END operation is executed. If RESPAN operation is executed between SPAN and END operations, in the row at which RESPAN operation is executed in_span is set to 0. It is then reset to 1 in the following row. In all other cases, value in the in_span column should be 0. The picture below illustrates the above rules. air_decoder_in_spans_column_constraint To enforce the above rules we need the following constraints. When executing SPAN or RESPAN operation, the next value in sp column must be set to 1: (fspan+frespan)⋅(1−sp′)=0 | degree=6 When the next operation is END or RESPAN, the next value in sp column must be set 0. (fend′+frespan′)⋅sp′=0 | degree=5 In all other cases, the value in sp column must be copied over to the next row: (1−fspan−frespan−fend′−frespan′)⋅(sp′−sp)=0 | degree=6 Additionally, we will need to impose a boundary constraint which specifies that the first value in sp=0. Note, however, that we do not need to impose a constraint ensuring that values in sp are binary - this will follow naturally from the above constraints. Also, note that the combination of the above constraints makes it impossible to execute END or RESPAN operations right after SPAN or RESPAN operations.","breadcrumbs":"Design » Program decoder » Decoder constraints » In-span column constraints","id":"120","title":"In-span column constraints"},"121":{"body":"When we are inside a span block, values in block address columns (denoted as a) must remain the same. This can be enforced with the following constraint: sp⋅(a′−a)=0 | degree=2 Notice that this constraint does not apply when we execute any of the control flow operations. For such operations, the prover sets the value of the a column non-deterministically, except for the RESPAN operation. For the RESPAN operation the value in the a column is incremented by 8, which is enforced by a constraint described previously. Notice also that this constraint implies that when the next operation is the END operation, the value in the a column must also be copied over to the next row. This is exactly the behavior we want to enforce so that when the END operation is executed, the block address is set to the address of the current span batch.","breadcrumbs":"Design » Program decoder » Decoder constraints » Block address constraints","id":"121","title":"Block address constraints"},"122":{"body":"The group_count column (denoted as gc) is used to keep track of the number of operation groups which remains to be executed in a span block. In the beginning of a span block (i.e., when SPAN operation is executed), the prover sets the value of gc non-deterministically. This value is subsequently decremented according to the rules described below. By the time we exit the span block (i.e., when END operation is executed), the value in gc must be 0. The rules for decrementing values in the gc column are as follows: The count cannot be decremented by more than 1 in a single row. When an operation group is fully executed (which happens when h0=0 inside a span block), the count is decremented by 1. When SPAN, RESPAN, or PUSH operations are executed, the count is decremented by 1. Note that these rules imply that PUSH operation cannot be the last operation in an operation group (otherwise the count would have to be decremented by 2). To simplify the description of the constraints, we will define the following variable: Δgc=gc−gc′ Using this variable, we can describe the constraints against the gc column as follows: Inside a span block, group count can either stay the same or decrease by one: sp⋅Δgc⋅(Δgc−1)=0 | degree=3 When group count is decremented inside a span block, either h0 must be 0 (we consumed all operations in a group) or we must be executing PUSH operation: sp⋅Δgc⋅(1−fpush)⋅h0=0 | degree=7 Notice that the above constraint does not preclude fpush=1 and h0=0 from being true at the same time. If this happens, op group decoding constraints (described here ) will force that the operation following the PUSH operation is a NOOP. When executing a SPAN, a RESPAN, or a PUSH operation, group count must be decremented by 1: (fspan+frespan+fpush)⋅(Δgc−1)=0 | degree=6 If the next operation is either an END or a RESPAN, group count must remain the same: Δgc⋅(fend′+frespan′)=0 | degree=5 When an END operation is executed, group count must be 0: fend⋅gc=0 | degree=5","breadcrumbs":"Design » Program decoder » Decoder constraints » Group count constraints","id":"122","title":"Group count constraints"},"123":{"body":"Inside a span block, register h0 is used to keep track of operations to be executed in the current operation group. The value of this register is set by the prover non-deterministically at the time when the prover executes a SPAN or a RESPAN operation, or when processing of a new operation group within a batch starts. The picture below illustrates this. air_decoder_op_group_constraint In the above: The prover sets the value of h0 non-deterministically at row 0. The value is set to an operation group containing operations op0 through op8. As we start executing the group, at every row we \"remove\" the least significant operation from the group. This can be done by subtracting opcode of the operation from the group, and then dividing the result by 27. By row 9 the group is fully executed. This decrements the group count and set op_index to 0 (constraints against op_index column are described in the next section). At row 10 we start executing the next group with operations op9 through op11. In this case, the prover populates h0 with the group having its first operation (op9) already removed, and sets the op_bits registers to the value encoding op9. By row 12 this group is also fully executed. To simplify the description of the constraints, we define the following variables: op=i=0∑6(bi⋅2i)fsgc=sp⋅sp′⋅(1−Δgc) op is just an opcode value implied by the values in op_bits registers. fsgc is a flag which is set to 1 when the group count within a span block does not change. We multiply it by sp′ to make sure the flag is 0 when we are about to end decoding of an operation batch. Note that fsgc flag is mutually exclusive with fspan, frespan, and fpush flags as these three operations decrement the group count. Using these variables, we can describe operation group decoding constraints as follows: When a SPAN, a RESPAN, or a PUSH operation is executed or when the group count does not change, the value in h0 should be decremented by the value of the opcode in the next row. (fspan+frespan+fpush+fsgc)⋅(h0−h0′⋅27−op′)=0 | degree=6 Notice that when the group count does change, and we are not executing fspan, frespan, or fpush operations, no constraints are placed against h0, and thus, the prover can populate this register non-deterministically. When we are in a span block and the next operation is END or RESPAN, the current value in h0 column must be 0. sp⋅(fend′+frespan′)⋅h0=0 | degree=6","breadcrumbs":"Design » Program decoder » Decoder constraints » Op group decoding constraints","id":"123","title":"Op group decoding constraints"},"124":{"body":"The op_index column (denoted as ox) tracks index of an operation within its operation group. It is used to ensure that the number of operations executed per group never exceeds 9. The index is zero-based, and thus, the possible set of values for ox is between 0 and 8 (both inclusive). To simplify the description of the constraints, we will define the following variables: ng=Δgc−fpushΔox=ox′−ox The value of ng is set to 1 when we are about to start executing a new operation group (i.e., group count is decremented but we did not execute a PUSH operation). Using these variables, we can describe the constraints against the ox column as follows. When executing SPAN or RESPAN operations the next value of op_index must be set to 0: (fspan+frespan)⋅ox′=0 | degree=6 When starting a new operation group inside a span block, the next value of op_index must be set to 0. Note that we multiply by sp to exclude the cases when the group count is decremented because of SPAN or RESPAN operations: sp⋅ng⋅ox′=0 | degree=6 When inside a span block but not starting a new operation group, op_index must be incremented by 1. Note that we multiply by sp′ to exclude the cases when we are about to exit processing of an operation batch (i.e., the next operation is either END or RESPAN): sp⋅sp′⋅(1−ng)⋅(Δox−1)=0 | degree=7 Values of op_index must be in the range [0,8]. i=0∏8(ox−i)=0 | degree=9","breadcrumbs":"Design » Program decoder » Decoder constraints » Op index constraints","id":"124","title":"Op index constraints"},"125":{"body":"Operation batch flag columns (denoted bc0, bc1, and bc2) are used to specify how many operation groups are present in an operation batch. This is relevant for the last batch in a span block (or the first batch if there is only one batch in a block) as all other batches should be completely full (i.e., contain 8 operation groups). These columns are used to define the following 4 flags: fg8=bc0: there are 8 operation groups in the batch. fg4=(1−bc0)⋅bc1⋅bc2: there are 4 operation groups in the batch. fg2=(1−bc0)⋅(1−bc1)⋅bc2: there are 2 operation groups in the batch. fg1=(1−bc0)⋅bc1⋅(1−bc2): there is only 1 operation groups in the batch. Notice that the degree of fg8 is 1, while the degree of the remaining flags is 3. These flags can be set to 1 only when we are executing SPAN or RESPAN operations as this is when the VM starts processing new operation batches. Also, for a given flag we need to ensure that only the specified number of operations groups are present in a batch. This can be done with the following constraints. All batch flags must be binary: bci2−bci=0 for i∈[0,3) | degree=2 When SPAN or RESPAN operations is executed, one of the batch flags must be set to 1. (fspan+frespan)−(fg1+fg2+fg4+fg8)=0 | degree=5 When we have at most 4 groups in a batch, registers h4,...,h7 should be set to 0's. (fg1+fg2+fg4)⋅hi=0 for i∈[4,8) | degree=4 When we have at most 2 groups in a batch, registers h2 and h3 should also be set to 0's. (fg1+fg2)⋅hi=0 for i∈2,3 | degree=4 When we have at most 1 groups in a batch, register h1 should also be set to 0. fg1⋅h1=0 | degree=4","breadcrumbs":"Design » Program decoder » Decoder constraints » Op batch flags constraints","id":"125","title":"Op batch flags constraints"},"126":{"body":"Op group table is used to ensure that all operation groups in a given batch are consumed before a new batch is started (i.e., via a RESPAN operation) or the execution of a span block is complete (i.e., via an END operation). The op group table is updated according to the following rules: When a new operation batch is started, we add groups from this batch to the table. To add a group to the table, we multiply the value in column p3 by a value representing a tuple (batch_id, group_pos, group). A constraint to enforce this would look as p3′=p3⋅v, where v is the value representing the row to be added. Depending on the batch, we may need to add multiple groups to the table (i.e., p3′=p3⋅v1⋅v2⋅v3...). Flags fg1, fg2, fg4, and fg8 are used to define how many groups to add. When a new operation group starts executing or when an immediate value is consumed, we remove the corresponding group from the table. To do this, we divide the value in column p3 by a value representing a tuple (batch_id, group_pos, group). A constraint to enforce this would look as p3′⋅u=p3, where u is the value representing the row to be removed. To simplify constraint descriptions, we first define variables representing the rows to be added to and removed from the op group table. When a SPAN or a RESPAN operation is executed, we compute the values of the rows to be added to the op group table as follows: vi=α0+α1⋅a′+α2⋅(gc−i)+α3⋅hi | degree=1 Where i∈[1,8). Thus, v1 defines row value for group in h1, v2 defines row value for group h2 etc. Note that batch address column comes from the next row of the block address column (a′). We compute the value of the row to be removed from the op group table as follows: u=α0+α1⋅a+α2⋅gc+α3⋅((h0′⋅27+op′)⋅(1−fpush)+s0′⋅fpush) | degree=5 In the above, the value of the group is computed as (h0′⋅27+op′)⋅(1−fpush)+s0′⋅fpush. This basically says that when we execute a PUSH operation we need to remove the immediate value from the table. This value is at the top of the stack (column s0) in the next row. However, when we are not executing a PUSH operation, the value to be removed is an op group value which is a combination of values in h0 and op_bits columns (also in the next row). Note also that value for batch address comes from the current value in the block address column (a), and the group position comes from the current value of the group count column (gc). We also define a flag which is set to 1 when a group needs to be removed from the op group table. fdg=sp⋅Δgc The above says that we remove groups from the op group table whenever group count is decremented. We multiply by sp to exclude the cases when the group count is decremented due to SPAN or RESPAN operations. Using the above variables together with flags fg2, fg4, fg8 defined in the previous section, we describe the constraint for updating op group table as follows (note that we do not use fg1 flag as when a batch consists of a single group, nothing is added to the op group table): p3′⋅(fdg⋅u+1−fdg)=p3⋅(fg2⋅v1+fg4⋅i=1∏3vi+fg8⋅i=1∏7vi−1+(fspan+frespan)) The above constraint specifies that: When SPAN or RESPAN operations are executed, we add between 1 and 7 groups to the op group table. When group count is decremented inside a span block, we remove a group from the op group table. The degree of this constraint is 9. In addition to the above transition constraint, we also need to impose boundary constraints against the p3 column to make sure the first and the last value in the column is set to 1. This enforces that the op group table table starts and ends in an empty state.","breadcrumbs":"Design » Program decoder » Decoder constraints » Op group table constraints","id":"126","title":"Op group table constraints"},"127":{"body":"Miden VM is a stack machine. The stack is a push-down stack of practically unlimited depth (in practical terms, the depth will never exceed 232), but only the top 16 items are directly accessible to the VM. Items on the stack are elements in a prime field with modulus 264−232+1. To keep the constraint system for the stack manageable, we impose the following rules: All operations executed on the VM can shift the stack by at most one item. That is, the end result of an operation must be that the stack shrinks by one item, grows by one item, or the number of items on the stack stays the same. Stack depth must always be greater than or equal to 16. At the start of program execution, the stack is initialized with exactly 16 input values, all of which could be 0's. By the end of program execution, exactly 16 items must remain on the stack (again, all of them could be 0's). These items comprise the output of the program. To ensure that managing stack depth does not impose significant burden, we adopt the following rule: When the stack depth is 16, removing additional items from the stack does not change its depth. To keep the depth at 16, 0's are inserted into the deep end of the stack for each removed item.","breadcrumbs":"Design » Operand stack » Operand stack","id":"127","title":"Operand stack"},"128":{"body":"The VM allocates 19 trace columns for the stack. The layout of the columns is illustrated below. The meaning of the above columns is as follows: s0...s15 are the columns representing the top 16 slots of the stack. Column b0 contains the number of items on the stack (i.e., the stack depth). In the above picture, there are 16 items on the stacks, so b0=16. Column b1 contains an address of a row in the \"overflow table\" in which we'll store the data that doesn't fit into the top 16 slots. When b1=0, it means that all stack data fits into the top 16 slots of the stack. Helper column h0 is used to ensure that stack depth does not drop below 16. Values in this column are set by the prover non-deterministically to b0−161 when b0=16, and to any other value otherwise.","breadcrumbs":"Design » Operand stack » Stack representation","id":"128","title":"Stack representation"},"129":{"body":"To keep track of the data which doesn't fit into the top 16 stack slots, we'll use an overflow table. This will be a virtual table . To represent this table, we'll use a single auxiliary column p1. The table itself can be thought of as having 3 columns as illustrated below. The meaning of the columns is as follows: Column t0 contains row address. Every address in the table must be unique. Column t1 contains the value that overflowed the stack. Column t2 contains the address of the row containing the value that overflowed the stack right before the value in the current row. For example, in the picture above, first value a overflowed the stack, then b overflowed the stack, and then value c overflowed the stack. Thus, row with value b points back to the row with value a, and row with value c points back to the row with value b. To reduce a table row to a single value, we'll compute a randomized product of column values as follows: ri=α0+α1⋅t0,i+α2⋅t1,i+α3⋅t2,i Then, when row i is added to the table, we'll update the value in the p1 column like so: p1′=p1⋅ri Analogously, when row i is removed from the table, we'll update the value in column p1 like so: p1′=rip1 The initial value of p1 is set to 1. Thus, if by the time Miden VM finishes executing a program the table is empty (we added and then removed exactly the same set of rows), p1 will also be equal to 1. There are a couple of other rules we'll need to enforce: We can delete a row only after the row has been inserted into the table. We can't insert a row with the same address twice into the table (even if the row was inserted and then deleted). How these are enforced will be described a bit later.","breadcrumbs":"Design » Operand stack » Overflow table","id":"129","title":"Overflow table"},"13":{"body":"To compile Miden VM into a binary, we have a Makefile with the following tasks: make exec This will place an optimized, multi-threaded miden executable into the ./target/optimized directory. It is equivalent to executing: cargo build --profile optimized --features concurrent,executable If you would like to enable single-threaded mode, you can compile Miden VM using the following command: cargo build --profile optimized --features executable For a faster build, you can compile with less optimizations, replacing --profile optimized by --release. Example: cargo build --release --features concurrent,executable In this case, the miden executable will be placed in the ./target/release directory.","breadcrumbs":"Introduction » Usage » Compiling Miden VM","id":"13","title":"Compiling Miden VM"},"130":{"body":"If an operation adds data to the stack, we say that the operation caused a right shift. For example, PUSH and DUP operations cause a right shift. Graphically, this looks like so: Here, we pushed value v17 onto the stack. All other values on the stack are shifted by one slot to the right and the stack depth increases by 1. There is not enough space at the top of the stack for all 17 values, thus, v1 needs to be moved to the overflow table. To do this, we need to rely on another column: k0. This is a system column which keeps track of the current VM cycle. The value in this column is simply incremented by 1 with every step. The row we want to add to the overflow table is defined by tuple (clk,v1,0), and after it is added, the table would look like so: The reason we use VM clock cycle as row address is that the clock cycle is guaranteed to be unique, and thus, the same row can not be added to the table twice. Let's push another item onto the stack: Again, as we push v18 onto the stack, all items on the stack are shifted to the right, and now v2 needs to be moved to the overflow table. The tuple we want to insert into the table now is (clk+1,v2,clk). After the operation, the overflow table will look like so: Notice that t2 for row which contains value v2 points back to the row with address clk. Overall, during a right shift we do the following: Increment stack depth by 1. Shift stack columns s0,...,s14 right by 1 slot. Add a row to the overflow table described by tuple (k0,s15,b0). Set the next value of b1 to the current value of k0. Also, as mentioned previously, the prover sets values in h0 non-deterministically to b0−161.","breadcrumbs":"Design » Operand stack » Right shift","id":"130","title":"Right shift"},"131":{"body":"If an operation removes an item from the stack, we say that the operation caused a left shift. For example, a DROP operation causes a left shift. Assuming the stack is in the state we left it at the end of the previous section, graphically, this looks like so: Overall, during the left shift we do the following: When stack depth is greater than 16: Decrement stack depth by 1. Shift stack columns s1,...,s15 left by 1 slot. Remove a row from the overflow table with t0 equal to the current value of b1. Set the next value of s15 to the value in t1 of the removed overflow table row. Set the next value of b1 to the value in t2 of the removed overflow table row. When the stack depth is equal to 16: Keep the stack depth the same. Shift stack columns s1,...,s15 left by 1 slot. Set the value of s15 to 0. Set the value to h0 to 0 (or any other value). If the stack depth becomes (or remains) 16, the prover can set h0 to any value (e.g., 0). But if the depth is greater than 16 the prover sets h0 to b0−161.","breadcrumbs":"Design » Operand stack » Left shift","id":"131","title":"Left shift"},"132":{"body":"To simplify constraint descriptions, we'll assume that the VM exposes two binary flag values described below. Flag Degree Description fshr 6 When this flag is set to 1, the instruction executing on the VM is performing a \"right shift\". fshl 5 When this flag is set to 1, the instruction executing on the VM is performing a \"left shift\". These flags are mutually exclusive. That is, if fshl=1, then fshr=0 and vice versa. However, both flags can be set to 0 simultaneously. This happens when the executed instruction does not shift the stack. How these flags are computed is described here .","breadcrumbs":"Design » Operand stack » AIR Constraints","id":"132","title":"AIR Constraints"},"133":{"body":"Additionally, we'll define a flag to indicate whether the overflow table contains values. This flag will be set to 0 when the overflow table is empty, and to 1 otherwise (i.e., when stack depth >16). This flag can be computed as follows: fov=(b0−16)⋅h0 | degree=2 To ensure that this flag is set correctly, we need to impose the following constraint: (1−fov)⋅(b0−16)=0 | degree=3 The above constraint can be satisfied only when either of the following holds: b0=16, in which case fov evaluates to 0, regardless of the value of h0. fov=1, in which case b0 cannot be equal to 16 (and h0 must be set to b0−161).","breadcrumbs":"Design » Operand stack » Stack overflow flag","id":"133","title":"Stack overflow flag"},"134":{"body":"To make sure stack depth column b0 is updated correctly, we need to impose the following constraints: Condition Constraint__ Description fshr=1 b0′=b0+1 When the stack is shifted to the right, stack depth should be incremented by 1. fshl=1 fov=1 b0′=b0−1 When the stack is shifted to the left and the overflow table is not empty, stack depth should be decremented by 1. otherwise b0′=b0 In all other cases, stack depth should not change. We can combine the above constraints into a single expression as follows: b0′−b0+fshl⋅fov−fshr=0 | degree=7","breadcrumbs":"Design » Operand stack » Stack depth constraints","id":"134","title":"Stack depth constraints"},"135":{"body":"When the stack is shifted to the right, a tuple (k0,s15,b1) should be added to the overflow table. We will denote value of the row to be added to the table as follows: v=α0+α1⋅k0+α2⋅s15+α3⋅b1 When the stack is shifted to the left, a tuple (b1,s15′,b1′) should be removed from the overflow table. We will denote value of the row to be removed from the table as follows. u=α0+α1⋅b1+α2⋅s15′+α3⋅b1′ Using the above variables, we can ensure that right and left shifts update the overflow table correctly by enforcing the following constraint: p1′⋅(u⋅fshl⋅fov+1−fshl⋅fov)=p1⋅(v⋅fshr+1−fshr) | degree=9 The above constraint reduces to the following under various flag conditions: Condition Applied constraint fshl=1, fshr=0, fov=0 p1′=p1 fshl=1, fshr=0, fov=1 p1′⋅u=p1 fshl=0, fshr=1, fov=1 or 0 p1′=p1⋅v fshl=0, fshr=0, fov=1 or 0 p1′=p1 Notice that in the case of the left shift, the constraint forces the prover to set the next values of s15 and b1 to values t1 and t2 of the row removed from the overflow table. In case of a right shift, we also need to make sure that the next value of b1 is set to the current value of k0. This can be done with the following constraint: fshr⋅(b1′−k0)=0 | degree=7 In case of a left shift, when the overflow table is empty, we need to make sure that a 0 is \"shifted in\" from the right (i.e., s15 is set to 0). This can be done with the following constraint: fshl⋅(1−fov)⋅s15′=0 | degree=8","breadcrumbs":"Design » Operand stack » Overflow table constraints","id":"135","title":"Overflow table constraints"},"136":{"body":"In addition to the constraints described above, we also need to enforce the following boundary constraints: b0=16 at the first and at the last row of execution trace. b1=0 at the first and at the last row of execution trace. p1=1 at the first and at the last row of execution trace.","breadcrumbs":"Design » Operand stack » Boundary constraints","id":"136","title":"Boundary constraints"},"137":{"body":"In addition to the constraints described in the previous section, we need to impose constraints to check that each VM operation is executed correctly. For this purpose the VM exposes a set of operation-specific flags. These flags are set to 1 when a given operation is executed, and to 0 otherwise. The naming convention for these flags is fopname. For example, fdup would be set to 1 when DUP operation is executed, and to 0 otherwise. Operation flags are discussed in detail in the section below . To describe how operation-specific constraints work, let's use an example with DUP operation. This operation pushes a copy of the top stack item onto the stack. The constraints we need to impose for this operation are as follows: fdup⋅(s0′−s0)=0fdup⋅(si+1′−si)=0 for i∈[0,15) The first constraint enforces that the top stack item in the next row is the same as the top stack item in the current row. The second constraint enforces that all stack items (starting from item 0) are shifted to the right by 1. We also need to impose all the constraints discussed in the previous section, be we omit them here. Let's write similar constraints for DUP1 operation, which pushes a copy of the second stack item onto the stack: fdup1⋅(s0′−s1)=0fdup1⋅(si+1′−si)=0 for i∈[0,15) It is easy to notice that while the first constraint changed, the second constraint remained the same - i.e., we are still just shifting the stack to the right. In fact, for most operations it makes sense to make a distinction between constraints unique to the operation vs. more general constraints which enforce correct behavior for the stack items not affected by the operation. In the subsequent sections we describe in detail only the former constraints, and provide high-level descriptions of the more general constraints. Specifically, we indicate how the operation affects the rest of the stack (e.g., shifts right starting from position 0).","breadcrumbs":"Design » Operand stack » Operation constraints » Stack operation constraints","id":"137","title":"Stack operation constraints"},"138":{"body":"As mentioned above, operation flags are used as selectors to enforce operation-specific constraints. That is, they turn on relevant constraints for a given operation. In total, the VM provides 88 unique operations, and thus, there are 88 operation flags (not all of them currently used). Operation flags are mutually exclusive. That is, if one flag is set to 1, all other flags are set to 0. Also, one of the flags is always guaranteed to be set to 1. To compute values of operation flags we use op bits registers located in the decoder . These registers contain binary representations of operation codes (opcodes). Each opcode consists of 7 bits, and thus, there are 7 op bits registers. We denote these registers as b0,...,b6. The values are computed by multiplying the op bit registers in various combinations. Notice that binary encoding down below is showed in big-endian order, so the flag bits correspond to the reverse order of the op bits registers, from b6 to b0. For example, the value of the flag for NOOP, which is encoded as 0000000, is computed as follows: fnoop=(1−b6)⋅(1−b5)⋅(1−b4)⋅(1−b3)⋅(1−b2)⋅(1−b1)⋅(1−b0) While the value of the DROP operation, which is encoded as 0101001 is computed as follows: fdrop=(1−b6)⋅b5⋅(1−b4)⋅b3⋅(1−b2)⋅(1−b1)⋅b0 As can be seen from above, the degree for both of these flags is 7. Since degree of constraints in Miden VM can go up to 9, this means that operation-specific constraints cannot exceed degree 2. However, there are some operations which require constraints of higher degree (e.g., 3 or even 5). To support such constraints, we adopt the following scheme. We organize the operations into 4 groups as shown below and also introduce two extra registers e0 and e1 for degree reduction: b6 b5 b4 b3 b2 b1 b0 e0 e1 # of ops degree 0 x x x x x x 0 0 64 7 1 0 0 x x x - 0 0 8 6 1 0 1 x x x x 1 0 16 5 1 1 x x x - - 0 1 8 4 In the above: Operation flags for operations in the first group (with prefix 0), are computed using all 7 op bits, and thus their degree is 7. Operation flags for operations in the second group (with prefix 100), are computed using only the first 6 op bits, and thus their degree is 6. Operation flags for operations in the third group (with prefix 101), are computed using all 7 op bits. We use the extra register e0 (which is set to b6⋅(1−b5)⋅b4) to reduce the degree by 2. Thus, the degree of op flags in this group is 5. Operation flags for operations in the fourth group (with prefix 11), are computed using only the first 5 op bits. We use the extra register e1 (which is set to b6⋅b5) to reduce the degree by 1. Thus, the degree of op flags in this group is 4. How operations are distributed between these 4 groups is described in the sections below.","breadcrumbs":"Design » Operand stack » Operation constraints » Operation flags","id":"138","title":"Operation flags"},"139":{"body":"This group contains 32 operations which do not shift the stack (this is almost all such operations). Since the op flag degree for these operations is 7, constraints for these operations cannot exceed degree 2. Operation Opcode value Binary encoding Operation group Flag degree NOOP 0 000_0000 System ops 7 EQZ 1 000_0001 Field ops 7 NEG 2 000_0010 Field ops 7 INV 3 000_0011 Field ops 7 INCR 4 000_0100 Field ops 7 NOT 5 000_0101 Field ops 7 FMPADD 6 000_0110 System ops 7 MLOAD 7 000_0111 I/O ops 7 SWAP 8 000_1000 Stack ops 7 CALLER 9 000_1001 System ops 7 MOVUP2 10 000_1010 Stack ops 7 MOVDN2 11 000_1011 Stack ops 7 MOVUP3 12 000_1100 Stack ops 7 MOVDN3 13 000_1101 Stack ops 7 ADVPOPW 14 000_1110 I/O ops 7 EXPACC 15 000_1111 Field ops 7 MOVUP4 16 001_0000 Stack ops 7 MOVDN4 17 001_0001 Stack ops 7 MOVUP5 18 001_0010 Stack ops 7 MOVDN5 19 001_0011 Stack ops 7 MOVUP6 20 001_0100 Stack ops 7 MOVDN6 21 001_0101 Stack ops 7 MOVUP7 22 001_0110 Stack ops 7 MOVDN7 23 001_0111 Stack ops 7 SWAPW 24 001_1000 Stack ops 7 EXT2MUL 25 001_1001 Field ops 7 MOVUP8 26 001_1010 Stack ops 7 MOVDN8 27 001_1011 Stack ops 7 SWAPW2 28 001_1100 Stack ops 7 SWAPW3 29 001_1101 Stack ops 7 SWAPDW 30 001_1110 Stack ops 7 31 001_1111 7","breadcrumbs":"Design » Operand stack » Operation constraints » No stack shift operations","id":"139","title":"No stack shift operations"},"14":{"body":"Internally, Miden VM uses rayon for parallel computations. To control the number of threads used to generate a STARK proof, you can use RAYON_NUM_THREADS environment variable.","breadcrumbs":"Introduction » Usage » Controlling parallelism","id":"14","title":"Controlling parallelism"},"140":{"body":"This group contains 16 operations which shift the stack to the left (i.e., remove an item from the stack). Most of left-shift operations are contained in this group. Since the op flag degree for these operations is 7, constraints for these operations cannot exceed degree 2. Operation Opcode value Binary encoding Operation group Flag degree ASSERT 32 010_0000 System ops 7 EQ 33 010_0001 Field ops 7 ADD 34 010_0010 Field ops 7 MUL 35 010_0011 Field ops 7 AND 36 010_0100 Field ops 7 OR 37 010_0101 Field ops 7 U32AND 38 010_0110 u32 ops 7 U32XOR 39 010_0111 u32 ops 7 FRIE2F4 40 010_1000 Crypto ops 7 DROP 41 010_1001 Stack ops 7 CSWAP 42 010_1010 Stack ops 7 CSWAPW 43 010_1011 Stack ops 7 MLOADW 44 010_1100 I/O ops 7 MSTORE 45 010_1101 I/O ops 7 MSTOREW 46 010_1110 I/O ops 7 FMPUPDATE 47 010_1111 System ops 7","breadcrumbs":"Design » Operand stack » Operation constraints » Left stack shift operations","id":"140","title":"Left stack shift operations"},"141":{"body":"This group contains 16 operations which shift the stack to the right (i.e., push a new item onto the stack). Most of right-shift operations are contained in this group. Since the op flag degree for these operations is 7, constraints for these operations cannot exceed degree 2. Operation Opcode value Binary encoding Operation group Flag degree PAD 48 011_0000 Stack ops 7 DUP 49 011_0001 Stack ops 7 DUP1 50 011_0010 Stack ops 7 DUP2 51 011_0011 Stack ops 7 DUP3 52 011_0100 Stack ops 7 DUP4 53 011_0101 Stack ops 7 DUP5 54 011_0110 Stack ops 7 DUP6 55 011_0111 Stack ops 7 DUP7 56 011_1000 Stack ops 7 DUP9 57 011_1001 Stack ops 7 DUP11 58 011_1010 Stack ops 7 DUP13 59 011_1011 Stack ops 7 DUP15 60 011_1100 Stack ops 7 ADVPOP 61 011_1101 I/O ops 7 SDEPTH 62 011_1110 I/O ops 7 CLK 63 011_1111 System ops 7","breadcrumbs":"Design » Operand stack » Operation constraints » Right stack shift operations","id":"141","title":"Right stack shift operations"},"142":{"body":"This group contains 8 u32 operations. These operations are grouped together because all of them require range checks. The constraints for range checks are of degree 5, however, since all these operations require them, we can define a flag with common prefix 100 to serve as a selector for the range check constraints. The value of this flag is computed as follows: fu32rc=b6⋅(1−b5)⋅(1−b4) The degree of this flag is 3, which is acceptable for a selector for degree 5 constraints. Operation Opcode value Binary encoding Operation group Flag degree U32ADD 64 100_0000 u32 ops 6 U32SUB 66 100_0010 u32 ops 6 U32MUL 68 100_0100 u32 ops 6 U32DIV 70 100_0110 u32 ops 6 U32SPLIT 72 100_1000 u32 ops 6 U32ASSERT2 74 100_1010 u32 ops 6 U32ADD3 76 100_1100 u32 ops 6 U32MADD 78 100_1110 u32 ops 6 As mentioned previously, the last bit of the opcode is not used in computation of the flag for these operations. We force this bit to always be set to 0 with the following constraint: b6⋅(1−b5)⋅(1−b4)⋅b0=0 | degree=4 Putting these operations into a group with flag degree 6 is important for two other reasons: Constraints for the U32SPLIT operation have degree 3. Thus, the degree of the op flag for this operation cannot exceed 6. Operations U32ADD3 and U32MADD shift the stack to the left. Thus, having these two operations in this group and putting them under the common prefix 10011 allows us to create a common flag for these operations of degree 5 (recall that the left-shift flag cannot exceed degree 5).","breadcrumbs":"Design » Operand stack » Operation constraints » u32 operations","id":"142","title":"u32 operations"},"143":{"body":"This group contains operations which require constraints with degree up to 3. All 7 operation bits are used for these flags. The extra e0 column is used for degree reduction of the three high-degree bits. Operation Opcode value Binary encoding Operation group Flag degree HPERM 80 101_0000 Crypto ops 5 MPVERIFY 81 101_0001 Crypto ops 5 PIPE 82 101_0010 I/O ops 5 MSTREAM 83 101_0011 I/O ops 5 SPLIT 84 101_0100 Flow control ops 5 LOOP 85 101_0101 Flow control ops 5 SPAN 86 101_0110 Flow control ops 5 JOIN 87 101_0111 Flow control ops 5 88 101_1000 5 89 101_1001 5 90 101_1010 5 91 101_1011 5 92 101_1100 5 93 101_1101 5 94 101_1110 5 95 101_1111 5 Note that the SPLIT and LOOP operations are grouped together under the common prefix 101010, and thus can have a common flag of degree 4 (using e0 for degree reduction). This is important because both of these operations shift the stack to the left. Also, we need to make sure that extra register e0, which is used to reduce the flag degree by 2, is set to 1 when b6=1, b5=0, and b4=1: e0−b6⋅(1−b5)⋅b4=0 | degree=3","breadcrumbs":"Design » Operand stack » Operation constraints » High-degree operations","id":"143","title":"High-degree operations"},"144":{"body":"This group contains operations which require constraints with degree up to 5. Operation Opcode value Binary encoding Operation group Flag degree MRUPDATE 96 110_0000 Crypto ops 4 PUSH 100 110_0100 I/O ops 4 SYSCALL 104 110_1000 Flow control ops 4 CALL 108 110_1100 Flow control ops 4 END 112 111_0000 Flow control ops 4 REPEAT 116 111_0100 Flow control ops 4 RESPAN 120 111_1000 Flow control ops 4 HALT 124 111_1100 Flow control ops 4 As mentioned previously, the last two bits of the opcode are not used in computation of the flag for these operations. We force these bits to always be set to 0 with the following constraints: b6⋅b5⋅b0=0 | degree=3 b6⋅b5⋅b1=0 | degree=3 Also, we need to make sure that extra register e1, which is used to reduce the flag degree by 1, is set to 1 when both b6 and b5 columns are set to 1: e1−b6⋅b5=0 | degree=2","breadcrumbs":"Design » Operand stack » Operation constraints » Very high-degree operations","id":"144","title":"Very high-degree operations"},"145":{"body":"Using the operation flags defined above, we can compute several composite flags which are used by various constraints in the VM.","breadcrumbs":"Design » Operand stack » Operation constraints » Composite flags","id":"145","title":"Composite flags"},"146":{"body":"The right-shift flag indicates that an operation shifts the stack to the right. This flag is computed as follows: fshr=(1−b6)⋅b5⋅b4+fu32split+fpush | degree=6 In the above, (1−b6)⋅b5⋅b4 evaluates to 1 for all right stack shift operations described previously. This works because all these operations have a common prefix 011. We also need to add in flags for other operations which shift the stack to the right but are not a part of the above group (e.g., PUSH operation).","breadcrumbs":"Design » Operand stack » Operation constraints » Shift right flag","id":"146","title":"Shift right flag"},"147":{"body":"The left-shift flag indicates that a given operation shifts the stack to the left. To simplify the description of this flag, we will first compute the following intermediate variables: A flag which is set to 1 when fu32add3=1 or fu32madd=1: fadd3_madd=b6⋅(1−b5)⋅(1−b4)⋅b3⋅b2 | degree=5 A flag which is set to 1 when fsplit=1 or floop=1: fsplit_loop=e0⋅(1−b3)⋅b2⋅(1−b1) | degree=4 Using the above variables, we compute left-shift flag as follows: fshl=(1−b6)⋅b5⋅(1−b4)+fadd3_madd+fsplit_loop+frepeat+fend⋅h5 | degree=5 In the above: (1−b6)⋅b5⋅(1−b4) evaluates to 1 for all left stack shift operations described previously. This works because all these operations have a common prefix 010. h5 is the helper register in the decoder which is set to 1 when we are exiting a LOOP block, and to 0 otherwise. Thus, similarly to the right-shift flag, we compute the value of the left-shift flag based on the prefix of the operation group which contains most left shift operations, and add in flag values for other operations which shift the stack to the left but are not a part of this group.","breadcrumbs":"Design » Operand stack » Operation constraints » Shift left flag","id":"147","title":"Shift left flag"},"148":{"body":"The control flow flag fctrl is set to 1 when a control flow operation is being executed by the VM, and to 0 otherwise. Naively, this flag can be computed as follows: fctrl=fjoin+fsplit+floop+frepeat+fspan+frespan+fcall+fsyscall+fend+fhalt | degree=6 However, this can be computed more efficiently via the common operation prefixes for the two groups of control flow operations as follows. fspan,join,split,loop=e0⋅(1−b3)⋅b2 | degree=3 fend,repeat,respan,halt=e1⋅b4 | degree=2 fctrl=fspan,join,split,loop+fend,repeat,respan,halt+fcall+fsyscall | degree=3","breadcrumbs":"Design » Operand stack » Operation constraints » Control flow flag","id":"148","title":"Control flow flag"},"149":{"body":"In this section we describe the AIR constraints for Miden VM system operations.","breadcrumbs":"Design » Operand stack » System operations » System Operations","id":"149","title":"System Operations"},"15":{"body":"Miden VM proof generation can be accelerated via GPUs. Currently, GPU acceleration is enabled only on Apple silicon hardware (via Metal). To compile Miden VM with Metal acceleration enabled, you can run the following command: make exec-metal Similar to make exec command, this will place the resulting miden executable into the ./target/optimized directory. Currently, GPU acceleration is applicable only to recursive proofs which can be generated using -r flag.","breadcrumbs":"Introduction » Usage » GPU acceleration","id":"15","title":"GPU acceleration"},"150":{"body":"The NOOP operation advances the cycle counter but does not change the state of the operand stack (i.e., the depth of the stack and the values on the stack remain the same). The NOOP operation does not impose any constraints besides the ones needed to ensure that the entire state of the stack is copied over. This constraint looks like so: si′−si=0 for i∈[0,16) | degree=1","breadcrumbs":"Design » Operand stack » System operations » NOOP","id":"150","title":"NOOP"},"151":{"body":"The ASSERT operation pops an element off the stack and checks if the popped element is equal to 1. If the element is not equal to 1, program execution fails. assert Stack transition for this operation must satisfy the following constraints: s0−1=0 | degree=1 The effect on the rest of the stack is: Left shift starting from position 1.","breadcrumbs":"Design » Operand stack » System operations » ASSERT","id":"151","title":"ASSERT"},"152":{"body":"The FMPADD operation pops an element off the stack, adds the current value of the fmp register to it, and pushes the result back onto the stack. The diagram below illustrates this graphically. fmpadd Stack transition for this operation must satisfy the following constraints: s0′−(s0+fmp)=0 | degree=1 The effect on the rest of the stack is: No change starting from position 1.","breadcrumbs":"Design » Operand stack » System operations » FMPADD","id":"152","title":"FMPADD"},"153":{"body":"The FMPUPDATE operation pops an element off the stack and adds it to the current value of the fmp register. The diagram below illustrates this graphically. fmpupdate The stack transition for this operation must follow the following constraint: fmp′−(fmp+s0)=0 | degree=1 The effect on the rest of the stack is: Left shift starting from position 1.","breadcrumbs":"Design » Operand stack » System operations » FMPUPDATE","id":"153","title":"FMPUPDATE"},"154":{"body":"The CLK operation pushes the current value of the clock cycle onto the stack. The diagram below illustrates this graphically. clk The stack transition for this operation must follow the following constraint: s0′−clk=0 | degree=1 The effect on the rest of the stack is: Right shift starting from position 0.","breadcrumbs":"Design » Operand stack » System operations » CLK","id":"154","title":"CLK"},"155":{"body":"In this section we describe the AIR constraints for Miden VM field operations (i.e., arithmetic operations over field elements).","breadcrumbs":"Design » Operand stack » Field operations » Field Operations","id":"155","title":"Field Operations"},"156":{"body":"Assume a and b are the elements at the top of the stack. The ADD operation computes c←(a+b). The diagram below illustrates this graphically. add Stack transition for this operation must satisfy the following constraints: s0′−(s0+s1)=0 | degree=1 The effect on the rest of the stack is: Left shift starting from position 2.","breadcrumbs":"Design » Operand stack » Field operations » ADD","id":"156","title":"ADD"},"157":{"body":"Assume a is the element at the top of the stack. The NEG operation computes b←(−a). The diagram below illustrates this graphically. neg Stack transition for this operation must satisfy the following constraints: s0′+s0=0 | degree=1 The effect on the rest of the stack is: No change starting from position 1.","breadcrumbs":"Design » Operand stack » Field operations » NEG","id":"157","title":"NEG"},"158":{"body":"Assume a and b are the elements at the top of the stack. The MUL operation computes c←(a⋅b). The diagram below illustrates this graphically. mul Stack transition for this operation must satisfy the following constraints: s0′−s0⋅s1=0 | degree=2 The effect on the rest of the stack is: Left shift starting from position 2.","breadcrumbs":"Design » Operand stack » Field operations » MUL","id":"158","title":"MUL"},"159":{"body":"Assume a is the element at the top of the stack. The INV operation computes b←(a−1). The diagram below illustrates this graphically. inv Stack transition for this operation must satisfy the following constraints: 1−s0′⋅s0=0 | degree=2 Note that the above constraint can be satisfied only if the value in s0=0. The effect on the rest of the stack is: No change starting from position 1.","breadcrumbs":"Design » Operand stack » Field operations » INV","id":"159","title":"INV"},"16":{"body":"Once the executable has been compiled, you can run Miden VM like so: ./target/optimized/miden [subcommand] [parameters] Currently, Miden VM can be executed with the following subcommands: run - this will execute a Miden assembly program and output the result, but will not generate a proof of execution. prove - this will execute a Miden assembly program, and will also generate a STARK proof of execution. verify - this will verify a previously generated proof of execution for a given program. compile - this will compile a Miden assembly program (i.e., build a program MAST ) and outputs stats about the compilation process. debug - this will instantiate a Miden debugger against the specified Miden assembly program and inputs. analyze - this will run a Miden assembly program against specific inputs and will output stats about its execution. repl - this will initiate the Miden REPL tool. All of the above subcommands require various parameters to be provided. To get more detailed help on what is needed for a given subcommand, you can run the following: ./target/optimized/miden [subcommand] --help For example: ./target/optimized/miden prove --help To execute a program using the Miden VM there needs to be a .masm file containing the Miden Assembly code and a .inputs file containing the inputs.","breadcrumbs":"Introduction » Usage » Running Miden VM","id":"16","title":"Running Miden VM"},"160":{"body":"Assume a is the element at the top of the stack. The INCR operation computes b←(a+1). The diagram below illustrates this graphically. incr Stack transition for this operation must satisfy the following constraints: s0′−(s0+1)=0 | degree=1 The effect on the rest of the stack is: No change starting from position 1.","breadcrumbs":"Design » Operand stack » Field operations » INCR","id":"160","title":"INCR"},"161":{"body":"Assume a is a binary value at the top of the stack. The NOT operation computes b←(¬a). The diagram below illustrates this graphically. not Stack transition for this operation must satisfy the following constraints: s02−s0=0 | degree=2 s0′−(1−s0)=0 | degree=1 The first constraint ensures that the value in s0 is binary, and the second constraint ensures the correctness of the boolean NOT operation. The effect on the rest of the stack is: No change starting from position 1.","breadcrumbs":"Design » Operand stack » Field operations » NOT","id":"161","title":"NOT"},"162":{"body":"Assume a and b are binary values at the top of the stack. The AND operation computes c←(a∧b). The diagram below illustrates this graphically. and Stack transition for this operation must satisfy the following constraints: si2−si=0 for i∈{0,1} | degree=2 s0′−s0⋅s1=0 | degree=2 The first two constraints ensure that the value in s0 and s1 are binary, and the third constraint ensures the correctness of the boolean AND operation. The effect on the rest of the stack is: Left shift starting from position 2.","breadcrumbs":"Design » Operand stack » Field operations » AND","id":"162","title":"AND"},"163":{"body":"Assume a and b are binary values at the top of the stack. The OR operation computes c←(a∨b) The diagram below illustrates this graphically. or Stack transition for this operation must satisfy the following constraints: si2−si=0 for i∈{0,1} | degree=2 s0′−(s1+s0−s1⋅s0)=0 | degree=2 The first two constraints ensure that the value in s0 and s1 are binary, and the third constraint ensures the correctness of the boolean OR operation. The effect on the rest of the stack is: Left shift starting from position 2.","breadcrumbs":"Design » Operand stack » Field operations » OR","id":"163","title":"OR"},"164":{"body":"Assume a and b are the elements at the top of the stack. The EQ operation computes c such that c=1 if a=b, and 0 otherwise. The diagram below illustrates this graphically. eq Stack transition for this operation must satisfy the following constraints: s0′⋅(s0−s1)=0 | degree=2 s0′−(1−(s0−s1)⋅h0)=0 | degree=2 To satisfy the above constraints, the prover must populate the value of helper register h0 as follows: If s0=s1, set h0=s0−s11. Otherwise, set h0 to any value (e.g., 0). The effect on the rest of the stack is: Left shift starting from position 2.","breadcrumbs":"Design » Operand stack » Field operations » EQ","id":"164","title":"EQ"},"165":{"body":"Assume a is the element at the top of the stack. The EQZ operation computes b such that b=1 if a=0, and 0 otherwise. The diagram below illustrates this graphically. eqz Stack transition for this operation must satisfy the following constraints: s0′⋅s0=0 | degree=2 s0′−(1−s0⋅h0)=0 | degree=2 To satisfy the above constraints, the prover must populate the value of helper register h0 as follows: If s0=0, set h0=s01. Otherwise, set h0 to any value (e.g., 0). The effect on the rest of the stack is: No change starting from position 1.","breadcrumbs":"Design » Operand stack » Field operations » EQZ","id":"165","title":"EQZ"},"166":{"body":"The EXPACC operation pops top 4 elements from the top of the stack, performs a single round of exponent aggregation, and pushes the resulting 4 values onto the stack. The diagram below illustrates this graphically. expacc Stack transition for this operation must satisfy the following constraints: bit should be a binary. s0′2−s0′=0 | degree=2 The exp in the next frame should be the square of the exp in the current frame. s1′−s12=0 | degree=2 The value val in the helper register is computed correctly using the bit and exp in next and current frame respectively. h0−((s1−1)∗s0′+1)=0 | degree=2 The acc in the next frame is the product of val and acc in the current frame. s2′−s2∗h0=0 | degree=2 b in the next frame is the right shift of b in the current frame. s3′−(s3∗2+s0′)=0 | degree=1 The effect on the rest of the stack is: No change starting from position 4.","breadcrumbs":"Design » Operand stack » Field operations » EXPACC","id":"166","title":"EXPACC"},"167":{"body":"The EXT2MUL operation pops top 4 values from the top of the stack, performs mulitplication between the two extension field elements, and pushes the resulting 4 values onto the stack. The diagram below illustrates this graphically. ext2mul Stack transition for this operation must satisfy the following constraints: The first stack element should be unchanged in the next frame. s0′−s0=0 | degree=1 The second stack element should be unchanged in the next frame. s1′−s1=0 | degree=1 The third stack element should satisfy the following constraint. s2′−(s0+s1)⋅(s2+s3)+s0⋅s2=0 | degree=2 The fourth stack element should satisfy the following constraint. s3′−s1⋅s3+2⋅s0⋅s2=0 | degree=2 The effect on the rest of the stack is: No change starting from position 4.","breadcrumbs":"Design » Operand stack » Field operations » EXT2MUL","id":"167","title":"EXT2MUL"},"168":{"body":"In this section we describe semantics and AIR constraints of operations over u32 values (i.e., 32-bit unsigned integers) as they are implemented in Miden VM.","breadcrumbs":"Design » Operand stack » u32 operations » u32 Operations","id":"168","title":"u32 Operations"},"169":{"body":"Most operations described below require some number of 16-bit range checks (i.e., verifying that the value of a field element is smaller than 216). The number of required range checks varies between 2 and 4, depending on the operation. However, to simplify the constraint system, we force each relevant operation to consume exactly 4 range checks. To perform these range checks, the prover puts the values to be range-checked into helper registers h0,...,h3, and then divides the range checker bus column brange by a randomized product of these values. This operation is enforced via the following constraint: brange′⋅(α0+h0)⋅(α0+h1)⋅(α0+h2)⋅(α0+h3)=brange | degree=5 The above is just a partial constraint as it does not show the range checker's part of the constraint, which multiplies the required values into the bus column. It also omits the selector flag which is used to turn this constraint on only when executing relevant operations.","breadcrumbs":"Design » Operand stack » u32 operations » Range checks","id":"169","title":"Range checks"},"17":{"body":"As described here the Miden VM can consume public and secret inputs. Public inputs: operand_stack - can be supplied to the VM to initialize the stack with the desired values before a program starts executing. There is no limit on the number of stack inputs that can be initialized in this way, although increasing the number of public inputs increases the cost to the verifier. Secret (or nondeterministic) inputs: advice_stack - can be supplied to the VM. There is no limit on how much data the advice provider can hold. This is provided as a string array where each string entry represents a field element. advice_map - is supplied as a map of 64-character hex keys, each mapped to an array of numbers. The hex keys are interpreted as 4 field elements and the arrays of numbers are interpreted as arrays of field elements. merkle_store - the Merkle store is container that allows the user to define merkle_tree and sparse_merkle_tree data structures. merkle_tree - is supplied as an array of 64-character hex values where each value represents a leaf (4 elements) in the tree. sparse_merkle_tree - is supplied an an array of tuples of the form (number, 64-character hex string). The number represents the leaf index and the hex string represents the leaf value (4 elements). Check out the comparison example to see how secret inputs work. After a program finishes executing, the elements that remain on the stack become the outputs of the program, along with the overflow addresses (overflow_addrs) that are required to reconstruct the stack overflow table .","breadcrumbs":"Introduction » Usage » Inputs","id":"17","title":"Inputs"},"170":{"body":"Another primitive which is required by most of the operations described below is checking whether four 16-bit values form a valid field element. Assume t0, t1, t2, and t3 are known to be 16-bit values, and we want to verify that 248⋅t3+232⋅t2+216⋅t1+t0 is a valid field element. For simplicity, let's denote: vhi=216⋅t3+t2vlo=216⋅t1+t0 We can then impose the following constraint to verify element validity: (1−m⋅(232−1−vhi))⋅vlo=0 | degree=3 Where m is a value set non-deterministically by the prover. The above constraint should hold only if either of the following hold: vlo=0 vhi=232−1 To satisfy the latter equation, the prover needs to set m=(232−1−vhi)−1, which is possible only when vhi=232−1. This constraint is sufficient because modulus 264−232+1 in binary representation is 32 ones, followed by 31 zeros, followed by a single one: 1111111111111111111111111111111100000000000000000000000000000001 This implies that the largest possible 64-bit value encoding a valid field element would be 32 ones, followed by 32 zeros: 1111111111111111111111111111111100000000000000000000000000000000 Thus, for a 64-bit value to encode a valid field element, either the lower 32 bits must be all zeros, or the upper 32 bits must not be all ones (which is 232−1).","breadcrumbs":"Design » Operand stack » u32 operations » Checking element validity","id":"170","title":"Checking element validity"},"171":{"body":"Assume a is the element at the top of the stack. The U32SPLIT operation computes (b,c)←a, where b contains the lower 32 bits of a, and c contains the upper 32 bits of a. The diagram below illustrates this graphically. u32split To facilitate this operation, the prover sets values in h0,...,h3 to 16-bit limbs of a with h0 being the least significant limb. Thus, stack transition for this operation must satisfy the following constraints: s0=248⋅h3+232⋅h2+216⋅h1+h0 | degree=1 s1′=216⋅h1+h0 | degree=1 s0′=216⋅h3+h2 | degree=1 In addition to the above constraints, we also need to verify that values in h0,...,h3 are smaller than 216, which we can do using 16-bit range checks as described previously . Also, we need to make sure that values in h0,...,h3, when combined, form a valid field element, which we can do by putting a nondeterministic value m into helper register h4 and using the technique described here . The effect of this operation on the rest of the stack is: Right shift starting from position 1.","breadcrumbs":"Design » Operand stack » u32 operations » U32SPLIT","id":"171","title":"U32SPLIT"},"172":{"body":"Assume a and b are the elements at the top of the stack. The U32ASSERT2 verifies that both a and b are smaller than 232. The diagram below illustrates this graphically. u32assert2 To facilitate this operation, the prover sets values in h0 and h1 to low and high 16-bit limbs of a, and values in h2 and h3 to to low and high 16-bit limbs of b. Thus, stack transition for this operation must satisfy the following constraints: s0′=216⋅h3+h2 | degree=1 s1′=216⋅h1+h0 | degree=1 In addition to the above constraints, we also need to verify that values in h0,...,h3 are smaller than 216, which we can do using 16-bit range checks as described previously . The effect of this operation on the rest of the stack is: No change starting from position 0 - i.e., the state of the stack does not change.","breadcrumbs":"Design » Operand stack » u32 operations » U32ASSERT2","id":"172","title":"U32ASSERT2"},"173":{"body":"Assume a and b are the values at the top of the stack which are known to be smaller than 232. The U32ADD operation computes (c,d)←a+b, where c contains the low 32-bits of the result, and d is the carry bit. The diagram below illustrates this graphically. u32add To facilitate this operation, the prover sets values in h0, h1, and h2 to 16-bit limbs of a+b with h0 being the least significant limb. Value in h3 is set to 0. Thus, stack transition for this operation must satisfy the following constraints: s0+s1=232⋅h2+216⋅h1+h0 | degree=1 s0′=h2 | degree=1 s1′=216⋅h1+h0 | degree=1 In addition to the above constraints, we also need to verify that values in h0,...,h3 are smaller than 216, which we can do using 16-bit range checks as described previously . The effect of this operation on the rest of the stack is: No change starting from position 2.","breadcrumbs":"Design » Operand stack » u32 operations » U32ADD","id":"173","title":"U32ADD"},"174":{"body":"Assume a, b, c are the values at the top of the stack which are known to be smaller than 232. The U32ADD3 operation computes (d,e)←a+b+c, where c and d contains the low and the high 32-bits of the result respectively. The diagram below illustrates this graphically. u32add3 To facilitate this operation, the prover sets values in h0, h1, and h2 to 16-bit limbs of a+b+c with h0 being the least significant limb. Value in h3 is set to 0. Thus, stack transition for this operation must satisfy the following constraints: s0+s1+s2=232⋅h2+216⋅h1+h0 | degree=1 s0′=h2 | degree=1 s1′=216⋅h1+h0 | degree=1 In addition to the above constraints, we also need to verify that values in h0,...,h3 are smaller than 216, which we can do using 16-bit range checks as described previously . The effect of this operation on the rest of the stack is: Left shift starting from position 3.","breadcrumbs":"Design » Operand stack » u32 operations » U32ADD3","id":"174","title":"U32ADD3"},"175":{"body":"Assume a and b are the values at the top of the stack which are known to be smaller than 232. The U32SUB operation computes (c,d)←a−b, where c contains the 32-bit result in two's complement, and d is the borrow bit. The diagram below illustrates this graphically. u32sub To facilitate this operation, the prover sets values in h0 and h1 to the low and the high 16-bit limbs of a−b respectively. Values in h2 and h3 are set to 0. Thus, stack transition for this operation must satisfy the following constraints: s1=s0+s1′+232⋅s0′ | degree=1 s0′2−s0′=0 | degree=2 s1′=216⋅h1+h0 | degree=1 In addition to the above constraints, we also need to verify that values in h0,...,h3 are smaller than 216, which we can do using 16-bit range checks as described previously . The effect of this operation on the rest of the stack is: No change starting from position 2.","breadcrumbs":"Design » Operand stack » u32 operations » U32SUB","id":"175","title":"U32SUB"},"176":{"body":"Assume a and b are the values at the top of the stack which are known to be smaller than 232. The U32MUL operation computes (c,d)←a⋅b, where c and d contain the low and the high 32-bits of the result respectively. The diagram below illustrates this graphically. u32mul To facilitate this operation, the prover sets values in h0,...,h3 to 16-bit limbs of a⋅b with h0 being the least significant limb. Thus, stack transition for this operation must satisfy the following constraints: s0⋅s1=248⋅h3+232⋅h2+216⋅h1+h0 | degree=2 s1′=216⋅h1+h0 | degree=1 s0′=216⋅h3+h2 | degree=1 In addition to the above constraints, we also need to verify that values in h0,...,h3 are smaller than 216, which we can do using 16-bit range checks as described previously . Also, we need to make sure that values in h0,...,h3, when combined, form a valid field element, which we can do by putting a nondeterministic value m into helper register h4 and using the technique described here . The effect of this operation on the rest of the stack is: No change starting from position 2.","breadcrumbs":"Design » Operand stack » u32 operations » U32MUL","id":"176","title":"U32MUL"},"177":{"body":"Assume a, b, c are the values at the top of the stack which are known to be smaller than 232. The U32MADD operation computes (d,e)←a+b⋅c, where c and d contains the low and the high 32-bits of a+b⋅c. The diagram below illustrates this graphically. u32madd To facilitate this operation, the prover sets values in h0,...,h3 to 16-bit limbs of a+b⋅c with h0 being the least significant limb. Thus, stack transition for this operation must satisfy the following constraints: s0⋅s1+s2=248⋅h3+232⋅h2+216⋅h1+h0 | degree=2 s1′=216⋅h1+h0 | degree=1 s0′=216⋅h3+h2 | degree=1 In addition to the above constraints, we also need to verify that values in h0,...,h3 are smaller than 216, which we can do using 16-bit range checks as described previously . Also, we need to make sure that values in h0,...,h3, when combined, form a valid field element, which we can do by putting a nondeterministic value m into helper register h4 and using the technique described here . Note : that the above constraints guarantee the correctness of the operation iff a+b⋅c cannot overflow field modules (which is the case for the field with modulus 264−232+1). The effect of this operation on the rest of the stack is: Left shift starting from position 3.","breadcrumbs":"Design » Operand stack » u32 operations » U32MADD","id":"177","title":"U32MADD"},"178":{"body":"Assume a and b are the values at the top of the stack which are known to be smaller than 232. The U32DIV operation computes (c,d)←a/b, where c contains the quotient and d contains the remainder. The diagram below illustrates this graphically. u32div To facilitate this operation, the prover sets values in h0 and h1 to 16-bit limbs of a−c, and values in h2 and h3 to 16-bit limbs of b−d−1. Thus, stack transition for this operation must satisfy the following constraints: s1=s0⋅s1′+s0′ | degree=2 s1−s1′=216⋅h1+h0 | degree=1 s0−s0′−1=216⋅h2+h3 | degree=1 The second constraint enforces that s1′≤s1, while the third constraint enforces that s0′216), we can do over 4n arbitrary 16-bit range-checks. For short traces (25> In order to add a breakpoint, the user should insert a breakpoint instruction into the MASM file. This will generate a Noop operation that will be decorated with the debug break configuration. This is a provisory solution until the source mapping is implemented. The following example will halt on the third instruction of foo: proc.foo dup dup.2 breakpoint swap add.1\nend begin exec.foo\nend","breadcrumbs":"Development tooling » Debugger » Miden Debugger","id":"23","title":"Miden Debugger"},"230":{"body":"Some chiplets require the use of a virtual table to maintain and enforce the correctness of their internal state. Because the length of these virtual tables does not exceed the length of the chiplets themselves, a single virtual table called vtchip can be shared by all chiplets. Currently, the chiplets virtual table combines two virtual tables: the hash chiplet's sibling table the kernel ROM chiplet's kernel procedure table To combine these correctly, the running product column for this table must be constrained not only at the beginning and the end of the trace, but also where the hash chiplet ends and where the kernel ROM chiplet begins. These positions can be identified using the chiplet selector columns.","breadcrumbs":"Design » Chiplets » Chiplets virtual table","id":"230","title":"Chiplets virtual table"},"231":{"body":"The expected boundary values for each chiplet's portion of the virtual table must be enforced. This can be done as follows. For the sibling table to be properly constrained, the value of the running product column must be 1 when the sibling table starts and finishes. This can be achieved by: enforcing a boundary constraint for vtchip=1 at the first row using the the following transition constraint to enforce that the value is once again 1 at the last cycle of the hash chiplet. (s0′−s0)⋅(1−vtchip)=0 | degree=2 For the kernel procedure table to be properly constrained, the value must be 1 when it starts, and it must be equal to the product of all of the kernel ROM procedures when it finishes. This can be achieved by: enforcing a boundary constraint against the last row for the value of all of the kernel ROM procedures using the following transition constraint to enforce that when the active chiplet changes to the kernel ROM chiplet the value is 1. s0⋅s1⋅(s2′−s2)⋅(1−vtchip′)=0 | degree=4","breadcrumbs":"Design » Chiplets » Chiplets virtual table constraints","id":"231","title":"Chiplets virtual table constraints"},"232":{"body":"Miden VM \"offloads\" all hash-related computations to a separate hash processor . This chiplet supports executing the Rescue Prime Optimized hash function (or rather a specific instantiation of it) in the following settings: A single permutation of Rescue Prime Optimized. A simple 2-to-1 hash. A linear hash of n field elements. Merkle path verification. Merkle root update. The chiplet can be thought of as having a small instruction set of 11 instructions. These instructions are listed below, and examples of how these instructions are used by the chiplet are described in the following sections. Instruction Description HR Executes a single round of the VM's native hash function. All cycles which are not one less than a multiple of 8 execute this instruction. That is, the chiplet executes this instruction on cycles 0,1,2,3,4,5,6, but not 7, and then again, 8,9,10,11,12,13,14, but not 15 etc. BP Initiates computation of a single permutation, a 2-to-1 hash, or a linear hash of many elements. This instruction can be executed only on cycles which are multiples of 8, and it can also be executed concurrently with an HR instruction. MP Initiates Merkle path verification computation. This instruction can be executed only on cycles which are multiples of 8, and it can also be executed concurrently with an HR instruction. MV Initiates Merkle path verification for the \"old\" node value during Merkle root update computation. This instruction can be executed only on cycles which are multiples of 8, and it can also be executed concurrently with an HR instruction. MU Initiates Merkle path verification for the \"new\" node value during Merkle root update computation. This instruction can be executed only on cycles which are multiples of 8, and it can also be executed concurrently with an HR instruction. HOUT Returns the result of the currently running computation. This instruction can be executed only on cycles which are one less than a multiple of 8 (e.g. 7, 15 etc.). SOUT Returns the whole hasher state. This instruction can be executed only on cycles which are one less than a multiple of 8, and only if the computation was started using BP instruction. ABP Absorbs a new set of elements into the hasher state when computing a linear hash of many elements. This instruction can be executed only on cycles which are one less than a multiple of 8, and only if the computation was started using BP instruction. MPA Absorbs the next Merkle path node into the hasher state during Merkle path verification computation. This instruction can be executed only on cycles which are one less than a multiple of 8, and only if the computation was started using MP instruction. MVA Absorbs the next Merkle path node into the hasher state during Merkle path verification for the \"old\" node value during Merkle root update computation. This instruction can be executed only on cycles which are one less than a multiple of 8, and only if the computation was started using MV instruction. MUA Absorbs the next Merkle path node into the hasher state during Merkle path verification for the \"new\" node value during Merkle root update computation. This instruction can be executed only on cycles which are one less than a multiple of 8, and only if the computation was started using Mu instruction.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Hash chiplet","id":"232","title":"Hash chiplet"},"233":{"body":"Execution trace table of the chiplet consists of 16 trace columns and 3 periodic columns. The structure of the table is such that a single permutation of the hash function can be computed using 8 table rows. The layout of the table is illustrated below. hash_execution_trace The meaning of the columns is as follows: Three periodic columns k0, k1, and k2 are used to help select the instruction executed at a given row. All of these columns contain patterns which repeat every 8 rows. For k0 the pattern is 7 zeros followed by 1 one, helping us identify the last row in the cycle. For k1 the pattern is 6 zeros, 1 one, and 1 zero, which can be used to identify the second-to-last row in a cycle. For k2 the pattern is 1 one followed by 7 zeros, which can identify the first row in the cycle. Three selector columns s0, s1, and s2. These columns can contain only binary values (ones or zeros), and they are also used to help select the instruction to execute at a given row. Twelve hasher state columns h0,...,h11. These columns are used to hold the hasher state for each round of the hash function permutation. The state is laid out as follows: The first four columns (h0,...,h3) are reserved for capacity elements of the state. When the state is initialized for hash computations, h0 should be set to 0 if the number of elements to be hashed is a multiple of the rate width (8). Otherwise, h0 should be set to 1. h1 should be set to the domain value if a domain has been provided (as in the case of control block hashing ). All other capacity elements should be set to 0's. The next eight columns (h4,...,h11) are reserved for the rate elements of the state. These are used to absorb the values to be hashed. Once the permutation is complete, hash output is located in the first four rate columns (h4,...,h7). One index column i. This column is used to help with Merkle path verification and Merkle root update computations. In addition to the columns described above, the chiplet relies on two running product columns which are used to facilitate multiset checks (similar to the ones described here ). These columns are: bchip - which is used to tie the chiplet table with the main VM's stack and decoder. That is, values representing inputs consumed by the chiplet and outputs produced by the chiplet are multiplied into bchip, while the main VM stack (or decoder) divides them out of bchip. Thus, if the sets of inputs and outputs between the main VM stack and hash chiplet are the same, the value of bchip should be equal to 1 at the start and the end of the execution trace. p1 - which is used to keep track of the sibling table used for Merkle root update computations. Specifically, when a root for the old leaf value is computed, we add an entry for all sibling nodes to the table (i.e., we multiply p1 by the values representing these entries). When the root for the new leaf value is computed, we remove the entries for the nodes from the table (i.e., we divide p1 by the value representing these entries). Thus, if both computations used the same set of sibling nodes (in the same order), the sibling table should be empty by the time Merkle root update procedure completes (i.e., the value of p1 would be 1).","breadcrumbs":"Design » Chiplets » Hash Chiplet » Chiplet trace","id":"233","title":"Chiplet trace"},"234":{"body":"As mentioned above, chiplet instructions are encoded using a combination of periodic and selector columns. These columns can be used to compute a binary flag for each instruction. Thus, when a flag for a given instruction is set to 1, the chiplet executes this instruction. Formulas for computing instruction flags are listed below. Flag Value Notes frpr 1−k0 Set to 1 on the first 7 steps of every 8-step cycle. fbp k2⋅s0⋅(1−s1)⋅(1−s2) Set to 1 when selector flags are (1,0,0) on rows which are multiples of 8. fmp k2⋅s0⋅(1−s1)⋅s2 Set to 1 when selector flags are (1,0,1) on rows which are multiples of 8. fmv k2⋅s0⋅s1⋅(1−s2) Set to 1 when selector flags are (1,1,0) on rows which are multiples of 8. fmu k2⋅s0⋅s1⋅s2 Set to 1 when selector flags are (1,1,1) on rows which are multiples of 8. fhout k0⋅(1−s0)⋅(1−s1)⋅(1−s2) Set to 1 when selector flags are (0,0,0) on rows which are 1 less than a multiple of 8. fsout k0⋅(1−s0)⋅(1−s1)⋅s2 Set to 1 when selector flags are (0,0,1) on rows which are 1 less than a multiple of 8. fabp k0⋅s0⋅(1−s1)⋅(1−s2) Set to 1 when selector flags are (1,0,0) on rows which are 1 less than a multiple of 8. fmpa k0⋅s0⋅(1−s1)⋅s2 Set to 1 when selector flags are (1,0,1) on rows which are 1 less than a multiple of 8. fmva k0⋅s0⋅s1⋅(1−s2) Set to 1 when selector flags are (1,1,0) on rows which are 1 less than a multiple of 8. fmua k0⋅s0⋅s1⋅s2 Set to 1 when selector flags are (1,1,1) on rows which are 1 less than a multiple of 8. A few additional notes about flag values: With the exception of frpr, all flags are mutually exclusive. That is, if one flag is set to 1, all other flats are set to 0. With the exception of frpr, computing flag values involves 3 multiplications, and thus the degree of these flags is 4. We can also define a flag fout=k0⋅(1−s0)⋅(1−s1). This flag will be set to 1 when either fhout=1 or fsout=1 in the current row. We can define a flag fout′=k1⋅(1−s0′)⋅(1−s1′). This flag will be set to 1 when either fhout=1 or fsout=1 in the next row. We also impose the following restrictions on how values in selector columns can be updated: Values in columns s1 and s2 must be copied over from one row to the next, unless fout=1 or fout′=1 indicating the hout or sout flag is set for the current or the next row. Value in s0 must be set to 1 if fout=1 for the previous row, and to 0 if any of the flags fabp, fmpa, fmva, or fmua are set to 1 for the previous row. The above rules ensure that we must finish one computation before starting another, and we can't change the type of the computation before the computation is finished.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Instruction flags","id":"234","title":"Instruction flags"},"235":{"body":"","breadcrumbs":"Design » Chiplets » Hash Chiplet » Computation examples","id":"235","title":"Computation examples"},"236":{"body":"Computing a single permutation of Rescue Prime Optimized hash function involves the following steps: Initialize hasher state with 12 field elements. Apply Rescue Prime Optimized permutation. Return the entire hasher state as output. The chiplet accomplishes the above by executing the following instructions: [BP, HR] // init state and execute a hash round (concurrently)\nHR HR HR HR HR HR // execute 6 more hash rounds\nSOUT // return the entire state as output Execution trace for this computation would look as illustrated below. hash_1_permutation_trace In the above {a0,...,a11} is the input state of the hasher, and {b0,...,b11} is the output state of the hasher.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Single permutation","id":"236","title":"Single permutation"},"237":{"body":"Computing a 2-to-1 hash involves the following steps: Initialize hasher state with 8 field elements, setting the second capacity element to domain if the domain is provided (as in the case of control block hashing ) or else 0, and the remaining capacity elements to 0. Apply Rescue Prime Optimized permutation. Return elements [4,8) of the hasher state as output. The chiplet accomplishes the above by executing the following instructions: [BP, HR] // init state and execute a hash round (concurrently)\nHR HR HR HR HR HR // execute 6 more hash rounds\nHOUT // return elements 4, 5, 6, 7 of the state as output Execution trace for this computation would look as illustrated below. hash_2_to_1_hash In the above, we compute the following: {c0,c1,c2,c3}←hash({a0,a1,a2,a3},{b0,b1,b2,b3})","breadcrumbs":"Design » Chiplets » Hash Chiplet » Simple 2-to-1 hash","id":"237","title":"Simple 2-to-1 hash"},"238":{"body":"Computing a linear hash of n elements consists of the following steps: Initialize hasher state with the first 8 elements, setting the first capacity register to 0 if n is a multiple of the rate width (8) or else 1, and the remaining capacity elements to 0. Apply Rescue Prime Optimized permutation. Absorb the next set of elements into the state (up to 8 elements), while keeping capacity elements unchanged. Repeat steps 2 and 3 until all n elements have been absorbed. Return elements [4,8) of the hasher state as output. The chiplet accomplishes the above by executing the following instructions (for hashing 16 elements): [BP, HR] // init state and execute a hash round (concurrently)\nHR HR HR HR HR HR // execute 6 more hash rounds\nABP // absorb the next set of elements into the state\nHR HR HR HR HR HR HR // execute 7 hash rounds\nHOUT // return elements 4, 5, 6, 7 of the state as output Execution trace for this computation would look as illustrated below. hash_linear_hash_n In the above, the value absorbed into hasher state between rows 7 and 8 is the delta between values ti and si. Thus, if we define bi=ti−si for i∈[0,8), the above computes the following: {r0,r1,r2,r3}←hash(a0,...,a7,b0,...,b7)","breadcrumbs":"Design » Chiplets » Hash Chiplet » Linear hash of n elements","id":"238","title":"Linear hash of n elements"},"239":{"body":"Verifying a Merkle path involves the following steps: Initialize hasher state with the leaf and the first node of the path, setting all capacity elements to 0s. a. Also, initialize the index register to the leaf's index value. Apply Rescue Prime Optimized permutation. a. Make sure the index value doesn't change during this step. Copy the result of the hash to the next row, and absorb the next node of the Merkle path into the hasher state. a. Remove a single bit from the index, and use it to determine how to place the copied result and absorbed node in the state. Repeat steps 2 and 3 until all nodes of the Merkle path have been absorbed. Return elements [4,8) of the hasher state as output. a. Also, make sure the index value has been reduced to 0. The chiplet accomplishes the above by executing the following instructions (for Merkle tree of depth 3): [MP, HR] // init state and execute a hash round (concurrently)\nHR HR HR HR HR HR // execute 6 more hash rounds\nMPA // copy result & absorb the next node into the state\nHR HR HR HR HR HR HR // execute 7 hash rounds\nHOUT // return elements 4, 5, 6, 7 of the state as output Suppose we have a Merkle tree as illustrated below. This Merkle tree has 4 leaves, each of which consists of 4 field elements. For example, leaf a consists of elements a0,a1,a2,a3, leaf be consists of elements b0,b1,b2,b3 etc. hash_merkle_tree If we wanted to verify that leaf d is in fact in the tree, we'd need to compute the following hashes: r←hash(e,hash(c,d)) And if r=g, we can be convinced that d is in fact in the tree at position 3. Execution trace for this computation would look as illustrated below. hash_merkle_tree_trace In the above, the prover provides values for nodes c and e non-deterministically.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Verify Merkle path","id":"239","title":"Verify Merkle path"},"24":{"body":"The Miden Read–eval–print loop (REPL) is a Miden shell that allows for quick and easy debugging of Miden assembly. After the REPL gets initialized, you can execute any Miden instruction, undo executed instructions, check the state of the stack and memory at a given point, and do many other useful things! When the REPL is exited, a history.txt file is saved. One thing to note is that all the REPL native commands start with an ! to differentiate them from regular assembly instructions. Miden REPL can be started via the CLI repl command like so: ./target/optimized/miden repl","breadcrumbs":"Development tooling » REPL » Miden REPL","id":"24","title":"Miden REPL"},"240":{"body":"Updating a node in a Merkle tree (which also updates the root of the tree) can be simulated by verifying two Merkle paths: the path that starts with the old leaf and the path that starts with the new leaf. Suppose we have the same Merkle tree as in the previous example, and we want to replace node d with node d′. The computations we'd need to perform are: r←hash(e,hash(c,d))r′←hash(e,hash(c,d′)) Then, as long as r=g, and the same values were used for c and e in both computations, we can be convinced that the new root of the tree is r′. The chiplet accomplishes the above by executing the following instructions: // verify the old merkle path\n[MV, HR] // init state and execute a hash round (concurrently)\nHR HR HR HR HR HR // execute 6 more hash rounds\nMPV // copy result & absorb the next node into the state\nHR HR HR HR HR HR HR // execute 7 hash rounds\nHOUT // return elements 4, 5, 6, 7 of the state as output // verify the new merkle path\n[MU, HR] // init state and execute a hash round (concurrently)\nHR HR HR HR HR HR // execute 6 more hash rounds\nMPU // copy result & absorb the next node into the state\nHR HR HR HR HR HR HR // execute 7 hash rounds\nHOUT // return elements 4, 5, 6, 7 of the state as output The semantics of MV and MU instructions are similar to the semantics of MP instruction from the previous example (and MVA and MUA are similar to MPA) with one important difference: MV* instructions add the absorbed node (together with its index in the tree) to permutation column p1, while MU* instructions remove the absorbed node (together with its index in the tree) from p1. Thus, if the same nodes were used during both Merkle path verification, the state of p1 should not change. This mechanism is used to ensure that the same internal nodes were used in both computations.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Update Merkle root","id":"240","title":"Update Merkle root"},"241":{"body":"When describing AIR constraints, we adopt the following notation: for column x, we denote the value in the current row simply as x, and the value in the next row of the column as x′. Thus, all transition constraints described in this note work with two consecutive rows of the execution trace.","breadcrumbs":"Design » Chiplets » Hash Chiplet » AIR constraints","id":"241","title":"AIR constraints"},"242":{"body":"For selector columns, first we must ensure that only binary values are allowed in these columns. This can be done with the following constraints: s02−s0=0 | degree=2s12−s1=0 | degree=2s22−s2=0 | degree=2 Next, we need to make sure that unless fout=1 or fout′=1, the values in columns s1 and s2 are copied over to the next row. This can be done with the following constraints: (s1′−s1)⋅(1−fout′)⋅(1−fout)=0 | degree=7(s2′−s2)⋅(1−fout′)⋅(1−fout)=0 | degree=7 Next, we need to enforce that if any of fabp,fmpa,fmva,fmua flags is set to 1, the next value of s0 is 0. In all other cases, s0 should be unconstrained. These flags will only be set for rows that are 1 less than a multiple of 8 (the last row of each cycle). This can be done with the following constraint: s0′⋅(fabp+fmpa+fmva+fmua)=0 | degree=5 Lastly, we need to make sure that no invalid combinations of flags are allowed. This can be done with the following constraints: k0⋅(1−s0)⋅s1=0 | degree=3 The above constraints enforce that on every step which is one less than a multiple of 8, if s0=0, then s1 must also be set to 0. Basically, if we set s0=0, then we must make sure that either fhout=1 or fsout=1.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Selector columns constraints","id":"242","title":"Selector columns constraints"},"243":{"body":"Node index column i is relevant only for Merkle path verification and Merkle root update computations, but to simplify the overall constraint system, the same constraints will be imposed on this column for all computations. Overall, we want values in the index column to behave as follows: When we start a new computation, we should be able to set i to an arbitrary value. When a computation is finished, value in i must be 0. When we absorb a new node into the hasher state we must shift the value in i by one bit to the right. In all other cases value in i should not change. A shift by one bit to the right can be described with the following equation: i=2⋅i′+b, where b is the value of the bit which is discarded. Thus, as long as b is a binary value, the shift to the right is performed correctly, and this can be enforced with the following constraint: b2−b=0 Since we want to enforce this constraint only when a new node is absorbed into the hasher state, we'll define a flag for when this should happen as follows: fan=fmp+fmv+fmu+fmpa+fmva+fmua And then the full constraint would looks as follows: fan⋅(b2−b)=0 | degree=6 Next, to make sure when a computation is finished i=0, we can use the following constraint: fout⋅i=0 | degree=4 Finally, to make sure that the value in i is copied over to the next row unless we are absorbing a new row or the computation is finished, we impose the following constraint: (1−fan−fout)⋅(i′−i)=0 | degree=5 To satisfy these constraints for computations not related to Merkle paths (i.e., 2-to-1 hash and liner hash of elements), we can set i=0 at the start of the computation. This guarantees that i will remain 0 until the end of the computation.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Node index constraints","id":"243","title":"Node index constraints"},"244":{"body":"Hasher state columns h0,...,h11 should behave as follows: For the first 7 row of every 8-row cycle (i.e., when k0=0), we need to apply Rescue Prime Optimized round constraints to the hasher state. For brevity, we omit these constraints from this note. On the 8th row of every 8-row cycle, we apply the constraints based on which transition flag is set as described in the table below. Specifically, when absorbing the next set of elements into the state during linear hash computation (i.e., fabp=1), the first 4 elements (the capacity portion) are carried over to the next row. For j∈[0,4) this can be described as follows: fabp⋅(hj′−hj)=0 | degree=5 When absorbing the next node during Merkle path computation (i.e., fmp+fmv+fmu=1), the result of the previous hash (h4,...,h7) are copied over either to (h4′,...,h7′) or to (h8′,...,h11′) depending on the value of b, which is defined in the same way as in the previous section. For j∈[0,4) this can be described as follows: (fmp+fmv+fmu)⋅((1−b)⋅(hj+4′−hj+4)+b⋅(hj+8′−hj+4))=0 | degree=6 Note, that when a computation is completed (i.e., fout=1), the next hasher state is unconstrained.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Hasher state constraints","id":"244","title":"Hasher state constraints"},"245":{"body":"In this sections we describe constraints which enforce updates for multiset check columns bchip and p1. These columns can be updated only on rows which are multiples of 8 or 1 less than a multiple of 8. On all other rows the values in the columns remain the same. To simplify description of the constraints, we define the following variables. Below, we denote random values sent by the verifier after the prover commits to the main execution trace as α0, α1, α2 etc. m=oplabel+24⋅k0+25⋅k2vh=α0+α1⋅m+α2⋅(clk+1)+α3⋅iva=j=0∑3(αj+4⋅hj)vb=j=4∑7(αj+4⋅hj)vc=j=8∑11(αj+4⋅hj)vd=j=8∑11(αj⋅hj) In the above: m is a transition label , composed of the operation label and the periodic columns that uniquely identify each transition function. The values in the k0 and k2 periodic columns are included to identify the row in the hash cycle where the operation occurs. They serve to differentiate between operations that share selectors but occur at different rows in the cycle, such as BP, which uses oplinhash at the first row in the cycle to initiatiate a linear hash, and ABP, which uses oplinhash at the last row in the cycle to absorb new elements. vh is a common header which is a combination of the transition label, a unique row address, and the node index. For the unique row address, the clk column from the system component is used, but we add 1, because the system's clk column starts at 0. va, vb, vc are the first, second, and third words (4 elements) of the hasher state. vd is the third word of the hasher state but computed using the same α values as used for the second word. This is needed for computing the value of vleaf below to ensure that the same α values are used for the leaf node regardless of which part of the state the node comes from. Chiplets bus constraints As described previously, the chiplets bus bchip, implemented as a running product column, is used to tie the hash chiplet with the main VM's stack and decoder. When receiving inputs from or returning results to the stack (or decoder), the hash chiplet multiplies bchip by their respective values. On the other side, when sending inputs to the hash chiplet or receiving results from the chiplet, the stack (or decoder) divides bchip by their values. In the section below we describe only the hash chiplet side of the constraints (i.e., multiplying bchip by relevant values). We define the values which are to be multiplied into bchip for each operation as follows: When starting a new simple or linear hash computation (i.e., fbp=1) or when returning the entire state of the hasher (fsout=1), the entire hasher state is included into bchip: vall=vh+va+vb+vc When starting a Merkle path computation (i.e., fmp+fmv+fmu=1), we include the leaf of the path into bchip. The leaf is selected from the state based on value of b (defined as in the previous section): vleaf=vh+(1−b)⋅vb+b⋅vd When absorbing a new set of elements into the state while computing a linear hash (i.e., fabp=1), we include deltas between the last 8 elements of the hasher state (the rate) into bchip: vabp=vh+vb′+vc′−(vb+vc) When a computation is complete (i.e., fhout=1), we include the second word of the hasher state (the result) into bchip: vres=vh+vb Using the above values, we can describe the constraints for updating column bchip as follows. bchip′=bchip⋅((fbp+fsout)⋅vall+(fmp+fmv+fmu)⋅vleaf+fabp⋅vabp+fhout⋅vres+1−(fbp+fmp+fmv+fmu+fabp+fout)) The above constraint reduces to the following under various flag conditions: Condition Applied constraint fbp=1 bchip′=bchip⋅vall fsout=1 bchip′=bchip⋅vall fmp=1 bchip′=bchip⋅vleaf fmv=1 bchip′=bchip⋅vleaf fmu=1 bchip′=bchip⋅vleaf fabp=1 bchip′=bchip⋅vabp fhout=1 bchip′=bchip⋅vres Otherwise bchip′=bchip Note that the degree of the above constraint is 7. Sibling table constraints Note: Although this table is described independently, it is implemented as part of the chiplets virtual table , which combines all virtual tables required by the any of the chiplets into a single master table. As mentioned previously, the sibling table (represented by running column p1) is used to keep track of sibling nodes used during Merkle root update computations. For this computation, we need to enforce the following rules: When computing the old Merkle root, whenever a new sibling node is absorbed into the hasher state (i.e., fmv+fmva=1), an entry for this sibling should be included into p1. When computing the new Merkle root, whenever a new sibling node is absorbed into the hasher state (i.e., fmu+fmua=1), the entry for this sibling should be removed from p1. To simplify the description of the constraints, we use variables vb and vc defined above and define the value representing an entry in the sibling table as follows: vsibling=α0+α3⋅i+b⋅vb+(1−b)⋅vc Using the above value, we can define the constraint for updating p1 as follows: p1′⋅((fmv+fmva)⋅vsibling+1−(fmv+fmva))=p1⋅((fmu+fmua)⋅vsibling+1−(fmu+fmua)) The above constraint reduces to the following under various flag conditions: Condition Applied constraint fmv=1 p1′⋅vsibling=p1 fmva=1 p1′⋅vsibling=p1 fmu=1 p1′=p1⋅vsibling fmua=1 p1′=p1⋅vsibling Otherwise p1′=p1 Note that the degree of the above constraint is 7. To make sure computation of the old Merkle root is immediately followed by the computation of the new Merkle root, we impose the following constraint: (fbp+fmp+fmv)⋅(1−p1)=0 | degree=5 The above means that whenever we start a new computation which is not the computation of the new Merkle root, the sibling table must be empty. Thus, after the hash chiplet computes the old Merkle root, the only way to clear the table is to compute the new Merkle root. Together with boundary constraints enforcing that p1=1 at the first and last rows of the running product column which implements the sibling table, the above constraints ensure that if a node was included into p1 as a part of computing the old Merkle root, the same node must be removed from p1 as a part of computing the new Merkle root. These two boundary constraints are described as part of the chiplets virtual table constraints .","breadcrumbs":"Design » Chiplets » Hash Chiplet » Multiset check constraints","id":"245","title":"Multiset check constraints"},"246":{"body":"In this note we describe how to compute bitwise AND and XOR operations on 32-bit values and the constraints required for proving correct execution. Assume that a and b are field elements in a 64-bit prime field. Assume also that a and b are known to contain values smaller than 232. We want to compute a⊕b→z, where ⊕ is either bitwise AND or XOR, and z is a field element containing the result of the corresponding bitwise operation. First, observe that we can compute AND and XOR relations for single bit values as follows: and(a,b)=a⋅b xor(a,b)=a+b−2⋅a⋅b To compute bitwise operations for multi-bit values, we will decompose the values into individual bits, apply the operations to single bits, and then aggregate the bitwsie results into the final result. To perform this operation we will use a table with 12 columns, and computing a single AND or XOR operation will require 8 table rows. We will also rely on two periodic columns as shown below. bitwise_execution_trace In the above, the columns have the following meanings: Periodic columns k0 and k1. These columns contain values needed to switch various constraint on or off. k0 contains a repeating sequence of a single one, followed by seven zeros. k1 contains a repeating sequence of seven ones, followed by a single zero. Input columns a and b. On the first row of each 8-row cycle, the prover will set values in these columns to the upper 4 bits of the values to which a bitwise operation is to be applied. For all subsequent rows, we will append the next-most-significant 4-bit limb to each value. Thus, by the final row columns a and b will contain the full input values for the bitwise operation. Columns a0, a1, a2, a3, b0, b1, b2, b3 will contain lower 4 bits of their corresponding values. Output column zp. This column represents the value of column z for the prior row. For the first row, it is set to 0. Output column z. This column will be used to aggregate the results of bitwise operations performed over columns a0, a1, a2, a3, b0, b1, b2, b3. By the time we get to the last row in each 8-row cycle, this column will contain the final result.","breadcrumbs":"Design » Chiplets » Bitwise Chiplet » Bitwise chiplet","id":"246","title":"Bitwise chiplet"},"247":{"body":"Let's illustrate the above table on a concrete example. For simplicity, we'll use 16-bit values, and thus, we'll only need 4 rows to complete the operation (rather than 8 for 32-bit values). Let's say a=41851 (b1010_0011_0111_1011) and b=40426 (b1001_1101_1110_1010), then and(a,b)=33130 (b1000_0001_0110_1010). The table for this computation looks like so: a b x0 x1 x2 x3 y0 y1 y2 y3 zp z 10 9 0 1 0 1 1 0 0 1 0 8 163 157 1 1 0 0 1 0 1 1 8 129 2615 2526 1 1 1 0 0 1 1 1 129 2070 41851 40426 1 1 0 1 0 1 0 1 2070 33130 Here, in the first row, we set each of the a and b columns to the value of their most-significant 4-bit limb. The bit columns (a0..a3 and b0..b3) in the first row contain the lower 4 bits of their corresponding values (b1010 and b1001). Column z contains the result of bitwise AND for the upper 4 bits (b1000), while column zp contains that result for the prior row. With every subsequent row, we inject the next-most-significant 4 bits of each value into the bit columns, increase the a and b columns accordingly, and aggregate the result of bitwise AND into the z column, adding it to 24 times the value of z in the previous row. We set column zp to be the value of z in the prior row. By the time we get to the last row, the z column contains the result of the bitwise AND, while columns a and b contain their original values.","breadcrumbs":"Design » Chiplets » Bitwise Chiplet » Example","id":"247","title":"Example"},"248":{"body":"AIR constraints needed to ensure the correctness of the above table are described below. We also add one more column s to the execution trace, to allow us to select between two bitwise operations (U32AND and U32XOR).","breadcrumbs":"Design » Chiplets » Bitwise Chiplet » Constraints","id":"248","title":"Constraints"},"249":{"body":"The Bitwise chiplet supports two operations with the following operation selectors: U32AND: s=0 U32XOR: s=1 The constraints must require that the selectors be binary and stay the same throughout the cycle: s2−s=0 | degree=2 k1⋅(s′−s)=0 | degree=2","breadcrumbs":"Design » Chiplets » Bitwise Chiplet » Selectors","id":"249","title":"Selectors"},"25":{"body":"All Miden instructions mentioned in the Miden Assembly sections are valid. One can either input instructions one by one or multiple instructions in one input. For example, the below two commands will result in the same output. >> push.1\n>> push.2\n>> push.3 push.1 push.2 push.3 To execute a control flow operation, one must write the entire statement in a single line with spaces between individual operations. repeat.20 pow2\nend The above example should be written as follows in the REPL tool: repeat.20 pow2 end","breadcrumbs":"Development tooling » REPL » Miden assembly instruction","id":"25","title":"Miden assembly instruction"},"250":{"body":"We need to make sure that inputs a and b are decomposed correctly into their individual bits. To do this, first, we need to make sure that columns a0, a1, a2, a3, b0, b1, b2, b3, can contain only binary values (0 or 1). This can be accomplished with the following constraints (for i ranging between 0 and 3): ai2−ai=0 | degree=2 bi2−bi=0 | degree=2 Then, we need to make sure that on the first row of every 8-row cycle, the values in the columns a and b are exactly equal to the aggregation of binary values contained in the individual bit columns ai, and bi. This can be enforced with the following constraints: k0⋅(a−i=0∑3(2i⋅ai))=0 | degree=2 k0⋅(b−i=0∑3(2i⋅bi))=0 | degree=2 The above constraints enforce that when k0=1, a=∑i=03(2i⋅ai) and b=∑i=03(2i⋅bi). Lastly, we need to make sure that for all rows in an 8-row cycle except for the last one, the values in a and b columns are increased by the values contained in the individual bit columns ai and bi. Denoting a as the value of column a in the current row, and a′ as the value of column a in the next row, we can enforce these conditions as follows: k1⋅(a′−(a⋅16+i=0∑3(2i⋅ai′)))=0 | degree=2 k1⋅(b′−(b⋅16+i=0∑3(2i⋅bi′)))=0 | degree=2 The above constraints enforce that when k1=1 , a′=16⋅a+∑i=03(2i⋅ai′) and b′=16⋅b+∑i=03(2i⋅bi′).","breadcrumbs":"Design » Chiplets » Bitwise Chiplet » Input decomposition","id":"250","title":"Input decomposition"},"251":{"body":"To ensure correct aggregation of operations over individual bits, first we need to ensure that in the first row, the aggregated output value of the previous row should be 0. k0⋅zp=0 | degree=2 Next, we need to ensure that for each row except the last, the aggregated output value must equal the previous aggregated output value in the next row. k1⋅(z−zp′)=0 | degree=2 Lastly, we need to ensure that for all rows the value in the z column is computed by multiplying the previous output value (from the zp column in the current row) by 16 and then adding it to the bitwise operation applied to the row's set of bits of a and b. The entire constraint must also be multiplied by the operation selector flag to ensure it is only applied for the appropriate operation. For U32AND, this is enforced with the following constraint: (1−s)⋅(z−(zp⋅16+i=0∑3(2i⋅ai⋅bi)))=0 | degree=3 For U32XOR, this is enforced with the following constraint: s⋅(z−(zp⋅16+i=0∑3(2i⋅(ai+bi−2⋅ai⋅bi))))=0 | degree=3","breadcrumbs":"Design » Chiplets » Bitwise Chiplet » Output aggregation","id":"251","title":"Output aggregation"},"252":{"body":"To simplify the notation for describing bitwise constraints on the chiplets bus, we'll first define variable u, which represents how a, b, and z in the execution trace are reduced to a single value. Denoting the random values received from the verifier as α0,α1, etc., this can be achieved as follows. u=α0+α1⋅opbit+α2⋅a+α3⋅b+α4⋅z Where, opbit is the unique operation label of the bitwise operation. The request side of the constraint for the bitwise operation is described in the stack bitwise operation section . To provide the results of bitwise operations to the chiplets bus, we want to include values of a, b and z at the last row of the cycle. First, we'll define another intermediate variable vi. It will include u into the product when k1=0. (ui represents the value of u for row i of the trace.) vi=(1−k1)⋅ui Then, setting m=1−k1, we can compute the permutation product from the bitwise chiplet as follows: i=0∏n(vi⋅mi+1−mi) The above ensures that when 1−k1=0 (which is true for all rows in the 8-row cycle except for the last one), the product does not change. Otherwise, vi gets included into the product. The response side of the bus communication can be enforced with the following constraint: bchip′=bchip⋅(vi⋅mi+1−mi) | degree=4","breadcrumbs":"Design » Chiplets » Bitwise Chiplet » Chiplets bus constraints","id":"252","title":"Chiplets bus constraints"},"253":{"body":"Miden VM supports linear read-write random access memory. This memory is word-addressable, meaning, four values are located at each address, and we can read and write values to/from memory in batches of four. Each value is a field element in a 64-bit prime field with modulus 264−232+1. Memory address can be any field element. In this note we describe the rational for selecting the above design and describe AIR constraints needed to support it. The design makes extensive use of 16-bit range checks. An efficient way of implementing such range checks is described here .","breadcrumbs":"Design » Chiplets » Memory Chiplet » Memory chiplet","id":"253","title":"Memory chiplet"},"254":{"body":"The simplest (and most efficient) alternative to the above design is contiguous write-once memory. To support such memory, we need to allocate just two trace columns as illustrated below. memory_alternative_design In the above, addr column holds memory address, and value column holds the field element representing the value stored at this address. Notice that some rows in this table are duplicated. This is because we need one row per memory access (either read or write operation). In the example above, value b was first stored at memory address 1, and then read from this address. The AIR constraints for this design are very simple. First, we need to ensure that values in the addr column either remain the same or are incremented by 1 as we move from one row to the next. This can be achieved with the following constraint: (a′−a)⋅(a′−a−1)=0 where a is the value in addr column in the current row, and a′ is the value in this column in the next row. Second, we need to make sure that if the value in the addr column didn't change, the value in the value column also remained the same (i.e., a value stored in a given address can only be set once). This can be achieved with the following constraint: (v′−v)⋅(a′−a−1)=0 where v is the value in value column at the current row, and v′ is the value in this column in the next row. In addition to the above constraints we would also need to impose constraints needed for permutation checks, but we omit these constraints here because they are needed for all designs described in this note. As mentioned above, this approach is very efficient: each memory access requires just 2 trace cells.","breadcrumbs":"Design » Chiplets » Memory Chiplet » Alternative designs","id":"254","title":"Alternative designs"},"255":{"body":"Write-once memory is tricky to work with, and many developers may need to climb a steep learning curve before they become comfortable working in this model. Thus, ideally, we'd want to support read-write memory. To do this, we need to introduce additional columns as illustrated below. memory_read_write In the above, we added clk column, which keeps track of the clock cycle at which memory access happened. We also need to differentiate between memory reads and writes. To do this, we now use two columns to keep track of the value: old val contains the value stored at the address before the operation, and new val contains the value after the operation. Thus, if old val and new val are the same, it was a read operation. If they are different, it was a write operation. The AIR constraints needed to support the above structure are as follows. We still need to make sure memory addresses are contiguous: (a′−a)⋅(a′−a−1)=0 Whenever memory address changes, we want to make sure that old val is set to 0 (i.e., our memory is always initialized to 0). This can be done with the following constraint: (a′−a)⋅vold′=0 On the other hand, if memory address doesn't change, we want to make sure that new val in the current row is the same as old val in the next row. This can be done with the following constraint: (1+a−a′)⋅(vnew−vold′)=0 Lastly, we need to make sure that for the same address values in clk column are always increasing. One way to do this is to perform a 16-bit range check on the value of (i′−i−1), where i is the reference to clk column. However, this would mean that memory operations involving the same address must happen within 65536 VM cycles from each other. This limitation would be difficult to enforce statically. To remove this limitation, we need to add two more columns as shown below: memory_limitation_diagram In the above column d0 contains the lower 16 bits of (i′−i−1) while d1 contains the upper 16 bits. The constraint needed to enforces this is as follows: (1+a−a′)⋅((i′−i−1)−(216⋅d1′+d0′))=0 Additionally, we need to apply 16-bit range checks to columns d0 and d1. Overall, the cost of reading or writing a single element is now 6 trace cells and 2 16-bit range-checks.","breadcrumbs":"Design » Chiplets » Memory Chiplet » Read-write memory","id":"255","title":"Read-write memory"},"256":{"body":"Requiring that memory addresses are contiguous may also be a difficult limitation to impose statically. To remove this limitation, we need to introduce one more column as shown below: memory_non_contiguous_memory In the above, the prover sets the value in the new column t to 0 when the address doesn't change, and to 1/(a′−a) otherwise. To simplify constraint description, we'll define variable n computed as follows: n=(a′−a)⋅t′ Then, to make sure the prover sets the value of t correctly, we'll impose the following constraints: n2−n=0(1−n)⋅(a′−a)=0 The above constraints ensure that n=1 whenever the address changes, and n=0 otherwise. We can then define the following constraints to make sure values in columns d0 and d1 contain either the delta between addresses or between clock cycles. Condition Constraint Comments n=1 (a′−a)−(216⋅d1′+d0′)=0 When the address changes, columns d0 and d1 at the next row should contain the delta between the old and the new address. n=0 (i′−i−1)−(216⋅d1′+d0′)=0 When the address remains the same, columns d0 and d1 at the next row should contain the delta between the old and the new clock cycle. We can combine the above constraints as follows: (n⋅(a′−a)+(1−n)⋅(i′−i−1))−(216⋅d1′+d0′)=0 The above constraint, in combination with 16-bit range checks against columns d0 and d1 ensure that values in addr and clk columns always increase monotonically, and also that column addr may contain duplicates, while values in clk column must be unique for a given address.","breadcrumbs":"Design » Chiplets » Memory Chiplet » Non-contiguous memory","id":"256","title":"Non-contiguous memory"},"257":{"body":"In many situations it may be desirable to assign memories to different context. For example, when making a cross-contract calls, memories of the caller and the callee should be separate. That is, caller should not be able to access the memory of the callee and vice-versa. To accommodate this feature, we need to add one more column as illustrated below. memory_context_separation This new column ctx should behave similarly to the address column: values in it should increase monotonically, and there could be breaks between them. We also need to change how the prover populates column t: If the context changes, t should be set to the inverse (c′−c), where c is a reference to column ctx. If the context remains the same but the address changes, column t should be set to the inverse of (a′−a). Otherwise, column t should be set to 0. To simplify description of constraints, we'll define two variables n0 and n1 as follows: n0=(c′−c)⋅t′n1=(a′−a)⋅t′ Thus, n0=1 when the context changes, and 0 otherwise. Also, (1−n0)⋅n1=1 when context remains the same and address changes, and 0 otherwise. To make sure the prover sets the value of column t correctly, we'll need to impose the following constraints: n02−n0=0(1−n0)⋅(c′−c)=0(1−n0)⋅(n12−n1)=0(1−n0)⋅(1−n1)⋅(a′−a)=0 We can then define the following constraints to make sure values in columns d0 and d1 contain the delta between contexts, between addresses, or between clock cycles. Condition Constraint Comments n0=1 (c′−c)−(216⋅d1′+d0′)=0 When the context changes, columns d0 and d1 at the next row should contain the delta between the old and the new contexts. n0=0 n1=1 (a′−a)−(216⋅d1′+d0′)=0 When the context remains the same but the address changes, columns d0 and d1 at the next row should contain the delta between the old and the new addresses. n0=0 n1=0 (i′−i−1)−(216⋅d1′+d0′)=0 When both the context and the address remain the same, columns d0 and d1 at the next row should contain the delta between the old and the new clock cycle. We can combine the above constraints as follows: (n0⋅(c′−c)+(1−n0)⋅(n1⋅(a−a′)+(1−n1)⋅(i′−i−1)))−(216⋅d1′+d0′)=0 The above constraint, in combination with 16-bit range checks against columns d0 and d1 ensure that values in ctx, addr, and clk columns always increase monotonically, and also that columns ctx and addr may contain duplicates, while the values in column clk must be unique for a given combination of ctx and addr. Notice that the above constraint has degree 5.","breadcrumbs":"Design » Chiplets » Memory Chiplet » Context separation","id":"257","title":"Context separation"},"258":{"body":"While the approach described above works, it comes at significant cost. Reading or writing a single value requires 8 trace cells and 2 16-bit range checks. Assuming a single range check requires roughly 2 trace cells, the total number of trace cells needed grows to 12. This is about 6x worse the simple contiguous write-once memory described earlier. Miden VM frequently needs to deal with batches of 4 field elements, which we call words . For example, the output of Rescue Prime Optimized hash function is a single word. A single 256-bit integer value can be stored as two words (where each element contains one 32-bit value). Thus, we can optimize for this common use case by making the memory word-addressable . That is 4 field elements are located at each memory address, and we can read and write elements to/from memory in batches of four. The layout of Miden VM memory table is shown below: memory_miden_vm_layout where: s0 is a selector column which is set to 1 for read operations and 0 for write operations. s1 is a selector oclumn which is set to 1 when previously accessed memory is being read and 0 otherwise. In other words, it is set to 1 only when the context and address are the same as they were in the previous row and the s0 operation selector is set to 1 (indicating a read). ctx contains context ID. Values in this column must increase monotonically but there can be gaps between two consecutive values of up to 232. Also, two consecutive values can be the same. In AIR constraint description below, we refer to this column as c. addr contains memory address. Values in this column must increase monotonically for a given context but there can be gaps between two consecutive values of up to 232. Also, two consecutive values can be the same. In AIR constraint description below, we refer to this column as a. clk contains clock cycle at which the memory operation happened. Values in this column must increase monotonically for a given context and memory address but there can be gaps between two consecutive values of up to 232. In AIR constraint description below, we refer to this column as i. v0, v1, v2, v3 columns contain field elements stored at a given context/address/clock cycle after the memory operation. Columns d0 and d1 contain lower and upper 16 bits of the delta between two consecutive context IDs, addresses, or clock cycles. Specifically: When the context changes, these columns contain (c′−c). When the context remains the same but the address changes, these columns contain (a′−a). When both the context and the address remain the same, these columns contain (i′−i−1). Column t contains the inverse of the delta between two consecutive context IDs, addresses, or clock cycles. Specifically: When the context changes, this column contains the inverse of (c′−c). When the context remains the same but the address changes, this column contains the inverse of (a′−a). When both the context and the address remain the same, this column contains the inverse of (i′−i−1). For every memory access operation (i.e., read or write), a new row is added to the memory table. For read operations, s0 is set to 1. If neither ctx nor addr have changed, then s1 is set to 1 and the v columns are set to equal the values from the previous row. If ctx or addr have changed, then s1 is set to 0 and the v columns are initialized to 0. For write operations, the values may be different, and both selector columns s0 and s1 are set to 0. The amortized cost of reading or writing a single value is between 4 and 5 trace cells (this accounts for the trace cells needed for 16-bit range checks). Thus, from performance standpoint, this approach is roughly 2.5x worse than the simple contiguous write-once memory described earlier. However, our view is that this trade-off is worth it given that this approach provides read-write memory, context separation, and eliminates the contiguous memory requirement.","breadcrumbs":"Design » Chiplets » Memory Chiplet » Miden approach","id":"258","title":"Miden approach"},"259":{"body":"To simplify description of constraints, we'll define two variables n0 and n1 as follows: n0=Δc⋅t′n1=Δa⋅t′ Where Δc=c′−c and Δa=a′−a. To make sure the prover sets the value of column t correctly, we'll need to impose the following constraints: n02−n0=0 | degree=4 (1−n0)⋅Δc=0 | degree=3 (1−n0)⋅(n12−n1)=0 | degree=6 (1−n0)⋅(1−n1)⋅Δa=0 | degree=5 The above constraints guarantee that when context changes, n0=1. When context remains the same but address changes, (1−n0)⋅n1=1. And when neither the context nor the address change, (1−n0)⋅(1−n1)=1. To enforce the values of the selector columns, we first require that they both contain only binary values. s02−s0=0 | degree=2 s12−s1=0 | degree=2 Then we require that s1 is always set to 1 during read operations when the context and address did not change and to 0 in all other cases. (1−n0)⋅(1−n1)⋅s0′⋅(1−s1′)=0 | degree=6 (n0+(1−n0)⋅n1+(1−s0′))⋅s1′=0 | degree=5 The first constraint enforces that s_1 is 1 when the operation is a read and ctx and addr are both unchanged. The second constraint enforces that when either the context changed, the address changed, or the operation is a write, then s_1 is set to 0. To enforce the values of context ID, address, and clock cycle grow monotonically as described in the previous section, we define the following constraint. (n0⋅Δc+(1−n0)⋅(n1⋅Δa+(1−n1)⋅Δi))−(216⋅d1′+d0′)=0 | degree=5 Where Δi=i′−i−1. In addition to this constraint, we also need to make sure that values in registers d0 and d1 are less than 216, and this can be done with permutation-based range checks. Next, we need to make sure that values at a given memory address are always initialized to 0. This can be done with the following constraint: s0⋅(1−s1)⋅vi=0 for i∈{0,1,2,3} | degree=3 Thus, when the operation is a read and either the context changes or the address changes, values in the vi columns are guaranteed to be zeros. Lastly, we need to make sure that for the same context/address combination, the vi columns of the current row are equal to the corresponding vi columns of the next row. This can be done with the following constraints: s1⋅(vi′−vi)=0 for i∈{0,1,2,3} | degree=2 Chiplets bus constraints Communication between the memory chiplet and the stack is accomplished via the chiplets bus bchip. To respond to memory access requests from the stack, we need to divide the current value in bchip by the value representing a row in the memory table. This value can be computed as follows: vmem=α0+α1⋅opmem+α2⋅c+α3⋅a+α4⋅i+j=0∑3(αj+5⋅vj) Where, opmem is the unique operation label of the memory access operation. To ensure that values of memory table rows are included into the chiplets bus, we impose the following constraint: bchip′=bchip⋅vmem | degree=2 On the stack side, for every memory access request, a corresponding value is divided out of the bchip column. Specifics of how this is done are described here .","breadcrumbs":"Design » Chiplets » Memory Chiplet » AIR constraints","id":"259","title":"AIR constraints"},"26":{"body":"The !help command prints out all the available commands in the REPL tool.","breadcrumbs":"Development tooling » REPL » !help","id":"26","title":"!help"},"260":{"body":"The kernel ROM enables executing predefined kernel procedures. These procedures are always executed in the root context and can only be accessed by a SYSCALL operation. The chiplet tracks and enforces correctness of all kernel procedure calls as well as maintaining a list of all the procedures defined for the kernel, whether they are executed or not. More background about Miden VM execution contexts can be found here .","breadcrumbs":"Design » Chiplets » Kernel ROM Chiplet » Kernel ROM chiplet","id":"260","title":"Kernel ROM chiplet"},"261":{"body":"The kernel ROM table consists of 6 columns. kernel_rom_execution_trace The meaning of columns in the above is as follows: Column s0 specifies whether the value in the row should be included into the chiplets bus bchip. addr is a row address column which starts out at 0 and must either remain the same or be incremented by 1 with every row. r0,...,r3 are contain the roots of the kernel functions. The values in these columns can change only when the value in the addr column changes. If the addr column remains the same, the values in the r columns must also remain the same.","breadcrumbs":"Design » Chiplets » Kernel ROM Chiplet » Kernel ROM trace","id":"261","title":"Kernel ROM trace"},"262":{"body":"The following constraints are required to enforce correctness of the kernel ROM trace. For convenience, let's define Δaddr=addr′−addr. The s0 column must be binary. s02−s0=0 | degree=2 The value in the addr column must either stay the same or increase by 1. Δaddr⋅(1−Δaddr)=0 | degree=2 Finally, if the addr column stays the same then the kernel procedure root must not change. This can be achieved by enforcing the following constraint against each of the four procedure root columns: (1−Δaddr)⋅(ri′−ri)=0 | degree=2 These constraints on addr should not be applied to the very last row of the kernel ROM's execution trace, since we do not want to enforce a value that would conflict with the first row of a subsequent chiplet (or padding). Therefore we can create a special virtual flag for this constraint using the chip_s3 selector column from the chiplets module that selects for the kernel ROM chiplet. The modified constraints which should be applied are the following: (1−chip_s3′)⋅Δaddr⋅(1−Δaddr)=0 | degree=3 (1−chip_s3′)⋅(1−Δaddr)⋅(ri′−ri)=0 | degree=3 Note: these constraints should also be multiplied by chiplets module's selector flag for the kernel ROM chiplet, as is true for all constraints in this chiplet.","breadcrumbs":"Design » Chiplets » Kernel ROM Chiplet » Constraints","id":"262","title":"Constraints"},"263":{"body":"The chiplets bus is used to keep track of all kernel function calls. To simplify the notation for describing kernel ROM constraints on the chiplets bus, we'll first define variable u, which represents how each kernel procedure in the kernel ROM's execution trace is reduced to a single value. Denoting the random values received from the verifier as α0,α1, etc., this can be achieved as follows. v=α0+α1⋅opkrom+i=0∑3(αi+2⋅ri) Where, opkrom is the unique operation label of the kernel procedure call operation. The request side of the constraint for the operation is enforced during program block hashing of the SYSCALL operation . To provide accessed kernel procedures to the chiplets bus, we must send the kernel procedure to the bus every time it is called, which is indicated by the s0 column. bchip′=bchip⋅(s0⋅v+1−s0) | degree=3 Thus, when s0=0 this reduces to bchip′=bchip, but when s0=1 it becomes bchip′=bchip⋅u.","breadcrumbs":"Design » Chiplets » Kernel ROM Chiplet » Chiplets bus constraints","id":"263","title":"Chiplets bus constraints"},"264":{"body":"Note: Although this table is described independently, it is implemented as part of the chiplets virtual table , which combines all virtual tables required by the any of the chiplets into a single master table. This kernel procedure table keeps track of all unique kernel function roots. The values in this table will be updated only when the value in the address column changes. The row value included into vtchip is: v=α0+α1⋅addr+i=0∑3(αi+2⋅ri) The constraint against vtchip is: vtchip′=vtchip⋅(Δaddr⋅v+1−Δaddr) | degree=3 Thus, when Δaddr=0, the above reduces to vtchip′=vtchip, but when Δaddr=1, the above becomes vtchip′=vtchip⋅v. We also need to impose boundary constraints to make sure that running product column implementing the kernel procedure table is equal to 1 when the kernel procedure table begins and to the product of all unique kernel functions when it ends. The last boundary constraint means that the verifier only needs to know which kernel was used, but doesn't need to know which functions were invoked within the kernel. These two constraints are described as part of the chiplets virtual table constraints .","breadcrumbs":"Design » Chiplets » Kernel ROM Chiplet » Kernel procedure table constraints","id":"264","title":"Kernel procedure table constraints"},"265":{"body":"Zero knowledge virtual machines frequently make use of lookup arguments to enable performance optimizations. Miden VM uses multiset checks, and a brief introduction to them can be found here . In Miden VM, multiset checks are used for two purposes: To prove the consistency of intermediate values that must persist between different cycles of the trace, without storing the full data in the execution trace (which would require adding more columns to the trace). To prove correct interaction between two independent sections of the execution trace, e.g., between the main trace where the result of some operation is required, but would be expensive to compute, and a specialized component which can perform that operation cheaply. The first is achieved using virtual tables of data, where we add a row at some cycle in the trace and remove it at a later cycle when it is needed again. Instead of maintaining the entire table in the execution trace, multiset checks allow us to prove data consistency of this table using one running product column. The second is done by reducing each operation to a lookup value and then using a communication bus , implemented as a running product column, to provably connect the two sections of the trace.","breadcrumbs":"Design » Multiset checks » Multiset checks","id":"265","title":"Multiset checks"},"266":{"body":"Although the multiset equality check can be thought of as comparing multiset equality between two vectors a and b, in Miden VM it is implemented as a single running product column in the following way: The running product column is initialized to a value x at the beginning of the trace. (We typically use x=1.) All values of a are multiplied into the running product column. All values of b are divided out of the running product column. If a and b were multiset equal, then the running product column will equal x at the end of the trace. Running product columns are computed using a set of random values α0, α1,... sent to the prover by the verifier after the prover commits to the execution trace of the program. Length of running product columns Running product columns are computed by including information from the current row of the main execution trace into the next row of the running product column. Thus, in order to ensure that the trace is long enough to give the running product column space for its final value, a padding row may be required at the end of the trace of the component upon which the running product column depends. This is true when the data in the main trace could go all the way to the end of the trace, such as in the case of the range checker. Cost of running product columns It is important to note that depending on the field in which we operate, a running product column may actually require more than one trace column. This is specifically true for small fields. Since Miden uses a 64-bit field, each running product column needs to be represented by 2 columns to achieve ~100-bit security and by 3 columns to achieve ~128-bit security.","breadcrumbs":"Design » Multiset checks » Running product columns","id":"266","title":"Running product columns"},"267":{"body":"Virtual tables can be used to store intermediate data which is computed at one cycle and used at a different cycle. When the data is computed, the row is added to the table, and when it is used later, the row is deleted from the table. Thus, all that needs to be proved is the data consistency between the row that was added and the row that was deleted. The consistency of a virtual table can be proved with a single trace column p, which keeps a running product of rows that were inserted into and deleted from the table. This is done by reducing each row to a single value, multiplying the value into p when the row is inserted, and dividing the value out of p when the row is removed. Thus, at any step of the computation, p will contain a product of all rows currently in the table. The initial value of p is set to 1. Thus, if the table is empty by the time Miden VM finishes executing a program (we added and then removed exactly the same set of rows), the final value of p will also be equal to 1. The initial and final values are enforced via boundary constraints.","breadcrumbs":"Design » Multiset checks » Virtual tables","id":"267","title":"Virtual tables"},"268":{"body":"To compute a product of rows, we'll first need to reduce each row to a single value. This can be done as follows. Let t0,t1,t2,... be columns in the virtual table, and assume the verifier sends a set of random values α0, α1,... to the prover after the prover commits to the execution trace of the program. The prover reduces row i in the table to a single value ri as: ri=α0+α1⋅t0,i+α2⋅t1,i+α3⋅t2,i+... Then, when row i is added to the table, we'll update the value in the p column like so: p′=p⋅ri Analogously, when row i is removed from the table, we'll update the value in column p like so: p′=rip","breadcrumbs":"Design » Multiset checks » Computing a virtual table's trace column","id":"268","title":"Computing a virtual table's trace column"},"269":{"body":"Miden VM currently makes use of 6 virtual tables across 4 components: Stack: Overflow table Decoder: Block stack table Block hash table Op group table Chiplets: Chiplets virtual table , which combines the following two tables into one: Hash chiplet sibling table Kernel ROM chiplet procedure table","breadcrumbs":"Design » Multiset checks » Virtual tables in Miden VM","id":"269","title":"Virtual tables in Miden VM"},"27":{"body":"The !program command prints out the entire Miden program being executed. E.g., in the below scenario: >> push.1.2.3.4\n>> repeat.16 pow2 end\n>> u32checked_add >> !program\nbegin push.1.2.3.4 repeat.16 pow2 end u32checked_add\nend","breadcrumbs":"Development tooling » REPL » !program","id":"27","title":"!program"},"270":{"body":"One strategy for improving the efficiency of a zero knowledge virtual machine is to use specialized components for complex operations and have the main circuit “offload” those operations to the corresponding components by specifying inputs and outputs and allowing the proof of execution to be done by the dedicated component instead of by the main circuit. These specialized components are designed to prove the internal correctness of the execution of the operations they support. However, in isolation they cannot make any guarantees about the source of the input data or the destination of the output data. In order to prove that the inputs and outputs specified by the main circuit match the inputs and outputs provably executed in the specialized component, some kind of provable communication bus is needed. This bus is typically implemented as some kind of lookup argument, and in Miden VM in particular we use multiset checks.","breadcrumbs":"Design » Multiset checks » Communication buses","id":"270","title":"Communication buses"},"271":{"body":"A bus can be implemented as a single trace column b where a request can be sent to a specific component and a corresponding response will be sent back by that component. The values in this column contain a running product of the communication with the component as follows: Each request is “sent” by computing a lookup value from some information that's specific to the specialized component, the operation inputs, and the operation outputs, and then dividing it out of the running product column b. Each chiplet response is “sent” by computing the same lookup value from the component-specific information, inputs, and outputs, and then multiplying it into the running product column b. Thus, if the requests and responses match, and the bus column b is initialized to 1, then b will start and end with the value 1. This condition is enforced by boundary constraints on column b. Note that the order of the requests and responses does not matter, as long as they are all included in b. In fact, requests and responses for the same operation will generally occur at different cycles. Additionally, there could be multiple requests sent in the same cycle, and there could also be a response provided at the same cycle that a request is received.","breadcrumbs":"Design » Multiset checks » Implementation","id":"271","title":"Implementation"},"272":{"body":"These constraints can be expressed in a general way with the 2 following requirements: The lookup value must be computed using random values α0,α1, etc. that are provided by the verifier after the prover has committed to the main execution trace. The lookup value must include all uniquely identifying information for the component/operation and its inputs and outputs. Given an example operation opex with inputs i0,...,in and outputs o0,...,om, the lookup value can be computed as follows: lookup=α0+α1⋅opex+α2⋅i0+...+αn+2⋅in+αn+3⋅o0+...+αn+2+m⋅om The constraint for sending this to the bus as a request would be: b′⋅lookup=b The constraint for sending this to the bus as a response would be: b′=b⋅lookup However, these constraints must be combined, since it's possible that requests and responses both occur during the same cycle. To combine them, let ulookup be the request value and let vlookup be the response value. These values are both computed the same way as shown above, but the data sources are different, since the input/output values used to compute ulookup come from the trace of the component that's \"offloading\" the computation, while the input/output values used to compute vlookup come from the trace of the specialized component. The final constraint can be expressed as: b′⋅ulookup=b⋅vlookup","breadcrumbs":"Design » Multiset checks » Communication bus constraints","id":"272","title":"Communication bus constraints"},"273":{"body":"In Miden VM, the specialized components are implemented as dedicated segments of the execution trace, which include the range checker and the 3 chiplets in the Chiplets module (the hash chiplet, bitwise chiplet, and memory chiplet). Miden VM currently uses 2 buses to communicate with these components: The chiplets bus bchip , which communicates with all of the chiplets (Hash, Bitwise, and Memory). The range checker bus brange .","breadcrumbs":"Design » Multiset checks » Communication buses in Miden VM","id":"273","title":"Communication buses in Miden VM"},"274":{"body":"Proofs of execution generated by Miden VM are based on STARKs. A STARK is a novel proof-of-computation scheme that allows you to create an efficiently verifiable proof that a computation was executed correctly. The scheme was developed by Eli Ben-Sasson, Michael Riabzev et al. at Technion - Israel Institute of Technology. STARKs do not require an initial trusted setup, and rely on very few cryptographic assumptions. Here are some resources to learn more about STARKs: STARKs paper: Scalable, transparent, and post-quantum secure computational integrity STARKs vs. SNARKs: A Cambrian Explosion of Crypto Proofs Vitalik Buterin's blog series on zk-STARKs: STARKs, part 1: Proofs with Polynomials STARKs, part 2: Thank Goodness it's FRI-day STARKs, part 3: Into the Weeds Alan Szepieniec's STARK tutorials: Anatomy of a STARK BrainSTARK StarkWare's STARK Math blog series: STARK Math: The Journey Begins Arithmetization I Arithmetization II Low Degree Testing A Framework for Efficient STARKs StarkWare's STARK tutorial: STARK 101","breadcrumbs":"Background Material » Background Material","id":"274","title":"Background Material"},"28":{"body":"The !stack command prints out the state of the stack at the last executed instruction. Since the stack always contains at least 16 elements, 16 or more elements will be printed out (even if all of them are zeros). >> push.1 push.2 push.3 push.4 push.5\n>> exp\n>> u32checked_mul\n>> swap\n>> eq.2\n>> assert The !stack command will print out the following state of the stack: >> !stack\n3072 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0","breadcrumbs":"Development tooling » REPL » !stack","id":"28","title":"!stack"},"29":{"body":"The !mem command prints out the contents of all initialized memory locations. For each such location, the address, along with its memory values, is printed. Recall that four elements are stored at each memory address. If the memory has at least one value that has been initialized: >> !mem\n7: [1, 2, 0, 3]\n8: [5, 7, 3, 32]\n9: [9, 10, 2, 0] If the memory is not yet been initialized: >> !mem\nThe memory has not been initialized yet","breadcrumbs":"Development tooling » REPL » !mem","id":"29","title":"!mem"},"3":{"body":"In the coming months we plan to finalize the design of the VM and implement support for the following features: Recursive proofs. Miden VM will soon be able to verify a proof of its own execution. This will enable infinitely recursive proofs, an extremely useful tool for real-world applications. Better debugging. Miden VM will provide a better debugging experience including the ability to place breakpoints, better source mapping, and more complete program analysis info. Faulty execution. Miden VM will support generating proofs for programs with faulty execution (a notoriously complex task in ZK context). That is, it will be possible to prove that execution of some program resulted in an error.","breadcrumbs":"Introduction » Planned features","id":"3","title":"Planned features"},"30":{"body":"The !mem[addr] command prints out memory contents at the address specified by addr. If the addr has been initialized: >> !mem[9]\n9: [9, 10, 2, 0] If the addr has not been initialized: >> !mem[87]\nMemory at address 87 is empty","breadcrumbs":"Development tooling » REPL » !mem[addr]","id":"30","title":"!mem[addr]"},"31":{"body":"The !undo command reverts to the previous state of the stack and memory by dropping off the last executed assembly instruction from the program. One could use !undo as often as they want to restore the state of a stack and memory n instructions ago (provided there are n instructions in the program). The !undo command will result in an error if no remaining instructions are left in the Miden program. >> push.1 push.2 push.3\n>> push.4\n>> !stack\n4 3 2 1 0 0 0 0 0 0 0 0 0 0 0 0 >> push.5\n>> !stack\n5 4 3 2 1 0 0 0 0 0 0 0 0 0 0 0 >> !undo\n4 3 2 1 0 0 0 0 0 0 0 0 0 0 0 0 >> !undo\n3 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0","breadcrumbs":"Development tooling » REPL » !undo","id":"31","title":"!undo"},"32":{"body":"In the following sections, we provide developer-focused documentation useful to those who want to develop on Miden VM or build compilers from higher-level languages to Miden VM. This documentation consists of two high-level sections: Miden assembly which provides a detailed description of Miden assembly language, which is the native language of Miden VM. Miden Standard Library which provides descriptions of all procedures available in Miden Standard Library. For info on how to run programs on Miden VM, please refer to the usage section in the introduction.","breadcrumbs":"User Documentation » User Documentation","id":"32","title":"User Documentation"},"33":{"body":"Miden assembly is a simple, low-level language for writing programs for Miden VM. It stands just above raw Miden VM instruction set, and in fact, many instructions of Miden assembly map directly to raw instructions of Miden VM. Before Miden assembly can be executed on Miden VM, it needs to be compiled into a Program MAST (Merkelized Abstract Syntax Tree) which is a binary tree of code blocks each containing raw Miden VM instructions. assembly_to_VM As compared to raw Miden VM instructions, Miden assembly has several advantages: Miden assembly is intended to be a more stable external interface for the VM. That is, while we plan to make significant changes to the underlying VM to optimize it for stability, performance etc., we intend to make very few breaking changes to Miden assembly. Miden assembly natively supports control flow expressions which the assembler automatically transforms into a program MAST. This greatly simplifies writing programs with complex execution logic. Miden assembly supports macro instructions . These instructions expand into short sequences of raw Miden VM instructions making it easier to encode common operations. Miden assembly supports procedures . These are stand-alone blocks of code which the assembler inlines into program MAST at compile time. This improves program modularity and code organization. The last two points also make Miden assembly much more concise as compared to the raw program MAST. This may be important in the blockchain context where pubic programs need to be stored on chain.","breadcrumbs":"User Documentation » Miden Assembly » Miden Assembly","id":"33","title":"Miden Assembly"},"34":{"body":"In this document we use the following terms and notations: p is the modulus of the VM's base field which is equal to 264−232+1. A binary value means a field element which is either 0 or 1. Inequality comparisons are assumed to be performed on integer representations of field elements in the range [0,p). Throughout this document, we use lower-case letters to refer to individual field elements (e.g., a). Sometimes it is convenient to describe operations over groups of elements. For these purposes we define a word to be a group of four elements. We use upper-case letters to refer to words (e.g., A). To refer to individual elements within a word, we use numerical subscripts. For example, a0 is the first element of word A, b3 is the last element of word B, etc.","breadcrumbs":"User Documentation » Miden Assembly » Terms and notations","id":"34","title":"Terms and notations"},"35":{"body":"The design of Miden assembly tries to achieve the following goals: Miden assembly should be an easy compilation target for high-level languages. Programs written in Miden assembly should be readable, even if the code is generated by a compiler from a high-level language. Control flow should be easy to understand to help in manual inspection, formal verification, and optimization. Compilation of Miden assembly into Miden program MAST should be as straight-forward as possible. Serialization of Miden assembly into a binary representation should be as compact and as straight-forward as possible. In order to achieve the first goal, Miden assembly exposes a set of native operations over 32-bit integers and supports linear read-write memory. Thus, from the stand-point of a higher-level language compiler, Miden VM can be viewed as a regular 32-bit stack machine with linear read-write memory. In order to achieve the second and third goals, Miden assembly facilitates flow control via high-level constructs like while loops, if-else statements, and function calls with statically defined targets. Thus, for example, there are no explicit jump instructions. In order to achieve the fourth goal, Miden assembly retains direct access to the VM stack rather than abstracting it away with higher-level constructs and named variables. Lastly, in order to achieve the fifth goal, each instruction of Miden assembly can be encoded using a single byte. The resulting byte-code is simply a one-to-one mapping of instructions to their binary values.","breadcrumbs":"User Documentation » Miden Assembly » Design goals","id":"35","title":"Design goals"},"36":{"body":"A Miden assembly program is just a sequence of instructions each describing a specific directive or an operation. You can use any combination of whitespace characters to separate one instruction from another. In turn, Miden assembly instructions are just keywords which can be parameterized by zero or more parameters. The notation for specifying parameters is keyword.param1.param2 - i.e., the parameters are separated by periods. For example, push.123 instruction denotes a push operation which is parameterized by value 123. Miden assembly programs are organized into procedures. Procedures, in turn, can be grouped into modules.","breadcrumbs":"User Documentation » Miden Assembly » Code Organization » Code organization","id":"36","title":"Code organization"},"37":{"body":"A procedure can be used to encapsulate a frequently-used sequence of instructions which can later be invoked via a label. A procedure must start with a proc.. instruction and terminate with an end instruction. For example: proc.foo.2 \nend A procedure label must start with a letter and can contain any combination of numbers, ASCII letters, and underscores (_). The number of characters in the procedure label cannot exceed 100. The number of locals specifies the number of memory-based local words a procedure can access (via loc_load, loc_store, and other instructions ). If a procedure doesn't need any memory-based locals, this parameter can be omitted or set to 0. A procedure can have at most 216 locals, and the total number of locals available to all procedures at runtime is limited to 230. To execute a procedure, the exec., call., and syscall. instructions can be used. For example: exec.foo The difference between using each of these instructions is explained in the next section . A procedure may execute any other previously defined procedure, but it cannot execute itself or any of the subsequent procedures. Thus, recursive procedure calls are not possible. For example, the following code block defines a program with two procedures: proc.foo \nend proc.bar exec.foo \nend begin exec.bar exec.foo\nend","breadcrumbs":"User Documentation » Miden Assembly » Code Organization » Procedures","id":"37","title":"Procedures"},"38":{"body":"A module consists of one or more procedures. There are two types of modules: library modules and executable modules (also called programs ). Library modules Library modules contain zero or more internal procedures and one or more exported procedures. For example, the following module defines one internal procedure (defined with proc instruction) and one exported procedure (defined with export instruction): proc.foo \nend export.bar exec.foo \nend Programs Executable modules are used to define programs. A program contains zero or more internal procedures (defined with proc instruction) and exactly one main procedure (defined with begin instruction). For example, the following module defines one internal procedure and a main procedure: proc.foo \nend begin exec.foo \nend A program cannot contain any exported procedures. When a program is executed, the execution starts at the first instruction following the begin instruction. The main procedure is expected to be the last procedure in the program and can be followed only by comments. Importing modules To invoke a procedure from an external module, the module first needs to be imported using a use instruction. Once a module is imported, procedures from this module can be invoked via the regular exec or call instructions as exec|call.:: where label is the name of the procedure. For example: use.std::math::u64 begin push.1.0 push.2.0 exec.u64::checked_add\nend In the above example we import std::math::u64 module from the standard library . We then execute a program which pushes two 64-bit integers onto the stack, and then invokes a 64-bit addition procedure from the imported module. The set of modules which can be imported by a program can be specified via a Module Provider when instantiating the Miden Assembler used to compile the program. Re-exporting procedures A procedure defined in one module can be re-exported from a different module under the same or a different name. For example: use.std::math::u64 export.u64::add\nexport.u64::mul->mul64 export.foo \nend In addition to the locally-defined procedure foo, the above module also exports procedures add and mul64 implementations of which will be identical to add and mul procedures from the std::math::u64 module respectively.","breadcrumbs":"User Documentation » Miden Assembly » Code Organization » Modules","id":"38","title":"Modules"},"39":{"body":"Miden assembly supports constant declarations. These constants are scoped to the module they are defined in and can be used as immediate parameters for Miden assembly instructions. Constants are supported as immediate values for the following instructions: push, locaddr, loc_load, loc_loadw, loc_store, loc_storew, mem_load, mem_loadw, mem_store, mem_storew. Constants must be declared right after module imports and before any procedures or program bodies. A constant's name must start with an upper-case letter and can contain any combination of numbers, upper-case ASCII letters, and underscores (_). The number of characters in a constant name cannot exceed 100. use.std::math::u64 const.CONSTANT_1=100\nconst.CONSTANT_2=200\nconst.ADDR_1=3 begin push.CONSTANT_1.CONSTANT_2 exec.u64::checked_add mem_store.ADDR_1\nend","breadcrumbs":"User Documentation » Miden Assembly » Code Organization » Constants","id":"39","title":"Constants"},"4":{"body":"This document is meant to provide an in-depth description of Miden VM. It is organized as follows: In the introduction, we provide a high-level overview of Miden VM and describe how to run simple programs. In the user documentation section, we provide developer-focused documentation useful to those who want to develop on Miden VM or build compilers from higher-level languages to Miden assembly (the native language of Miden VM). In the design section, we provide in-depth descriptions of the VM's internals, including all AIR constraints for the proving system. We also provide the rationale for settling on specific design choices. Finally, in the background material section, we provide references to materials which could be useful for learning more about STARKs - the proving system behind Miden VM.","breadcrumbs":"Introduction » Structure of this document","id":"4","title":"Structure of this document"},"40":{"body":"Miden assembly allows annotating code with simple comments. There are two types of comments: single-line comments which start with a # (pound) character, and documentation comments which start with #! characters. For example: #! This is a documentation comment\nexport.foo # this is a comment push.1\nend Documentation comments must precede a procedure declaration. Using them inside a procedure body is an error.","breadcrumbs":"User Documentation » Miden Assembly » Code Organization » Comments","id":"40","title":"Comments"},"41":{"body":"Miden assembly program execution can span multiple isolated contexts. An execution context defines its own memory space which is not accessible from other execution contexts. All programs start executing in a root context. Thus, the main procedure of a program is always executed in the root context. To move execution into a different context, we can invoke a procedure using the call instruction. In fact, any time we invoke a procedure using the call instruction, the procedure is executed in a new context. We refer to all non-root contexts as user contexts . While executing in a user context, we can request to execute some procedures in the root context. This can be done via the syscall instruction. The set of procedures which can be invoked via the syscall instruction is limited by the kernel against which a program is compiled. Once the procedure called via syscall returns, the execution moves back to the user context from which it was invoked. The diagram below illustrates this graphically: context transitions","breadcrumbs":"User Documentation » Miden Assembly » Execution contexts » Execution contexts","id":"41","title":"Execution contexts"},"42":{"body":"As mentioned in the previous section , procedures in Miden assembly can be invoked via three different instructions: exec, call, and syscall. Invocation semantics of call and syscall instructions are basically the same, the only difference being that the syscall instruction can be used only with procedures which are defined in the program's kernel. The exec instruction is different, and we explain these differences below. Invoking via call and syscall instructions When a procedure is invoked via a call or a syscall instruction, the following happens: Execution moves into a different context. In case of a call instruction, a new user context is created. In case of a syscall instruction, the execution moves back into the root context. All stack items beyond the 16th item get \"hidden\" from the invoked procedure. That is, from the standpoint of the invoked procedure, the initial stack depth is set to 16. When a procedure returns from a call or a syscall, the following happens: Execution moves back to the context from which the procedure was invoked. Stack depth is set to its original depth. Before the stack depth is reset, the VM checks if the current stack depth is exactly 16, and fails otherwise. The manipulations of the stack depth described above have the following implications: The top 16 elements of the stack can be used to pass parameters and return values between the caller and the callee. Caller's stack beyond the top 16 elements is inaccessible to the callee, and thus, is guaranteed not to change as the result of the call. At the end of its execution, the callee must ensure that stack depth is exactly 16. If this is difficult to ensure manually, the truncate_stack procedure can be used to drop all elements from the stack except for the top 16. Invoking via exec instruction Procedures invoked via the exec instruction, are inlined at their call sites during compilation. Thus, from the standpoint of the final program, executing procedures this way is indistinguishable from manually including procedure code in place of the exec instruction. This also means that procedures invoked via the exec instruction are executed in the same context as the caller.","breadcrumbs":"User Documentation » Miden Assembly » Execution contexts » Procedure invocation semantics","id":"42","title":"Procedure invocation semantics"},"43":{"body":"A kernel defines a set of procedures which can be invoked from user contexts to be executed in the root context. Miden assembly programs are always compiled against some kernel. The default kernel is empty - i.e., it does not contain any procedures. To compile a program against a non-empty kernel, the kernel needs to be specified when instantiating the Miden Assembler . A kernel can be defined similarly to a regular library module - i.e., it can have internal and exported procedures. However, there are some small differences between what procedures can do in a kernel module vs. what they can do in a regular library module. Specifically: Procedures in a kernel module cannot use call or syscall instructions. This means that creating a new context from within a syscall is not possible. Unlike procedures in regular library modules, procedures in a kernel module can use the caller instruction. This instruction puts the hash of the procedure which initiated the parent context onto the stack.","breadcrumbs":"User Documentation » Miden Assembly » Execution contexts » Kernels","id":"43","title":"Kernels"},"44":{"body":"As mentioned earlier, procedures executed within a given context can access memory only of that context. This is true for both memory reads and memory writes. Address space of every context is the same: the smallest accessible address is 0 and the largest accessible address is 232−1. Any code executed in a given context has access to its entire address space. However, by convention, we assign different meanings to different regions of the address space. For user contexts we have the following: The first 230 words (each word is 4 field elements) are assumed to be global memory. The next 230 words are reserved for memory locals of procedures executed in the same context (i.e., via the exec instruction). The remaining address space has no special meaning. user memory layout For the root context we have the following: The first 230 words are assumed to be global memory. The next 230 words are reserved for memory locals of procedures executed in the root context. The next 230 words are reserved for memory locals of procedures executed from within a syscall. The remaining address space has no special meaning. root memory layout For both types of contexts, writing directly into regions of memory reserved for procedure locals is not advisable. Instead, loc_load, loc_store and other similar dedicated instructions should be used to access procedure locals.","breadcrumbs":"User Documentation » Miden Assembly » Execution contexts » Memory layout","id":"44","title":"Memory layout"},"45":{"body":"To better illustrate what happens as we execute procedures in different contexts, let's go over the following example. kernel\n--------------------\nexport.baz.2 caller \nend program\n--------------------\nproc.bar.1 syscall.baz \nend proc.foo.3 call.bar exec.bar \nend begin call.foo \nend Execution of the above program proceeds as follows: The VM starts executing instructions immediately following the begin statement. These instructions are executed in the root context (let's call this context ctx0). When call.foo is executed, a new context is created (ctx1). Memory in this context is isolated from ctx0. Additionally, any elements on the stack beyond the top 16 are hidden from foo. Instructions executed inside foo can access memory of ctx1 only. The address of the first procedure local in foo (e.g., accessed via loc_load.0) is 230. When call.bar is executed, a new context is created (ctx2). The stack depth is set to 16 again, and any instruction executed in this context can access memory of ctx2 only. The first procedure local of bar is also located at address 230. When syscall.baz is executed, the execution moves back into the root context. That is, instructions executed inside baz have access to the memory of ctx0. The first procedure local of baz is located at address 231. When baz starts executing, the stack depth is again set to 16. When caller is executed inside baz, the first 4 elements of the stack are populated with the hash of bar since baz was invoked from bar's context. Once baz returns, execution moves back to ctx2, and then, when bar returns, execution moves back to ctx1. We assume that instructions executed right before each procedure returns ensure that the stack depth is exactly 16 right before procedure's end. Next, when exec.bar is executed, bar is executed again, but this time it is executed in the same context as foo. Thus, it can access memory of ctx1. Moreover, the stack depth is not changed, and thus, bar can access the entire stack of foo. Lastly, this first procedure local of bar now will be at address 230+3 (since the first 3 locals in this context are reserved for foo). When syscall.baz is executed the second time, execution moves into the root context again. However, now, when caller is executed inside baz, the first 4 elements of the stack are populated with the hash of foo (not bar). This happens because this time around bar does not have its own context and baz is invoked from foo's context. Finally, when baz returns, execution moves back to ctx1, and then as bar and foo return, back to ctx0, and the program terminates.","breadcrumbs":"User Documentation » Miden Assembly » Execution contexts » Example","id":"45","title":"Example"},"46":{"body":"As mentioned above, Miden assembly provides high-level constructs to facilitate flow control. These constructs are: if-else expressions for conditional execution. repeat expressions for bounded counter-controlled loops. while expressions for unbounded condition-controlled loops.","breadcrumbs":"User Documentation » Miden Assembly » Flow Control » Flow control","id":"46","title":"Flow control"},"47":{"body":"Conditional execution in Miden VM can be accomplished with if-else statements. These statements look like so: if.true \nelse \nend where instructions can be a sequence of any instructions, including nested control structures; the else clause is optional. The above does the following: Pops the top item from the stack. If the value of the item is 1, instructions in the if.true branch are executed. If the value of the item is 0, instructions in the else branch are executed. If the value is not binary, the execution fails. A note on performance: using if-else statements incurs a small, but non-negligible overhead. Thus, for simple conditional statements, it may be more efficient to compute the result of both branches, and then select the result using conditional drop instructions.","breadcrumbs":"User Documentation » Miden Assembly » Flow Control » Conditional execution","id":"47","title":"Conditional execution"},"48":{"body":"Executing a sequence of instructions a predefined number of times can be accomplished with repeat statements. These statements look like so: repeat. \nend where: instructions can be a sequence of any instructions, including nested control structures. count is the number of times the instructions sequence should be repeated (e.g. repeat.10). count must be an integer greater than 0. Note : During compilation the repeat. blocks are unrolled and expanded into copies of its inner block, there is no additional cost for counting variables in this case.","breadcrumbs":"User Documentation » Miden Assembly » Flow Control » Counter-controlled loops","id":"48","title":"Counter-controlled loops"},"49":{"body":"Executing a sequence of instructions zero or more times based on some condition can be accomplished with while loop expressions. These expressions look like so: while.true \nend where instructions can be a sequence of any instructions, including nested control structures. The above does the following: Pops the top item from the stack. If the value of the item is 1, instructions in the loop body are executed. a. After the body is executed, the stack is popped again, and if the popped value is 1, the body is executed again. b. If the popped value is 0, the loop is exited. c. If the popped value is not binary, the execution fails. If the value of the item is 0, execution of loop body is skipped. If the value is not binary, the execution fails. Example: # push the boolean true to the stack\npush.1 # pop the top element of the stack and loop while it is true\nwhile.true # push the boolean false to the stack, finishing the loop for the next iteration push.0\nend","breadcrumbs":"User Documentation » Miden Assembly » Flow Control » Condition-controlled loops","id":"49","title":"Condition-controlled loops"},"5":{"body":"Licensed under the MIT license .","breadcrumbs":"Introduction » License","id":"5","title":"License"},"50":{"body":"Miden assembly provides a set of instructions which can perform operations with raw field elements. These instructions are described in the tables below. While most operations place no restrictions on inputs, some operations expect inputs to be binary values, and fail if executed with non-binary inputs. For instructions where one or more operands can be provided as immediate parameters (e.g., add and add.b), we provide stack transition diagrams only for the non-immediate version. For the immediate version, it can be assumed that the operand with the specified name is not present on the stack.","breadcrumbs":"User Documentation » Miden Assembly » Field Operations » Field operations","id":"50","title":"Field operations"},"51":{"body":"Instruction Stack_input Stack_output Notes assert - (1 cycle) [a, ...] [...] If a=1, removes it from the stack. Fails if a=1 assertz - (2 cycles) [a, ...] [...] If a=0, removes it from the stack, Fails if a=0 assert_eq - (2 cycles) [b, a, ...] [...] If a=b, removes them from the stack. Fails if a=b assert_eqw - (11 cycles) [B, A, ...] [...] If A=B, removes them from the stack. Fails if A=B","breadcrumbs":"User Documentation » Miden Assembly » Field Operations » Assertions and tests","id":"51","title":"Assertions and tests"},"52":{"body":"Instruction Stack_input Stack_output Notes add - (1 cycle) add. b - (1-2 cycle) [b, a, ...] [c, ...] c←(a+b)modp sub - (2 cycles) sub. b - (2 cycles) [b, a, ...] [c, ...] c←(a−b)modp mul - (1 cycle) mul. b - (2 cycles) [b, a, ...] [c, ...] c←(a⋅b)modp div - (2 cycles) div. b - (2 cycles) [b, a, ...] [c, ...] c←(a⋅b−1)modp Fails if b=0 neg - (1 cycle) [a, ...] [b, ...] b←−amodp inv - (1 cycle) [a, ...] [b, ...] b←a−1modp Fails if a=0 pow2 - (16 cycles) [a, ...] [b, ...] b←2a Fails if a>63 exp. uxx - (9 + xx cycles) exp. b - (9 + log2(b) cycles) [b, a, ...] [c, ...] c←ab Fails if xx is outside [0, 63) exp is equivalent to exp.u64 and needs 73 cycles not - (1 cycle) [a, ...] [b, ...] b←1−a Fails if a>1 and - (1 cycle) [b, a, ...] [c, ...] c←a⋅b Fails if max(a,b)>1 or - (1 cycle) [b, a, ...] [c, ...] c←a+b−a⋅b Fails if max(a,b)>1 xor - (7 cycles) [b, a, ...] [c, ...] c←a+b−2⋅a⋅b Fails if max(a,b)>1","breadcrumbs":"User Documentation » Miden Assembly » Field Operations » Arithmetic and Boolean operations","id":"52","title":"Arithmetic and Boolean operations"},"53":{"body":"Instruction Stack_input Stack_output Notes eq - (1 cycle) eq. b - (1-2 cycles) [b, a, ...] [c, ...] c←{1,0,if a=botherwise neq - (2 cycle) neq. b - (2-3 cycles) [b, a, ...] [c, ...] c←{1,0,if a=botherwise lt - (17 cycles) [b, a, ...] [c, ...] c←{1,0,if abotherwise gte - (19 cycles) [b, a, ...] [c, ...] c←{1,0,if a≥botherwise is_odd - (5 cycles) [a, ...] [b, ...] b←{1,0,if a is oddotherwise eqw - (15 cycles) [A, B, ...] [c, A, B, ...] c←{1,0,if ai=bi∀i∈{0,1,2,3}otherwise ","breadcrumbs":"User Documentation » Miden Assembly » Field Operations » Comparison operations","id":"53","title":"Comparison operations"},"54":{"body":"Instruction Stack Input Stack Output Notes ext2add - (5 cycles) [b1, b0, a1, a0, ...] [c1, c0, ...] c1←(a1+b1)modp and c0←(a0+b0)modp ext2sub - (7 cycles) [b1, b0, a1, a0, ...] [c1, c0, ...] c1←(a1−b1)modp and c0←(a0−b0)modp ext2mul - (3 cycles) [b1, b0, a1, a0, ...] [c1, c0, ...] c1←(a0+a1)∗(b0+b1)modp and c0←(a0∗b0)−2∗(a1∗b1)modp ext2neg - (4 cycles) [a1, a0, ...] [a1', a0', ...] a1′←−a1 and a0′←−a0 ext2inv - (8 cycles) [a1, a0, ...] [a1', a0', ...] a′←a−1modq Fails if a=0 ext2div - (11 cycles) [b1, b0, a1, a0, ...] [c1, c0,] c←a∗b−1 fails if b=0, where multiplication and inversion are as defined by the operations above","breadcrumbs":"User Documentation » Miden Assembly » Field Operations » Extension Field Operations","id":"54","title":"Extension Field Operations"},"55":{"body":"Miden assembly provides a set of instructions which can perform operations on regular two-complement 32-bit integers. These instructions are described in the tables below. Most instructions have checked variants. These variants ensure that input values are 32-bit integers, and fail if that's not the case. All other variants do not perform these checks, and thus, should be used only if the inputs are known to be 32-bit integers. Supplying inputs which are greater than or equal to 232 to unchecked operations results in undefined behavior. The primary benefit of using unchecked operations is performance: they can frequently be executed 2 or 3 times faster than their checked counterparts. In general, vast majority of the unchecked operations listed below can be executed in a single VM cycle. For instructions where one or more operands can be provided as immediate parameters (e.g., u32checked_add and u32checked_add.b), we provide stack transition diagrams only for the non-immediate version. For the immediate version, it can be assumed that the operand with the specified name is not present on the stack. In all the table below, the number of cycles it takes for the VM to execute each instruction is listed beneath the instruction.","breadcrumbs":"User Documentation » Miden Assembly » u32 Operations » u32 operations","id":"55","title":"u32 operations"},"56":{"body":"Instruction Stack input Stack output Notes u32test - (5 cycles) [a, ...] [b, a, ...] b←{1,0,if a<232otherwise u32testw - (23 cycles) [A, ...] [b, A, ...] b←{1,0,if ∀ i∈{0,1,2,3} ai<232otherwise u32assert u32assert.1 - (3 cycles) [a, ...] [a, ...] Fails if a≥232 u32assert.2 - (1 cycle) [b, a,...] [b, a,...] Fails if a≥232 or b≥232 u32assertw - (6 cycles) [A, ...] [A, ...] Fails if ∃ i∈{0,1,2,3}∋ai≥232 u32cast - (2 cycles) [a, ...] [b, ...] b←amod232 u32split - (1 cycle) [a, ...] [c, b, ...] b←amod232, c←⌊a/232⌋","breadcrumbs":"User Documentation » Miden Assembly » u32 Operations » Conversions and tests","id":"56","title":"Conversions and tests"},"57":{"body":"Instruction Stack input Stack output Notes u32checked_add - (4 cycles) u32checked_add. b - (5-6 cycles) [b, a, ...] [c, ...] c←a+b Fails if max(a,b,c)≥232 u32overflowing_add - (1 cycle) u32overflowing_add. b - (2-3 cycles) [b, a, ...] [d, c, ...] c←(a+b)mod232 d←{1,0,if (a+b)≥232otherwise Undefined if max(a,b)≥232 u32wrapping_add - (2 cycles) u32wrapping_add. b - (3-4 cycles) [b, a, ...] [c, ...] c←(a+b)mod232 Undefined if max(a,b)≥232 u32overflowing_add3 - (1 cycle) [c, b, a, ...] [e, d, ...] d←(a+b+c)mod232, e←⌊(a+b+c)/232⌋ Undefined if max(a,b,c)≥232 u32wrapping_add3 - (2 cycles) [c, b, a, ...] [d, ...] d←(a+b+c)mod232, Undefined if max(a,b,c)≥232 u32checked_sub - (4 cycles) u32checked_sub. b - (5-6 cycles) [b, a, ...] [c, ...] c←(a−b) Fails if max(a,b)≥232 or a31 u32unchecked_shl - (40 cycles) u32unchecked_shl. b - (3 cycles) [b, a, ...] [c, ...] c←(a⋅2b)mod232 Undefined if a≥232 or b>31 u32checked_shr - (47 cycles) u32checked_shr. b - (4 cycles) [b, a, ...] [c, ...] c←⌊a/2b⌋ Fails if a≥232 or b>31 u32unchecked_shr - (40 cycles) u32unchecked_shr. b - (3 cycles) [b, a, ...] [c, ...] c←⌊a/2b⌋ Undefined if a≥232 or b>31 u32checked_rotl - (47 cycles) u32checked_rotl. b - (4 cycles) [b, a, ...] [c, ...] Computes c by rotating a 32-bit representation of a to the left by b bits. Fails if a≥232 or b>31 u32unchecked_rotl - (40 cycles) u32unchecked_rotl. b - (3 cycles) [b, a, ...] [c, ...] Computes c by rotating a 32-bit representation of a to the left by b bits. Undefined if a≥232 or b>31 u32checked_rotr - (59 cycles) u32checked_rotr. b - (6 cycles) [b, a, ...] [c, ...] Computes c by rotating a 32-bit representation of a to the right by b bits. Fails if a≥232 or b>31 u32unchecked_rotr - (44 cycles) u32unchecked_rotr. b - (3 cycles) [b, a, ...] [c, ...] Computes c by rotating a 32-bit representation of a to the right by b bits. Undefined if a≥232 or b>31 u32checked_popcnt - (36 cycles) [a, ...] [b, ...] Computes b by counting the number of set bits in a (hamming weight of a). Fails if a≥232 u32unchecked_popcnt - (33 cycles) [a, ...] [b, ...] Computes b by counting the number of set bits in a (hamming weight of a). Undefined if a≥232","breadcrumbs":"User Documentation » Miden Assembly » u32 Operations » Bitwise operations","id":"58","title":"Bitwise operations"},"59":{"body":"Instruction Stack input Stack output Notes u32checked_eq - (2 cycles) u32checked_eq. b - (3-4 cycles) [b, a, ...] [c, ...] c←{1,0,if a=botherwise Fails if max(a,b)≥232 Note: unchecked version is not provided because it is equivalent to simple eq. u32checked_neq - (3 cycles) u32checked_neq. b - (4-5 cycles) [b, a, ...] [c, ...] c←{1,0,if a=botherwise Fails if max(a,b)≥232 Note: unchecked version is not provided because it is equivalent to simple neq. u32checked_lt - (6 cycles) [b, a, ...] [c, ...] c←{1,0,if abotherwise Fails if max(a,b)≥232 u32unchecked_gt - (6 cycles) [b, a, ...] [c, ...] c←{1,0,if a>botherwise Undefined if max(a,b)≥232 u32checked_gte - (7 cycles) [b, a, ...] [c, ...] c←{1,0,if a≥botherwise Fails if max(a,b)≥232 u32unchecked_gte - (6 cycles) [b, a, ...] [c, ...] c←{1,0,if a≥botherwise Undefined if max(a,b)≥232 u32checked_min - (9 cycles) [b, a, ...] [c, ...] c←{a,b,if abotherwise Fails if max(a,b)≥232 u32unchecked_max - (9 cycles) [b, a, ...] [c, ...] c←{a,b,if a>botherwise Undefined if max(a,b)≥232","breadcrumbs":"User Documentation » Miden Assembly » u32 Operations » Comparison operations","id":"59","title":"Comparison operations"},"6":{"body":"Miden VM is a stack machine. The base data type of the MV is a field element in a 64-bit prime field defined by modulus p=264−232+1. This means that all values that the VM operates with are field elements in this field (i.e., values between 0 and 264−232, both inclusive). Miden VM consists of three high-level components as illustrated below. These components are: Stack which is a push-down stack where each item is a field element. Most assembly instructions operate with values located on the stack. The stack can grow up to 232 items deep, however, only the top 16 items are directly accessible. Memory which is a linear random-access read-write memory. The memory is word-addressable, meaning, four elements are located at each address, and we can read and write elements to/from memory in batches of four. Memory addresses can be in the range [0,232). Advice provider which is a way for the prover to provide nondeterministic inputs to the VM. The advice provider is composed of a single advice stack , an advice map , and a merkle store . The advice stack yields elements to the VM stack; the advice map stores key-mapped element lists which can be pushed onto the advice stack; finally, the Merkle store contains structured Merkle tree data and serves Merkle paths to the VM. In the future, additional components (e.g., storage, logs) may be added to the VM.","breadcrumbs":"Introduction » Overview » Miden VM overview","id":"6","title":"Miden VM overview"},"60":{"body":"Miden VM stack is a push-down stack of field elements. The stack has a maximum depth of 232, but only the top 16 elements are directly accessible via the instructions listed below. In addition to the typical stack manipulation instructions such as drop, dup, swap etc., Miden assembly provides several conditional instructions which can be used to manipulate the stack based on some condition - e.g., conditional swap cswap or conditional drop cdrop. Instruction Stack_input Stack_output Notes drop - (1 cycle) [a, ... ] [ ... ] Deletes the top stack item. dropw - (4 cycles) [A, ... ] [ ... ] Deletes a word (4 elements) from the top of the stack. padw - (4 cycles) [ ... ] [0, 0, 0, 0, ... ] Pushes four 0 values onto the stack. Note: simple pad is not provided because push.0 does the same thing. dup. n - (1-3 cycles) [ ..., a, ... ] [a, ..., a, ... ] Pushes a copy of the nth stack item onto the stack. dup and dup.0 are the same instruction. Valid for n∈{0,...,15} dupw. n - (4 cycles) [ ..., A, ... ] [A, ..., A, ... ] Pushes a copy of the nth stack word onto the stack. dupw and dupw.0 are the same instruction. Valid for n∈{0,1,2,3} swap. n - (1-6 cycles) [a, ..., b, ... ] [b, ..., a, ... ] Swaps the top stack item with the nth stack item. swap and swap.1 are the same instruction. Valid for n∈{1,...,15} swapw. n - (1 cycle) [A, ..., B, ... ] [B, ..., A, ... ] Swaps the top stack word with the nth stack word. swapw and swapw.1 are the same instruction. Valid for n∈{1,2,3} swapdw - (1 cycle) [D, C, B, A, ... ] [B, A, D, C ... ] Swaps words on the top of the stack. The 1st with the 3rd, and the 2nd with the 4th. movup. n - (1-4 cycles) [ ..., a, ... ] [a, ... ] Moves the nth stack item to the top of the stack. Valid for n∈{2,...,15} movupw. n - (2-3 cycles) [ ..., A, ... ] [A, ... ] Moves the nth stack word to the top of the stack. Valid for n∈{2,3} movdn. n - (1-4 cycles) [a, ... ] [ ..., a, ... ] Moves the top stack item to the nth position of the stack. Valid for n∈{2,...,15} movdnw. n - (2-3 cycles) [A, ... ] [ ..., A, ... ] Moves the top stack word to the nth word position of the stack. Valid for n∈{2,3}","breadcrumbs":"User Documentation » Miden Assembly » Stack manipulation » Stack manipulation","id":"60","title":"Stack manipulation"},"61":{"body":"Instruction Stack_input Stack_output Notes cswap - (1 cycle) [c, b, a, ... ] [e, d, ... ] d={a,b,if c=0if c=1 e={b,a,if c=0if c=1 Fails if c>1 cswapw - (1 cycle) [c, B, A, ... ] [E, D, ... ] D={A,B,if c=0if c=1 E={B,A,if c=0if c=1 Fails if c>1 cdrop - (2 cycles) [c, b, a, ... ] [d, ... ] d={a,b,if c=0if c=1 Fails if c>1 cdropw - (5 cycles) [c, B, A, ... ] [D, ... ] D={A,B,if c=0if c=1 Fails if c>1","breadcrumbs":"User Documentation » Miden Assembly » Stack manipulation » Conditional manipulation","id":"61","title":"Conditional manipulation"},"62":{"body":"Miden assembly provides a set of instructions for moving data between the operand stack and several other sources. These sources include: Program code : values to be moved onto the operand stack can be hard-coded in a program's source code. Environment : values can be moved onto the operand stack from environment variables. These include current clock cycle, current stack depth, and a few others. Advice provider : values can be moved onto the operand stack from the advice provider by popping them from the advice stack (see more about the advice provider here ). The VM can also inject new data into the advice provider via advice injector instructions. Memory : values can be moved between the stack and random-access memory. The memory is word-addressable, meaning, four elements are located at each address, and we can read and write elements to/from memory in batches of four. Memory can be accessed via absolute memory references (i.e., via memory addresses) as well as via local procedure references (i.e., local index). The latter approach ensures that a procedure does not access locals of another procedure.","breadcrumbs":"User Documentation » Miden Assembly » Input / Output Operations » Input / output operations","id":"62","title":"Input / output operations"},"63":{"body":"Instruction Stack_input Stack_output Notes push. a - (1-2 cycles) push. a . b push. a . b . c ... [ ... ] [a, ... ] [b, a, ... ] [c, b, a, ... ] Pushes values a, b, c etc. onto the stack. Up to 16 values can be specified. All values must be valid field elements in decimal (e.g., 123) or hexadecimal (e.g., 0x7b) representation. When specifying values in hexadecimal format, it is possible to omit the periods between individual values as long as total number of specified bytes is a multiple of 8. That is, the following are semantically equivalent: push.0x1234.0xabcd\npush.0x0000000000001234000000000000abcd In both case the values must still encode valid field elements.","breadcrumbs":"User Documentation » Miden Assembly » Input / Output Operations » Constant inputs","id":"63","title":"Constant inputs"},"64":{"body":"Instruction Stack_input Stack_output Notes clk - (1 cycle) [ ... ] [t, ... ] t←clock_value() Pushes the current value of the clock cycle counter onto the stack. sdepth - (1 cycle) [ ... ] [d, ... ] d←stack.depth() Pushes the current depth of the stack onto the stack. caller - (1 cycle) [A, b, ... ] [H, b, ... ] H←context.fn_hash() Overwrites the top four stack items with the hash of a function which initiated the current SYSCALL. Executing this instruction outside of SYSCALL context will fail. locaddr. i - (2 cycles) [ ... ] [a, ... ] a←address_of(i) Pushes the absolute memory address of local memory at index i onto the stack.","breadcrumbs":"User Documentation » Miden Assembly » Input / Output Operations » Environment inputs","id":"64","title":"Environment inputs"},"65":{"body":"As mentioned above, nondeterministic inputs are provided to the VM via the advice provider. Instructs which access the advice provider fall into two categories. The first category consists of instructions which move data from the advice stack onto the operand stack and/or memory. Instruction Stack_input Stack_output Notes adv_push. n - (n cycles) [ ... ] [a, ... ] a←stack.pop() Pops n values from the advice stack and pushes them onto the operand stack. Valid for n∈{1,...,16}. Fails if the advice stack has fewer than n values. adv_loadw - (1 cycle) [0, 0, 0, 0, ... ] [A, ... ] A←stack.pop(4) Pop the next word (4 elements) from the advice stack and overwrites the first word of the operand stack (4 elements) with them. Fails if the advice stack has fewer than 4 values. adv_pipe - (1 cycle) [C, B, A, a, ... ] [E, D, A, a', ... ] [D,E]←[adv stack.pop(4),adv stack.pop(4)] a′←a+2 Pops the next two words from the advice stack, overwrites the top of the operand stack with them and also writes these words into memory at address a and a+1. Fails if the advice stack has fewer than 8 values. Note : The opcodes above always push data onto the operand stack so that the first element is placed deepest in the stack. For example, if the data on the stack is a,b,c,d and you use the opcode adv_push.4, the data will be d,c,b,a on your stack. This is also the behavior of the other opcodes. The second category injects new data into the advice provider. These operations are called advice injectors and they affect only the advice provider state. That is, the state of all other VM components (e.g., stack, memory) are unaffected. Executing advice injectors does not consume any VM cycles (i.e., these instructions are executed in 0 cycles). Advice injectors fall into two categories: (1) injectors which push new data onto the advice stack, and (2) injectors which insert new data into the advice map. Instruction Stack_input Stack_output Notes adv.push_mapval adv.push_mapval. s [K, ... ] [K, ... ] Pushes a list of field elements onto the advice stack. The list is looked up in the advice map using word K as the key. If offset s is provided, the key is taken starting from item s on the stack. adv.push_mapvaln adv.push_mapvaln. s [K, ... ] [K, ... ] Pushes a list of field elements together with the number of elements onto the advice stack. The list is looked up in the advice map using word K as the key. If offset s is provided, the key is taken starting from item s on the stack. adv.push_mtnode [d, i, R, ... ] [d, i, R, ... ] Pushes a node of a Merkle tree with root R at depth d and index i from Merkle store onto the advice stack. adv.push_u64div [b1, b0, a1, a0, ...] [b1, b0, a1, a0, ...] Pushes the result of u64 division a/b onto the advice stack. Both a and b are represented using 32-bit limbs. The result consists of both the quotient and the remainder. adv.push_ext2intt [osize, isize, iptr, ... ] [osize, isize, iptr, ... ] Given evaluations of a polynomial over some specified domain, interpolates the evaluations into a polynomial in coefficient form and pushes the result into the advice stack. adv.smt_get [K, R, ... ] [K, R, ... ] Pushes values onto the advice stack which are required for successful retrieval of a value under the key K from a Sparse Merkle Tree with root R. adv.insert_mem [K, a, b, ... ] [K, a, b, ... ] Reads words data←mem[a]..mem[b] from memory, and save the data into advice_map[K]←data. adv.insert_hdword adv.insert_hdword. d [B, A, ... ] [B, A, ... ] Reads top two words from the stack, computes a key as K←hash(A∣∣b,d), and saves the data into advice_map[K]←[A,B]. d is an optional domain value which can be between 0 and 255, default value 0.","breadcrumbs":"User Documentation » Miden Assembly » Input / Output Operations » Nondeterministic inputs","id":"65","title":"Nondeterministic inputs"},"66":{"body":"As mentioned above, there are two ways to access memory in Miden VM. The first way is via memory addresses using the instructions listed below. The addresses are absolute - i.e., they don't depend on the procedure context. Memory addresses can be in the range [0,232). Memory is guaranteed to be initialized to zeros. Thus, when reading from memory address which hasn't been written to previously, zero elements will be returned. Instruction Stack_input Stack_output Notes mem_load - (1 cycle) mem_load. a - (2 cycles) [a, ... ] [v, ... ] v←mem[a][0] Reads a word (4 elements) from memory at address a , and pushes the first element of the word onto the stack. If a is provided via the stack, it is removed from the stack first. Fails if a≥232 mem_loadw - (1 cycle) mem_loadw. a - (2 cycles) [a, 0, 0, 0, 0, ... ] [A, ... ] A←mem[a] Reads a word from memory at address a and overwrites top four stack elements with it. If a is provided via the stack, it is removed from the stack first. Fails if a≥232 mem_store - (2 cycles) mem_store. a - (3-4 cycles) [a, v, ... ] [ ... ] v→mem[a][0] Pops the top element off the stack and stores it as the first element of the word in memory at address a. All other elements of the word are not affected. If a is provided via the stack, it is removed from the stack first. Fails if a≥232 mem_storew - (1 cycle) mem_storew. a - (2-3 cycles) [a, A, ... ] [A, ... ] A→mem[a] Stores the top four elements of the stack in memory at address a. If a is provided via the stack, it is removed from the stack first. Fails if a≥232 mem_stream - (1 cycle) [C, B, A, a, ... ] [E, D, A, a', ... ] [E,D]←[mem[a],mem[a+1]] a′←a+2 Read two sequential words from memory starting at address a and overwrites the first two words in the operand stack. The second way to access memory is via procedure locals using the instructions listed below. These instructions are available only in procedure context. The number of locals available to a given procedure must be specified at procedure declaration time, and trying to access more locals than was declared will result in a compile-time error. The number of locals per procedure is not limited, but the total number of locals available to all procedures at runtime must be smaller than 232. Instruction Stack_input Stack_output Notes loc_load. i - (3-4 cycles) [ ... ] [v, ... ] v←local[i][0] Reads a word (4 elements) from local memory at index i , and pushes the first element of the word onto the stack. loc_loadw. i - (3-4 cycles) [0, 0, 0, 0, ... ] [A, ... ] A←local[i] Reads a word from local memory at index i and overwrites top four stack elements with it. loc_store. i - (4-5 cycles) [v, ... ] [ ... ] v→local[i][0] Pops the top element off the stack and stores it as the first element of the word in local memory at index i. All other elements of the word are not affected. loc_storew. i - (3-4 cycles) [A, ... ] [A, ... ] A→local[i] Stores the top four elements of the stack in local memory at index i. Unlike regular memory, procedure locals are not guaranteed to be initialized to zeros. Thus, when working with locals, one must assume that before a local memory address has been written to, it contains \"garbage\". Internally in the VM, procedure locals are stored at memory offset stating at 230. Thus, every procedure local has an absolute address in regular memory. The locaddr.i instruction is provided specifically to map an index of a procedure's local to an absolute address so that it can be passed to downstream procedures, when needed.","breadcrumbs":"User Documentation » Miden Assembly » Input / Output Operations » Random access memory","id":"66","title":"Random access memory"},"67":{"body":"Miden assembly provides a set of instructions for performing common cryptographic operations. These instructions are listed in the table below.","breadcrumbs":"User Documentation » Miden Assembly » Cryptographic Operations » Cryptographic operations","id":"67","title":"Cryptographic operations"},"68":{"body":"Rescue Prime Optimized is the native hash function of Miden VM. The parameters of the hash function were chosen to provide 128-bit security level against preimage and collision attacks. The function operates over a state of 12 field elements, and requires 7 rounds for a single permutation. However, due to its special status within the VM, computing Rescue Prime Optimized hashes can be done very efficiently. For example, applying a permutation of the hash function can be done in a single VM cycle. Instruction Stack_input Stack_output Notes hash - (20 cycles) [A, ...] [B, ...] {B}←hash(A) where, hash() computes a 1-to-1 Rescue Prime Optimized hash. hperm - (1 cycle) [C, B, A, ...] [F, E, D, ...] {D,E,F}←permute(A,B,C) Performs a Rescue Prime Optimized permutation on the top 3 words of the operand stack, where the top 2 words elements are the rate (words C and B), the deepest word is the capacity (word A), the digest output is the word E. hmerge - (16 cycles) [B, A, ...] [C, ...] C←hash(A,B) where, hash() computes a 2-to-1 Rescue Prime Optimized hash. mtree_get - (9 cycles) [d, i, R, ...] [V, R, ...] Fetches the node value from the advice provider and runs a verification equivalent to mtree_verify, returning the value if succeeded. mtree_set - (29 cycles) [d, i, R, V', ...] [V, R', ...] Updates a node in the Merkle tree with root R at depth d and index i to value V′. R′ is the Merkle root of the resulting tree and V is old value of the node. Merkle tree with root R must be present in the advice provider, otherwise execution fails. At the end of the operation the advice provider will contain both Merkle trees. mtree_merge - (16 cycles) [R, L, ...] [M, ...] Merges two Merkle trees with the provided roots R (right), L (left) into a new Merkle tree with root M (merged). The input trees are retained in the advice provider. mtree_verify - (1 cycle) [V, d, i, R, ...] [V, d, i, R, ...] Verifies that a Merkle tree with root R opens to node V at depth d and index i. Merkle tree with root R must be present in the advice provider, otherwise execution fails.","breadcrumbs":"User Documentation » Miden Assembly » Cryptographic Operations » Hashing and Merkle trees","id":"68","title":"Hashing and Merkle trees"},"69":{"body":"Miden standard library provides a set of procedures which can be used by any Miden program. These procedures build on the core instruction set of Miden assembly expanding the functionality immediately available to the user. The goals of Miden standard library are: Provide highly-optimized and battle-tested implementations of commonly-used primitives. Reduce the amount of code that needs to be shared between parties for proving and verifying program execution. The second goal can be achieved because calls to procedures in the standard library can always be serialized as 32 bytes, regardless of how large the procedure is.","breadcrumbs":"User Documentation » Miden Standard Library » Miden Standard Library","id":"69","title":"Miden Standard Library"},"7":{"body":"Our goal is to make Miden VM an easy compilation target for high-level blockchain-centric languages such as Solidity, Move, Sway, and others. We believe it is important to let people write programs in the languages of their choice. However, compilers to help with this have not been developed yet. Thus, for now, the primary way to write programs for Miden VM is to use Miden assembly . While writing programs in assembly is far from ideal, Miden assembly does make this task a little bit easier by supporting high-level flow control structures and named procedures.","breadcrumbs":"Introduction » Overview » Writing programs","id":"7","title":"Writing programs"},"70":{"body":"In this document we use the following terms and notations: A field element is an element in a prime field of size p=264−232+1. A binary value means a field element which is either 0 or 1. Inequality comparisons are assumed to be performed on integer representations of field elements in the range [0,p). Throughout this document, we use lower-case letters to refer to individual field elements (e.g., a). Sometimes it is convenient to describe operations over groups of elements. For these purposes we define a word to be a group of four elements. We use upper-case letters to refer to words (e.g., A). To refer to individual elements within a word, we use numerical subscripts. For example, a0 is the first element of word A, b3 is the last element of word B, etc.","breadcrumbs":"User Documentation » Miden Standard Library » Terms and notations","id":"70","title":"Terms and notations"},"71":{"body":"Procedures in the Miden Standard Library are organized into modules, each targeting a narrow set of functionality. Modules are grouped into higher-level namespaces. However, higher-level namespaces do not expose any procedures themselves. For example, std::math::u64 is a module containing procedures for working with 64-bit unsigned integers. This module is a part of the std::math namespace. However, the std::math namespace does not expose any procedures. For an example of how to invoke procedures from imported modules see this section .","breadcrumbs":"User Documentation » Miden Standard Library » Organization and usage","id":"71","title":"Organization and usage"},"72":{"body":"Currently, Miden standard library contains just a few modules, which are listed below. Over time, we plan to add many more modules which will include various cryptographic primitives, additional numeric data types and operations, and many others. Module Description std::collections::mmr Contains procedures for manipulating Merkle Mountain Ranges . std::collections::smt64 Contains procedures for manipulating key-value maps with single-element keys and 4-element values. std::crypto::fri::frie2f4 Contains procedures for verifying FRI proofs (field extension = 2, folding factor = 4). std::crypto::hashes::blake3 Contains procedures for computing hashes using BLAKE3 hash function. std::crypto::hashes::sha256 Contains procedures for computing hashes using SHA256 hash function. std::math::u64 Contains procedures for working with 64-bit unsigned integers. std::mem Contains procedures for working with random access memory. std::sys Contains system-level utility procedures.","breadcrumbs":"User Documentation » Miden Standard Library » Available modules","id":"72","title":"Available modules"},"73":{"body":"Namespace std::collections contains modules for commonly authenticated data structures.","breadcrumbs":"User Documentation » Miden Standard Library » std::collections » Collections","id":"73","title":"Collections"},"74":{"body":"Module std::collections::mmr contains procedures for manipulating Merkle Mountain Range data structure which can be used as an append-only log. Procedure Description get Loads the leaf at the absolute pos in the MMR onto the stack.Valid range for pos is between 0 and 232−1 (both inclusive).Inputs:- Operand stack: [pos, mmr_ptr, ...]Output:- Operand stack: [N, ...]Where N is the leaf loaded from the MMR whose memory location starts at mmr_ptr. add Adds a new leaf to the MMR.This will update the MMR peaks in the VM's memory and the advice provider with any merged nodes.Inputs:- Operand stack: [N, mmr_ptr, ...]Outputs:- Operand stack: [...]Where N is the leaf added to the MMR whose memory locations starts at mmr_ptr. pack Computes the hash of the given MMR and copies it to the Advice Map using its hash as a key.Inputs:- Operand stack: [mmr_ptr, ...]Outputs:- Operand stack: [HASH, ...] unpack Load the MMR peak data based on its hash.Inputs:- Operand stack: [HASH, mmr_ptr, ...]Outputs:- Operand stack: [...]Where:- HASH: is the MMR peak hash, the hash is expected to be padded to an even length and to have a minimum size of 16 elements.- The advice map must contain a key with HASH, and its value is num_leaves \\|\\| hash_data, and hash_data is the data used to computed HASH- mmt_ptr: the memory location where the MMR data will be written, starting with the MMR forest (the total count of its leaves) followed by its peaks.","breadcrumbs":"User Documentation » Miden Standard Library » std::collections » Merkle Mountain Range","id":"74","title":"Merkle Mountain Range"},"75":{"body":"Module std::collections::smt64 contains procedures for manipulating key-value maps with single-element keys and 4-element values. The current implementation is a thin wrapper over a simple Sparse Merkle Tree of depth 64. In the future, this will be replaced with a compact Sparse Merkle Tree implementation. Procedure Description get Returns the value located under the specified key in the Sparse Merkle Tree defined by the specified root.If no values had been previously inserted under the specified key, an empty word (i.e., [ZERO; 4]) is returned.Inputs:- Operand stack: [key, ROOT, ...]Outputs:-Operand stack: [VALUE, ROOT, ...]Fails if the tree with the specified root does not exist in the VM's advice provider. set Inserts the specified value under the specified key in a Sparse Merkle Tree defined by the specified root. If the insert is successful, the old value located under the specified key is returned via the stack.If VALUE is an empty word (i.e., [ZERO; 4]), the new state of the tree is guaranteed to be equivalent to the state as if the updated value was never inserted.Inputs: - Operand stack: [VALUE, key, ROOT, ...]Outputs:- Operand stack: [OLD_VALUE, NEW_ROOT, ...]Fails if the tree with the specified root does not exits in the VM's advice provider. insert Inserts the specified value under the specified key in a Sparse Merkle Tree defined by the specified root. If the insert is successful, the old value located under the specified key is returned via the stack.This procedure requires that VALUE be a non-empty word (i.e., not [ZERO; 4]).Inputs:- Operand stack: [VALUE, key, ROOT, ...]Outputs: -Operand stack: [OLD_VALUE, NEW_ROOT, ...]Fails if:- The tree with the specified root does not exits in the VM's advice provider.- The provided value is an empty word.","breadcrumbs":"User Documentation » Miden Standard Library » std::collections » Sparse Merkle Tree (64)","id":"75","title":"Sparse Merkle Tree (64)"},"76":{"body":"Namespace std::crypto::fri contains modules for verifying FRI proofs.","breadcrumbs":"User Documentation » Miden Standard Library » std::crypto::fri » FRI verification procedures","id":"76","title":"FRI verification procedures"},"77":{"body":"Module std::crypto::fri::frie2f4 contains procedures for verifying FRI proofs generated over the quadratic extension of the Miden VM's base field. Moreover, the procedures assume that layer folding during the commit phase of FRI protocol was performed using folding factor 4. Procedure Description verify Verifies a FRI proof where the proof was generated over the quadratic extension of the base field and layer folding was performed using folding factor 4.Input: [query_start_ptr, query_end_ptr, layer_ptr, rem_ptr, g, ...]>Output: [...]- query_start_ptr is a pointer to a list of tuples of the form (e0, e1, p, 0) where p is a query index at the first layer and (e0, e1) is an extension field element corresponding to the value of the first layer at index p.- query_end_ptr is a pointer to the first empty memory address after the last (e0, e1, p, 0) tuple.- layer_ptr is a pointer to the first layer commitment denoted throughout the code by C. layer_ptr + 1 points to the first (alpha0, alpha1, t_depth, d_size) where d_size is the size of initial domain divided by 4, t_depth is the depth of the Merkle tree commitment to the first layer and (alpha0, alpha1) is the first challenge used in folding the first layer. Both t_depth and d_size are expected to be smaller than 2^32. Otherwise, the result of this procedure is undefined.- rem_ptr is a pointer to the first tuple of two consecutive degree 2 extension field elements making up the remainder codeword. This codeword can be of length either 32 or 64.The memory referenced above is used contiguously, as follows:[layer_ptr ... rem_ptr ... query_start_ptr ... query_end_ptr]This means for example that:1. rem_ptr - 1 points to the last (alpha0, alpha1, t_depth, d_size) tuple.2. The length of the remainder codeword is 2 * (rem_ptr - query_start_ptr).Cycles: for domains of size 2^n where:- n is even: 12 + 6 + num_queries * (40 + num_layers * 76 + 69) + 2626- n is odd: 12 + 6 + num_queries * (40 + num_layers * 76 + 69) + 1356","breadcrumbs":"User Documentation » Miden Standard Library » std::crypto::fri » FRI Extension 2, Fold 4","id":"77","title":"FRI Extension 2, Fold 4"},"78":{"body":"Namespace std::crypto contains modules for commonly used cryptographic hash functions.","breadcrumbs":"User Documentation » Miden Standard Library » std::crypto::hashes » Cryptographic hashes","id":"78","title":"Cryptographic hashes"},"79":{"body":"Module std::crypto::hashes::blake3 contains procedures for computing hashes using BLAKE3 hash function. The input and output elements are assumed to contain one 32-bit value per element. Procedure Description hash_1to1 Computes BLAKE3 1-to-1 hash.Input: 32-bytes stored in the first 8 elements of the stack (32 bits per element). Output: A 32-byte digest stored in the first 8 elements of stack (32 bits per element). hash_2to1 Computes BLAKE3 2-to-1 hash.Input: 64-bytes stored in the first 16 elements of the stack (32 bits per element). Output: A 32-byte digest stored in the first 8 elements of stack (32 bits per element)","breadcrumbs":"User Documentation » Miden Standard Library » std::crypto::hashes » BLAKE3","id":"79","title":"BLAKE3"},"8":{"body":"External inputs can be provided to Miden VM in two ways: Public inputs can be supplied to the VM by initializing the stack with desired values before a program starts executing. Any number of stack items can be initialized in this way, but providing a large number of public inputs will increase the cost for the verifier. Secret (or nondeterministic) inputs can be supplied to the VM via the advice provider . There is no limit on how much data the advice provider can hold. After a program finishes executing, the elements remaining on the stack become the outputs of the program. Since these outputs will be public inputs for the verifier, having a large stack at the end of execution will increase cost to the verifier. Therefore, it's best to drop unneeded output values. We've provided the truncate_stack utility function in the standard library for this purpose. The number of public inputs and outputs of a program can be reduced by making use of the advice stack and Merkle trees. Just 4 elements are sufficient to represent a root of a Merkle tree, which can be expanded into an arbitrary number of values. For example, if we wanted to provide a thousand public input values to the VM, we could put these values into a Merkle tree, initialize the stack with the root of this tree, initialize the advice provider with the tree itself, and then retrieve values from the tree during program execution using mtree_get instruction (described here ). In the future, other ways of providing public inputs and reading public outputs (e.g., storage commitments) may be added to the VM.","breadcrumbs":"Introduction » Overview » Inputs and outputs","id":"8","title":"Inputs and outputs"},"80":{"body":"Module std::crypto::hashes::sha256 contains procedures for computing hashes using SHA256 hash function. The input and output elements are assumed to contain one 32-bit value per element. Procedure Description hash_1to1 Computes SHA256 1-to-1 hash.Input: 32-bytes stored in the first 8 elements of the stack (32 bits per element). Output: A 32-byte digest stored in the first 8 elements of stack (32 bits per element). hash_2to1 Computes SHA256 2-to-1 hash.Input: 64-bytes stored in the first 16 elements of the stack (32 bits per element). Output: A 32-byte digest stored in the first 8 elements of stack (32 bits per element).","breadcrumbs":"User Documentation » Miden Standard Library » std::crypto::hashes » SHA256","id":"80","title":"SHA256"},"81":{"body":"Module std::math::u64 contains a set of procedures which can be used to perform unsigned 64-bit integer operations. These operations fall into the following categories: Arithmetic operations - addition, multiplication, division etc. Comparison operations - equality, less than, greater than etc. Bitwise operations - binary AND, OR, XOR, bit shifts etc. All procedures assume that an unsigned 64-bit integer (u64) is encoded using two elements, each containing an unsigned 32-bit integer (u32). When placed on the stack, the least-significant limb is assumed to be deeper in the stack. For example, a u64 value a consisting of limbs a_hi and a_lo would be position on the stack like so: [a_hi, a_lo, ... ] Procedures which check whether the input values are encoded correctly are designated with checked prefix. For example, checked_add would fail if any of the top 4 elements on the stack contains a value greater than 232−1. In contrast, wrapping_add and overflowing_add would not perform these checks, and therefore, if any of the top 4 stack elements is greater than 232−1, the operation will not fail but rather will produce an undefined result. Thus, when using versions of procedures which are not checked, it is important to be certain that input values are 32-bit limbs encoding valid u64 values.","breadcrumbs":"User Documentation » Miden Standard Library » std::math::u64 » Unsigned 64-bit integer operations","id":"81","title":"Unsigned 64-bit integer operations"},"82":{"body":"Procedure Description checked_add Performs addition of two unsigned 64-bit integers and fails if the result would overflow. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = (a + b) % 2^64 overflowing_add Performs addition of two unsigned 64-bit integers preserving the overflow. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [overflow_flag, c_hi, c_lo, ...], where c = (a + b) % 2^64 wrapping_add Performs addition of two unsigned 64-bit integers discarding the overflow. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = (a + b) % 2^64 checked_sub Performs subtraction of two unsigned 64-bit integers and fails if the result would underflow. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = (a - b) % 2^64 overflowing_sub Performs subtraction of two unsigned 64-bit integers preserving the overflow. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [underflow_flag, c_hi, c_lo, ...], where c = (a - b) % 2^64 wrapping_sub Performs subtraction of two unsigned 64-bit integers discarding the overflow. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = (a - b) % 2^64 checked_mul Performs multiplication of two unsigned 64-bit integers and fails if the result would overflow. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = (a * b) % 2^64 overflowing_mul Performs multiplication of two unsigned 64-bit integers preserving the overflow. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi_hi, c_hi_lo, c_lo_hi, c_lo_lo, ...], where c = (a * b) % 2^64 wrapping_mul Performs multiplication of two unsigned 64-bit integers discarding the overflow. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = (a * b) % 2^64 checked_div Performs division of two unsigned 64-bit integers discarding the remainder. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a // b unchecked_div Performs division of two unsigned 64-bit integers discarding the remainder. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a // b checked_mod Performs modulo operation of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a % b unchecked_mod Performs modulo operation of two unsigned 64-bit integers. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a % b checked_divmod Performs divmod operation of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [r_hi, r_lo, q_hi, q_lo ...], where r = a % b, q = a // b unchecked_divmod Performs divmod operation of two unsigned 64-bit integers. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [r_hi, r_lo, q_hi, q_lo ...], where r = a % b, q = a // b","breadcrumbs":"User Documentation » Miden Standard Library » std::math::u64 » Arithmetic operations","id":"82","title":"Arithmetic operations"},"83":{"body":"Procedure Description checked_lt Performs less-than comparison of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a < b, and 0 otherwise. unchecked_lt Performs less-than comparison of two unsigned 64-bit integers. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a < b, and 0 otherwise. checked_gt Performs greater-than comparison of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a > b, and 0 otherwise. unchecked_gt Performs greater-than comparison of two unsigned 64-bit integers. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a > b, and 0 otherwise. This takes 11 cycles. checked_lte Performs less-than-or-equal comparison of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a <= b, and 0 otherwise. unchecked_lte Performs less-than-or-equal comparison of two unsigned 64-bit integers. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a <= b, and 0 otherwise. checked_gte Performs greater-than-or-equal comparison of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a >= b, and 0 otherwise. unchecked_gte Performs greater-than-or-equal comparison of two unsigned 64-bit integers. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a >= b, and 0 otherwise. checked_eq Performs equality comparison of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a == b, and 0 otherwise. unchecked_eq Performs equality comparison of two unsigned 64-bit integers. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a == b, and 0 otherwise. checked_neq Performs inequality comparison of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a != b, and 0 otherwise. unchecked_neq Performs inequality comparison of two unsigned 64-bit integers. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a != b, and 0 otherwise. checked_eqz Performs comparison to zero of an unsigned 64-bit integer. The input value is assumed to be represented using 32-bit limbs, fails if it is not. The stack transition looks as follows: [a_hi, a_lo, ...] -> [c, ...], where c = 1 when a == 0, and 0 otherwise. unchecked_eqz Performs comparison to zero of an unsigned 64-bit integer. The input value is assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [a_hi, a_lo, ...] -> [c, ...], where c = 1 when a == 0, and 0 otherwise. checked_min Compares two unsigned 64-bit integers and drop the larger one from the stack. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a when a < b, and b otherwise. unchecked_min Compares two unsigned 64-bit integers and drop the larger one from the stack. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a when a < b, and b otherwise. checked_max Compares two unsigned 64-bit integers and drop the smaller one from the stack. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a when a > b, and b otherwise. unchecked_max Compares two unsigned 64-bit integers and drop the smaller one from the stack. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a when a > b, and b otherwise.","breadcrumbs":"User Documentation » Miden Standard Library » std::math::u64 » Comparison operations","id":"83","title":"Comparison operations"},"84":{"body":"Procedure Description checked_and Performs bitwise AND of two unsigned 64-bit integers. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [[b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a AND b. checked_or Performs bitwise OR of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a OR b. checked_xor Performs bitwise XOR of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a XOR b. overflowing_shl Performs left shift of one unsigned 64-bit integer preserving the overflow and using the pow2 operation. The input value to be shifted is assumed to be represented using 32-bit limbs. The shift value should be in the range [0, 64), otherwise it will result in an error. The stack transition looks as follows: [b, a_hi, a_lo, ...] -> [d_hi, d_lo, c_hi, c_lo, ...], where (d,c) = a << b, which d contains the bits shifted out. This takes 35 cycles. unchecked_shl Performs left shift of one unsigned 64-bit integer using the pow2 operation. The input value to be shifted is assumed to be represented using 32-bit limbs. The shift value should be in the range [0, 64), otherwise it will result in an error. The stack transition looks as follows: [b, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a << b mod 2^64. This takes 28 cycles. overflowing_shr Performs right shift of one unsigned 64-bit integer preserving the overflow and using the pow2 operation. The input value to be shifted is assumed to be represented using 32-bit limbs. The shift value should be in the range [0, 64), otherwise it will result in an error. The stack transition looks as follows: [b, a_hi, a_lo, ...] -> [d_hi, d_lo, c_hi, c_lo, ...], where c = a >> b, d = a << (64 - b). This takes 94 cycles. unchecked_shr Performs right shift of one unsigned 64-bit integer using the pow2 operation. The input value to be shifted is assumed to be represented using 32-bit limbs. The shift value should be in the range [0, 64), otherwise it will result in an error. The stack transition looks as follows: [b, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a >> b. This takes 44 cycles. unchecked_rotl Performs left rotation of one unsigned 64-bit integer using the pow2 operation. The input value to be shifted is assumed to be represented using 32-bit limbs. The shift value should be in the range [0, 64), otherwise it will result in an error. The stack transition looks as follows: [b, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a << b mod 2^64. This takes 35 cycles. unchecked_rotr Performs right rotation of one unsigned 64-bit integer using the pow2 operation. The input value to be shifted is assumed to be represented using 32-bit limbs. The shift value should be in the range [0, 64), otherwise it will result in an error. The stack transition looks as follows: [b, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a << b mod 2^64. This takes 40 cycles.","breadcrumbs":"User Documentation » Miden Standard Library » std::math::u64 » Bitwise operations","id":"84","title":"Bitwise operations"},"85":{"body":"Module std::mem contains a set of utility procedures for working with random access memory. Procedure Description memcopy Copies n words from read_ptr to write_ptr.Stack transition looks as follows:[n, read_ptr, write_ptr, ...] -> [...]Cycles: 15 + 16n pipe_double_words_to_memory Moves an even number of words from the advice stack to memory.Input: [C, B, A, write_ptr, end_ptr, ...]Output: [C, B, A, write_ptr, ...]Where:- The words C, B, and A are the RPO hasher state- A is the capacity- C, B are the rate portion of the state- The value num_words = end_ptr - write_ptr must be positive and evenCycles: 10 + 9 * num_words / 2 pipe_words_to_memory Moves an arbitrary number of words from the advice stack to memory.Input: [num_words, write_ptr, ...]Output: [HASH, write_ptr', ...]Where HASH is the sequential RPO hash of all copied words.Cycles:- Even num_words: 48 + 9 * num_words / 2- Odd num_words: 65 + 9 * round_down(num_words / 2) pipe_preimage_to_memory Moves an arbitrary number of words from the advice stack to memory and asserts it matches the commitment.Input: [num_words, write_ptr, COM, ...]Output: [write_ptr', ...]Cycles:- Even num_words: 58 + 9 * num_words / 2 - Odd num_words: 75 + 9 * round_down(num_words / 2)","breadcrumbs":"User Documentation » Miden Standard Library » std::mem » Memory procedures","id":"85","title":"Memory procedures"},"86":{"body":"Module std::sys contains a set of system-level utility procedures. Procedure Description truncate_stack Removes elements deep in the stack until the depth of the stack is exactly 16. The elements are removed in such a way that the top 16 elements of the stack remain unchanged. If the stack would otherwise contain more than 16 elements at the end of execution, then adding a call to this function at the end will reduce the size of the public inputs that are shared with the verifier.Input: Stack with 16 or more elements. Output: Stack with only the original top 16 elements.","breadcrumbs":"User Documentation » Miden Standard Library » std:sys » System procedures","id":"86","title":"System procedures"},"87":{"body":"In the following sections, we provide in-depth descriptions of Miden VM internals, including all AIR constraints for the proving system. We also provide rationale for making specific design choices. Throughout these sections we adopt the following notations and assumptions: All arithmetic operations, unless noted otherwise, are assumed to be in a prime field with modulus p=264−232+1. A binary value means a field element which is either 0 or 1. We use lowercase letters to refer to individual field elements (e.g., a), and uppercase letters to refer to groups of 4 elements, also referred to as words (e.g., A). To refer to individual elements within a word, we use numerical subscripts. For example, a0 is the first element of word A, b3 is the last element of word B, etc. When describing AIR constraints: For a column x, we denote the value in the current row simply as x, and the value in the next row of the column as x′. Thus, all transition constraints for Miden VM work with two consecutive rows of the execution trace. For multiset equality constraints, we denote random values sent by the verifier after the prover commits to the main execution trace as α0,α1,α2 etc. To differentiate constraints from other formulas, we frequently use the following format for constraint equations. x′−(x+y)=0 | degree=1 In the above, the constraint equation is followed by the implied algebraic degree of the constraint. This degree is determined by the number of multiplications between trace columns. If a constraint does not involve any multiplications between columns, its degree is 1. If a constraint involves multiplication between two columns, its degree is 2. If we need to multiply three columns together, the degree is 3 ect. The maximum allowed constraint degree in Miden VM is 9. If a constraint degree grows beyond that, we frequently need to introduce additional columns to reduce the degree.","breadcrumbs":"Design » Design","id":"87","title":"Design"},"88":{"body":"Miden VM consists of several interconnected components, each providing a specific set of functionality. These components are: System , which is responsible for managing system data, including the current VM cycle (clk), the free memory pointer (fmp) used for specifying the region of memory available to procedure locals, and the current and parent execution contexts. Program decoder , which is responsible for computing a commitment to the executing program and converting the program into a sequence of operations executed by the VM. Operand stack , which is a push-down stack which provides operands for all operations executed by the VM. Range checker , which is responsible for providing 16-bit range checks needed by other components. Chiplets , which is a set of specialized circuits used to accelerate commonly-used complex computations. Currently, the VM relies on 4 chiplets: Hash chiplet, used to compute Rescue Prime Optimized hashes both for sequential hashing and for Merkle tree hashing. Bitwise chiplet, used to compute bitwise operations (e.g., AND, XOR) over 32-bit integers. Memory chiplet, used to support random-access memory in the VM. Kernel ROM chiplet, used to enable calling predefined kernel procedures which are provided before execution begins. The above components are connected via buses , which are implemented using multiset checks . We also use multiset checks internally within components to describe virtual tables .","breadcrumbs":"Design » VM components","id":"88","title":"VM components"},"89":{"body":"The execution trace of Miden VM consists of 71 main trace columns, 2 buses, and 5 virtual tables, as shown in the diagram below. vm_trace.png As can be seen from the above, the system, decoder, stack, and range checker components use dedicated sets of columns, while all chiplets share the same 17 columns. To differentiate between chiplets, we use a set of binary selector columns, a combination of which uniquely identifies each chiplet. The system component does not yet have a dedicated documentation section, since the design is likely to change. However, the following two columns are not expected to change: clk which is used to keep track of the current VM cycle. Values in this column start out at 0 and are incremented by 1 with each cycle. fmp which contains the value of the free memory pointer used for specifying the region of memory available to procedure locals. AIR constraints for the fmp column are described in system operations section. For the clk column, the constraints are straightforward: clk′−(clk+1)=0 | degree=1","breadcrumbs":"Design » VM execution trace","id":"89","title":"VM execution trace"},"9":{"body":"For reasons explained here , the VM imposes the restriction that the stack depth cannot be smaller than 16. This has the following effects: When initializing a program with fewer than 16 inputs, the VM will pad the stack with zeros to ensure the depth is 16 at the beginning of execution. If an operation would result in the stack depth dropping below 16, the VM will insert a zero at the deep end of the stack to make sure the depth stays at 16.","breadcrumbs":"Introduction » Overview » Stack depth restrictions","id":"9","title":"Stack depth restrictions"},"90":{"body":"Miden VM consumes programs in a form of a Merkelized Abstract Syntax Tree (MAST). This tree is a binary tree where each node is a code block . The VM starts execution at the root of the tree, and attempts to recursively execute each required block according to its semantics. If the execution of a code block fails, the VM halts at that point and no further blocks are executed. A set of currently available blocks and their execution semantics are described below.","breadcrumbs":"Design » Programs » Programs in Miden VM","id":"90","title":"Programs in Miden VM"},"91":{"body":"","breadcrumbs":"Design » Programs » Code blocks","id":"91","title":"Code blocks"},"92":{"body":"A join block is used to describe sequential execution. When the VM encounters a join block, it executes its left child first, and then executes its right child. join_block A join block must always have two children, and thus, cannot be a leaf node in the tree.","breadcrumbs":"Design » Programs » Join block","id":"92","title":"Join block"},"93":{"body":"A split block is used to describe conditional execution. When the VM encounters a split block, it checks the top of the stack. If the top of the stack is 1, it executes the left child, if the top of the stack is 0, it executes the right child. If the top of the stack is neither 0 nor 1, the execution fails. split_block A split block must always have two children, and thus, cannot be a leaf node in the tree.","breadcrumbs":"Design » Programs » Split block","id":"93","title":"Split block"},"94":{"body":"A loop block is used to describe condition-based iterative execution. When the VM encounters a loop block, it checks the top of the stack. If the top of the stack is 1, it executes the loop body, if the top of the stack is 0, the block is not executed. If the top of the stack is neither 0 nor 1, the execution fails. After the body of the loop is executed, the VM checks the top of the stack again. If the top of the stack is 1, the body is executed again, if the top of the stack is 0, the loop is exited. If the top of the stack is neither 0 nor 1, the execution fails. loop_block A loop block must always have one child, and thus, cannot be a leaf node in the tree.","breadcrumbs":"Design » Programs » Loop block","id":"94","title":"Loop block"},"95":{"body":"A call block is used to describe a function call which is executed in a user context . When the VM encounters a call block, it creates a new user context, then executes a program which hashes to the target specified by the call block in the new context. Thus, in order to execute a call block, the VM must be aware of a program with the specified hash. Otherwise, the execution fails. At the end of the call block, execution returns to the previous context. When executing a call block, the VM does the following: Checks if a syscall is already being executed and fails if so. Sets the depth of the stack to 16. Upon return, checks that the depth of the stack is 16. If so, the original stack depth is restored. Otherwise, an error occurs. call_block A call block does not have any children. Thus, it must be leaf node in the tree.","breadcrumbs":"Design » Programs » Call block","id":"95","title":"Call block"},"96":{"body":"A syscall block is used to describe a function call which is executed in the root context . When the VM encounters a syscall block, it returns to the root context, then executes a program which hashes to the target specified by the syscall block. Thus, in order to execute a syscall block, the VM must be aware of a program with the specified hash, and that program must belong to the kernel against which the code is compiled. Otherwise, the execution fails. At the end of the syscall block, execution returns to the previous context. When executing a syscall block, the VM does the following: Checks if a syscall is already being executed and fails if so. Sets the depth of the stack to 16. Upon return, checks that the depth of the stack is 16. If so, the original stack depth is restored. Otherwise, an error occurs. syscall_block A syscall block does not have any children. Thus, it must be leaf node in the tree.","breadcrumbs":"Design » Programs » Syscall block","id":"96","title":"Syscall block"},"97":{"body":"A span block is used to describe a linear sequence of operations. When the VM encounters a span block, it breaks the sequence of operations into batches and groups according to the following rules: A group is represented by a single field element. Thus, assuming a single operation can be encoded using 7 bits, and assuming we are using a 64-bit field, a single group may encode up to 9 operations or a single immediate value. A batch is a set of groups which can be absorbed by a hash function used by the VM in a single permutation. For example, assuming the hash function can absorb up to 8 field elements in a single permutation, a single batch may contain up to 8 groups. There is no limit on the number of batches contained within a single span. Thus, for example, executing 8 pushes in a row will result in two operation batches as illustrated in the picture below: span_block_creation The first batch will contain 8 groups, with the first group containing 7 PUSH opcodes and 1 NOOP, and the remaining 7 groups containing immediate values for each of the push operations. The reason for the NOOP is explained later in this section. The second batch will contain 2 groups, with the first group containing 1 PUSH opcode and 1 NOOP, and the second group containing the immediate value for the last push operation. If a sequence of operations does not have any operations which carry immediate values, up to 72 operations can fit into a single batch. From the user's perspective, all operations are executed in order, however, the VM may insert occasional NOOPs to ensure proper alignment of all operations in the sequence. Currently, the alignment requirements are as follows: An operation carrying an immediate value cannot be the last operation in a group. Thus, for example, if a PUSH operation is the last operation in a group, the VM will insert a NOOP after it. A span block does not have any children, and thus, must be leaf node in the tree.","breadcrumbs":"Design » Programs » Span block","id":"97","title":"Span block"},"98":{"body":"Consider the following program, where a0,...,ai, b0,...,bj etc. represent individual operations: a_0, ..., a_i\nif.true b_0, ..., b_j\nelse c_0, ..., c_k while.true d_0, ..., d_n end e_0, ..., e_m\nend\nf_0, ..., f_l A MAST for this program would look as follows: mast_of_program Execution of this program would proceed as follows: The VM will start execution at the root of the program which is block B5. Since, B5 is a join block , the VM will attempt to execute block B4 first, and only after that execute block f. Block B4 is also a join block , and thus, the VM will execute block a by executing operations a0,...,ai in sequence, and then execute block B3. Block B3 is a split block , and thus, the VM will pop the value off the top of the stack. If the popped value is 1, operations from block b will be executed in sequence. If the popped value is 0, then the VM will attempt to execute block B2. B2 is a join block , thus, the VM will try to execute block B1 first, and then execute operations from block e. Block B1 is also a join_block , and thus, the VM will first execute all operations in block c, and then will attempt to execute block B0. Block B0 is a loop block, thus, the VM will pop the value off the top of the stack. If the pooped value is 1, the VM will execute the body of the loop defined by block d. If the popped value is 0, the VM will not execute block d and instead will move up the tree executing first block e, then f. If the VM does enter the loop, then after operation dn is executed, the VM will pop the value off the top of the stack again. If the popped value is 1, the VM will execute block d again, and again until the top of the stack becomes 0. Once the top of the stack becomes 0, the VM will exit the loop and will move up the tree executing first block e, then f.","breadcrumbs":"Design » Programs » Program example","id":"98","title":"Program example"},"99":{"body":"Every Miden VM program can be reduced to a unique hash value. Specifically, it is infeasible to find two Miden VM programs with distinct semantics which hash to the same value. Padding a program with NOOPs does not change a program's execution semantics, and thus, programs which differ only in the number and/or placement of NOOPs may hash to the same value, although in most cases padding with NOOP should not affect program hash. To prevent program hash collisions we implement domain separation across the variants of control blocks. We define the domain value to be the opcode of the operation that initializes the control block. Below we denote hash to be an arithmetization-friendly hash function with 4-element output and capable of absorbing 8 elements in a single permutation. The hash domain is specified as the subscript of the hash function and its value is used to populate the second capacity register upon initialization of control block hashing - hashdomain(a,b). The hash of a join block is computed as hashjoin(a,b), where a and b are hashes of the code block being joined. The hash of a split block is computed as hashsplit(a,b), where a is a hash of a code block corresponding to the true branch of execution, and b is a hash of a code block corresponding to the false branch of execution. The hash of a loop block is computed as hashloop(a,0), where a is a hash of a code block corresponding to the loop body. The hash of a call block is computed as hashcall(a,0), where a is a hash of a program of which the VM is aware. The hash of a syscall block is computed as hashsyscall(a,0), where a is a hash of a program belonging to the kernel against which the code was compiled. The hash of a span block is computed as hash(a1,...,ak), where ai is the ith batch of operations in the span block. Each batch of operations is defined as containing 8 field elements, and thus, hashing a k-batch span block requires k absorption steps. In cases when the number of operations is insufficient to fill the last batch entirely, NOOPs are appended to the end of the last batch to ensure that the number of operations in the batch is always equal to 8.","breadcrumbs":"Design » Programs » Program hash computation","id":"99","title":"Program hash computation"}},"length":275,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{"'":{"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"233":{"tf":1.0}}},",":{"0":{",":{"0":{",":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"1":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"224":{"tf":1.0},"234":{"tf":1.0}}},"1":{"df":2,"docs":{"224":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"0":{",":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"1":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"1":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"3":{",":{"4":{",":{"5":{",":{"6":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"2":{"df":2,"docs":{"6":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":2,"docs":{"124":{"tf":1.0},"189":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":2,"docs":{"34":{"tf":1.0},"70":{"tf":1.0}}}},".":{"9":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"1":{"0":{"0":{"1":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.0}}},"1":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":103,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":2.23606797749979},"106":{"tf":4.898979485566356},"109":{"tf":1.0},"110":{"tf":2.8284271247461903},"111":{"tf":5.0990195135927845},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":2.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":2.449489742783178},"120":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":2.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":2.0},"137":{"tf":2.0},"138":{"tf":3.4641016151377544},"139":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"154":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":2.8284271247461903},"227":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":3.605551275463989},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":2.23606797749979},"259":{"tf":1.7320508075688772},"261":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"28":{"tf":4.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":6.928203230275509},"34":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":2.23606797749979},"65":{"tf":2.6457513110645907},"66":{"tf":2.8284271247461903},"70":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"83":{"tf":4.0},"84":{"tf":2.449489742783178},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.0},"98":{"tf":2.0}},"s":{"df":1,"docs":{"239":{"tf":1.0}}},"x":{"7":{"b":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"":{"+":{"df":0,"docs":{},"v":{")":{"2":{"df":1,"docs":{"212":{"tf":1.0}}},"4":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"212":{"tf":1.0}}},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"a":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"r":{"+":{"7":{")":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"+":{"8":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"α":{"4":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"n":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"r":{"+":{"7":{")":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},",":{".":{".":{".":{",":{"df":0,"docs":{},"α":{"3":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"α":{"1":{"df":3,"docs":{"252":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0}},"":{",":{"df":0,"docs":{},"α":{"2":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"→":{"1":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"1":{"+":{"a":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"′":{")":{"df":0,"docs":{},"⋅":{"(":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":0,"docs":{},"−":{"1":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{")":{"=":{"0":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},",":{"0":{",":{"0":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"222":{"tf":1.0},"224":{"tf":1.4142135623730951}}},"1":{",":{"0":{",":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"1":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"222":{"tf":1.0},"224":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951}}},"1":{",":{"0":{"df":2,"docs":{"222":{"tf":1.0},"224":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"224":{"tf":1.0},"234":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"3":{",":{"4":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"6":{"7":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"/":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"7":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"1":{"1":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"138":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"266":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0}}},"1":{"0":{"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"138":{"tf":1.0},"274":{"tf":1.0}}},"2":{"4":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"144":{"tf":1.0}}},"6":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"144":{"tf":1.0}}},"df":9,"docs":{"123":{"tf":1.0},"139":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.4142135623730951},"247":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.0}}},"1":{"0":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"1":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"144":{"tf":1.0}}},"6":{"df":1,"docs":{"144":{"tf":1.0}}},"d":{"b":{"b":{"d":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"2":{"7":{"df":0,"docs":{},"e":{"2":{"6":{"df":0,"docs":{},"e":{"4":{"8":{"b":{"df":0,"docs":{},"e":{"3":{"1":{"9":{"8":{"1":{"3":{"3":{"d":{"df":0,"docs":{},"f":{"8":{"c":{"b":{"df":0,"docs":{},"e":{"d":{"6":{"c":{"5":{"8":{"7":{"5":{"d":{"0":{"df":0,"docs":{},"f":{"b":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.0}}},"2":{",":{"1":{"3":{",":{"1":{"4":{",":{"1":{"5":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"144":{"tf":1.0}}},"2":{"df":1,"docs":{"20":{"tf":1.0}}},"3":{"df":2,"docs":{"36":{"tf":1.0},"63":{"tf":1.0}}},"4":{"df":1,"docs":{"144":{"tf":1.0}}},"6":{"df":1,"docs":{"20":{"tf":1.0}}},"8":{"df":3,"docs":{"20":{"tf":1.0},"266":{"tf":1.0},"68":{"tf":1.0}}},"9":{"df":1,"docs":{"247":{"tf":1.4142135623730951}}},"df":12,"docs":{"123":{"tf":1.0},"139":{"tf":1.0},"187":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"246":{"tf":1.0},"258":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"3":{"5":{"6":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"20":{"tf":1.0}}},"df":2,"docs":{"139":{"tf":1.0},"222":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"204":{"tf":1.0}}}}},"4":{"df":2,"docs":{"139":{"tf":1.0},"20":{"tf":1.0}}},"5":{".":{"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"247":{"tf":1.0}}},"df":7,"docs":{"111":{"tf":1.0},"139":{"tf":1.0},"20":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"53":{"tf":1.0},"85":{"tf":1.0}}},"6":{"3":{"df":1,"docs":{"247":{"tf":1.0}}},"df":54,"docs":{"127":{"tf":2.449489742783178},"128":{"tf":2.23606797749979},"129":{"tf":1.0},"131":{"tf":2.0},"133":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"210":{"tf":2.0},"213":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.0},"23":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":2.23606797749979},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"42":{"tf":2.449489742783178},"45":{"tf":2.0},"52":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":2.23606797749979},"88":{"tf":1.0},"9":{"tf":2.23606797749979},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"85":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}}},"7":{"df":6,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"53":{"tf":1.0},"89":{"tf":1.0}}},"8":{"df":2,"docs":{"139":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"9":{"df":3,"docs":{"128":{"tf":1.0},"139":{"tf":1.0},"53":{"tf":1.0}}},"df":118,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"106":{"tf":4.58257569495584},"109":{"tf":1.0},"110":{"tf":2.449489742783178},"111":{"tf":3.4641016151377544},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":2.23606797749979},"116":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":2.6457513110645907},"120":{"tf":2.0},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":2.23606797749979},"126":{"tf":1.7320508075688772},"129":{"tf":1.4142135623730951},"130":{"tf":2.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"138":{"tf":3.1622776601683795},"139":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":2.0},"148":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":2.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":2.0},"232":{"tf":1.4142135623730951},"233":{"tf":2.6457513110645907},"234":{"tf":4.795831523312719},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"245":{"tf":1.7320508075688772},"247":{"tf":4.47213595499958},"250":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":2.449489742783178},"259":{"tf":1.4142135623730951},"261":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.4142135623730951},"274":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":2.0},"34":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":2.8284271247461903},"53":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"60":{"tf":2.6457513110645907},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":2.0},"68":{"tf":2.23606797749979},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"83":{"tf":3.7416573867739413},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"−":{"b":{"6":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"4":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"4":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{")":{"=":{"0":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{")":{"=":{"0":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"b":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"1":{"6":{")":{"=":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{")":{"=":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"k":{"0":{"df":1,"docs":{"234":{"tf":1.0}}},"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"⋅":{"(":{"2":{"3":{"2":{"df":0,"docs":{},"−":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{")":{"=":{"1":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"δ":{"a":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"1":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{"=":{"1":{"df":2,"docs":{"257":{"tf":1.0},"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"δ":{"c":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"z":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"1":{"6":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{")":{"=":{"0":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"159":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"2":{"'":{"df":1,"docs":{"212":{"tf":1.0}}},".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"5":{"df":0,"docs":{},"x":{"df":1,"docs":{"258":{"tf":1.0}}}},"6":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"7":{"0":{"df":1,"docs":{"247":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"139":{"tf":1.0},"20":{"tf":1.0},"68":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"6":{"df":12,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.4142135623730951},"210":{"tf":1.0},"259":{"tf":1.0},"37":{"tf":1.0}}},"8":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"df":1,"docs":{"139":{"tf":1.0}}},"2":{"0":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}},"df":1,"docs":{"139":{"tf":1.0}}},"3":{"0":{"+":{"3":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"37":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"1":{"df":1,"docs":{"45":{"tf":1.0}}},"2":{"df":16,"docs":{"127":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"246":{"tf":1.0},"258":{"tf":1.7320508075688772},"55":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0}},"−":{"1":{"df":4,"docs":{"170":{"tf":1.0},"44":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"139":{"tf":1.0},"56":{"tf":1.0}}},"4":{".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"20":{"tf":1.0}}},"8":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"3":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"t":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":3,"docs":{"102":{"tf":1.0},"139":{"tf":1.0},"247":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"2":{"6":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":2,"docs":{"211":{"tf":1.7320508075688772},"65":{"tf":1.0}}},"6":{"df":1,"docs":{"258":{"tf":1.0}}},"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"≤":{"2":{"1":{"6":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"139":{"tf":1.0}}},"6":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"1":{"5":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"2":{"6":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"−":{"2":{"3":{"2":{"+":{"1":{"df":5,"docs":{"127":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"253":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"139":{"tf":1.0}}},"7":{".":{"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"21":{"tf":1.0}}},"df":3,"docs":{"111":{"tf":1.0},"123":{"tf":1.0},"139":{"tf":1.0}}},"8":{"df":3,"docs":{"139":{"tf":1.0},"20":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"df":2,"docs":{"139":{"tf":1.0},"68":{"tf":1.0}}},"^":{"3":{"2":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"82":{"tf":3.0},"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":74,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":1.0},"209":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"266":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":2.0},"51":{"tf":1.4142135623730951},"52":{"tf":2.449489742783178},"53":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":3.3166247903554},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":2.0},"68":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.7320508075688772},"79":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":2.23606797749979},"87":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"'":{"df":1,"docs":{"212":{"tf":1.0}}},".":{"1":{"df":1,"docs":{"21":{"tf":1.0}}},"6":{"df":1,"docs":{"21":{"tf":1.0}}},"7":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"7":{"2":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"139":{"tf":1.0},"20":{"tf":1.0}}},"1":{"0":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}},"df":2,"docs":{"139":{"tf":1.0},"170":{"tf":1.0}}},"2":{"df":31,"docs":{"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":2.23606797749979},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"258":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"58":{"tf":2.0},"65":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":2.8284271247461903},"80":{"tf":2.8284271247461903},"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"88":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"1":{"3":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"140":{"tf":1.0},"58":{"tf":1.0}}},"4":{"df":1,"docs":{"140":{"tf":1.0}}},"5":{"df":2,"docs":{"140":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"140":{"tf":1.0},"58":{"tf":1.0}}},"7":{"df":3,"docs":{"140":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}},"8":{"df":1,"docs":{"140":{"tf":1.0}}},"9":{"df":1,"docs":{"140":{"tf":1.0}}},"df":49,"docs":{"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":2.23606797749979},"111":{"tf":1.0},"113":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"250":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":2.0},"45":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":3.3166247903554},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"66":{"tf":2.23606797749979},"68":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":1,"docs":{"213":{"tf":1.0}}},"r":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"4":{",":{"5":{",":{"6":{",":{"7":{",":{"8":{",":{"9":{",":{"1":{"0":{",":{"1":{"1":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":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":{"186":{"tf":1.0},"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":3,"docs":{"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0}}},"df":0,"docs":{}},".":{"6":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"0":{"4":{"2":{"6":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"140":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"1":{"8":{"5":{"1":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"140":{"tf":1.0}}},"2":{"df":1,"docs":{"140":{"tf":1.0}}},"3":{"df":1,"docs":{"140":{"tf":1.0}}},"4":{"df":3,"docs":{"140":{"tf":1.0},"58":{"tf":1.0},"84":{"tf":1.0}}},"5":{"df":1,"docs":{"140":{"tf":1.0}}},"6":{"df":1,"docs":{"140":{"tf":1.0}}},"7":{"df":3,"docs":{"140":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.7320508075688772}}},"8":{"df":2,"docs":{"141":{"tf":1.0},"85":{"tf":1.0}}},"9":{"df":1,"docs":{"141":{"tf":1.0}}},"]":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":54,"docs":{"104":{"tf":2.0},"105":{"tf":2.0},"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":2.6457513110645907},"116":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"138":{"tf":2.0},"139":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":2.8284271247461903},"166":{"tf":1.7320508075688772},"167":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"200":{"tf":1.0},"202":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":2.0},"209":{"tf":1.7320508075688772},"217":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"247":{"tf":2.23606797749979},"258":{"tf":1.7320508075688772},"269":{"tf":1.0},"31":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":3.3166247903554},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"65":{"tf":1.7320508075688772},"66":{"tf":2.6457513110645907},"72":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}},"n":{"df":2,"docs":{"212":{"tf":1.0},"216":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}}},"5":{",":{"6":{",":{"7":{",":{"8":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"2":{"df":2,"docs":{"141":{"tf":1.0},"20":{"tf":1.0}}},"3":{"df":1,"docs":{"141":{"tf":1.0}}},"4":{"df":1,"docs":{"141":{"tf":1.0}}},"5":{"df":1,"docs":{"141":{"tf":1.0}}},"6":{"df":1,"docs":{"141":{"tf":1.0}}},"7":{"df":2,"docs":{"141":{"tf":1.0},"20":{"tf":1.0}}},"8":{"df":2,"docs":{"141":{"tf":1.0},"85":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"5":{"0":{"df":0,"docs":{},"x":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"141":{"tf":1.0},"58":{"tf":1.0}}},"df":27,"docs":{"113":{"tf":2.0},"116":{"tf":1.4142135623730951},"132":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.0},"142":{"tf":2.0},"143":{"tf":4.0},"144":{"tf":1.0},"200":{"tf":1.0},"222":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.449489742783178},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0}}},"6":{".":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"6":{"c":{"9":{"df":0,"docs":{},"f":{"0":{"3":{"7":{"c":{"7":{"8":{"9":{"3":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"e":{"4":{"1":{"1":{"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":1,"docs":{"141":{"tf":1.0}}},"1":{"df":2,"docs":{"141":{"tf":1.0},"20":{"tf":1.0}}},"2":{"df":1,"docs":{"141":{"tf":1.0}}},"3":{"df":2,"docs":{"141":{"tf":1.0},"52":{"tf":1.0}}},"4":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":23,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"213":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"266":{"tf":1.0},"38":{"tf":1.4142135623730951},"6":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":4.0},"97":{"tf":1.0}}},"5":{"5":{"3":{"5":{"df":3,"docs":{"213":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.0}}},"6":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.0}},"k":{"df":1,"docs":{"213":{"tf":1.0}}}},"6":{"df":2,"docs":{"142":{"tf":1.0},"20":{"tf":1.0}}},"7":{"df":1,"docs":{"20":{"tf":1.0}}},"8":{"df":1,"docs":{"142":{"tf":1.0}}},"9":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}},"df":28,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.7320508075688772},"132":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"142":{"tf":3.1622776601683795},"184":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.7320508075688772},"224":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":2.0},"255":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"77":{"tf":1.4142135623730951}},"x":{"df":1,"docs":{"258":{"tf":1.0}}}},"7":{".":{"7":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"142":{"tf":1.0}}},"1":{"df":1,"docs":{"89":{"tf":1.0}}},"2":{"df":2,"docs":{"142":{"tf":1.0},"97":{"tf":1.0}}},"3":{"df":1,"docs":{"52":{"tf":1.0}}},"4":{"df":1,"docs":{"142":{"tf":1.0}}},"5":{"df":1,"docs":{"85":{"tf":1.0}}},"6":{"df":2,"docs":{"142":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"20":{"tf":1.0}}},"8":{"df":2,"docs":{"142":{"tf":1.0},"20":{"tf":1.0}}},"df":30,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":2.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"126":{"tf":1.0},"138":{"tf":2.6457513110645907},"139":{"tf":5.830951894845301},"140":{"tf":4.123105625617661},"141":{"tf":4.123105625617661},"143":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"240":{"tf":2.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"68":{"tf":1.0},"97":{"tf":1.7320508075688772}}},"8":{",":{"1":{"6":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"9":{",":{"1":{"0":{",":{"1":{"1":{",":{"1":{"2":{",":{"1":{"3":{",":{"1":{"4":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"143":{"tf":1.0},"20":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"2":{"df":1,"docs":{"143":{"tf":1.0}}},"3":{"df":1,"docs":{"143":{"tf":1.0}}},"4":{"df":1,"docs":{"143":{"tf":1.0}}},"5":{"df":2,"docs":{"143":{"tf":1.0},"20":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"143":{"tf":1.0}}},"7":{"df":2,"docs":{"143":{"tf":1.0},"30":{"tf":1.0}}},"8":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"143":{"tf":1.0}}},"9":{"df":2,"docs":{"143":{"tf":1.0},"20":{"tf":1.0}}},"df":45,"docs":{"104":{"tf":2.6457513110645907},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"111":{"tf":3.605551275463989},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":2.0},"121":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"142":{"tf":1.0},"186":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"222":{"tf":1.7320508075688772},"224":{"tf":1.0},"232":{"tf":3.3166247903554},"233":{"tf":1.7320508075688772},"234":{"tf":3.3166247903554},"237":{"tf":1.0},"238":{"tf":2.0},"242":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"246":{"tf":1.7320508075688772},"247":{"tf":1.7320508075688772},"250":{"tf":1.4142135623730951},"252":{"tf":1.0},"258":{"tf":1.0},"29":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"97":{"tf":2.0},"99":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"244":{"tf":1.0}}}},"⋅":{"d":{"df":0,"docs":{},"−":{"1":{"df":2,"docs":{"207":{"tf":1.0},"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"9":{".":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"8":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":2,"docs":{"143":{"tf":1.0},"20":{"tf":1.0}}},"2":{"df":1,"docs":{"143":{"tf":1.0}}},"3":{"df":1,"docs":{"143":{"tf":1.0}}},"4":{"df":2,"docs":{"143":{"tf":1.0},"84":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":1,"docs":{"143":{"tf":1.0}}},"6":{"df":3,"docs":{"144":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0}}},"df":23,"docs":{"105":{"tf":1.0},"111":{"tf":2.23606797749979},"118":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"193":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"247":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"68":{"tf":1.0},"85":{"tf":2.23606797749979},"87":{"tf":1.0},"97":{"tf":1.0}}},"_":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.0}}},"a":{"+":{"1":{"df":1,"docs":{"65":{"tf":1.0}}},"7":{"df":1,"docs":{"116":{"tf":1.0}}},"b":{")":{"df":0,"docs":{},"≥":{"2":{"3":{"2":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"+":{"c":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"173":{"tf":1.0}},"⋅":{"c":{"df":1,"docs":{"177":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"′":{",":{"df":0,"docs":{},"h":{"5":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{",":{"c":{",":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{",":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"/":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":7,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"34":{"tf":1.0},"54":{"tf":2.8284271247461903},"65":{"tf":1.4142135623730951},"70":{"tf":1.0},"87":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"a":{"1":{"1":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"df":1,"docs":{"209":{"tf":1.0}},"":{",":{"a":{"2":{"df":0,"docs":{},"":{",":{"a":{"3":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{".":{"a":{"3":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"←":{"df":0,"docs":{},"−":{"a":{"0":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"df":4,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"54":{"tf":2.8284271247461903},"65":{"tf":1.4142135623730951}},"′":{"df":0,"docs":{},"←":{"df":0,"docs":{},"−":{"a":{"1":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"2":{"df":2,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":1.0}}},"3":{"df":2,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":1.0}}},"<":{"2":{"3":{"2":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":1,"docs":{"57":{"tf":1.0}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"53":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}},"=":{"0":{"df":4,"docs":{"165":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}}},"1":{"df":1,"docs":{"51":{"tf":1.0}}},"4":{"1":{"8":{"5":{"1":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":2,"docs":{"164":{"tf":1.0},"51":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"∑":{"df":0,"docs":{},"i":{"=":{"0":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},">":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"6":{"3":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":4,"docs":{"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0}}}},"i":{"df":1,"docs":{"98":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":4,"docs":{"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":95,"docs":{"104":{"tf":1.0},"106":{"tf":3.1622776601683795},"107":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":2.0},"113":{"tf":1.0},"116":{"tf":3.1622776601683795},"117":{"tf":1.7320508075688772},"118":{"tf":2.23606797749979},"120":{"tf":2.0},"122":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":2.23606797749979},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"138":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":2.23606797749979},"207":{"tf":2.0},"208":{"tf":2.0},"212":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":3.1622776601683795},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":2.23606797749979},"255":{"tf":1.7320508075688772},"256":{"tf":2.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.4142135623730951},"272":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"p":{"df":3,"docs":{"232":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"62":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.7320508075688772},"74":{"tf":1.0}}}}},"r":{"b":{"df":15,"docs":{"104":{"tf":2.23606797749979},"106":{"tf":1.0},"111":{"tf":2.6457513110645907},"115":{"tf":1.4142135623730951},"116":{"tf":2.23606797749979},"232":{"tf":2.0},"233":{"tf":1.0},"238":{"tf":2.0},"239":{"tf":2.0},"240":{"tf":2.0},"243":{"tf":1.7320508075688772},"244":{"tf":1.4142135623730951},"245":{"tf":2.0},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"116":{"tf":2.0},"99":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":1,"docs":{"166":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"15":{"tf":2.23606797749979},"220":{"tf":1.0},"88":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":32,"docs":{"116":{"tf":1.7320508075688772},"127":{"tf":1.0},"199":{"tf":2.449489742783178},"2":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"220":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.7320508075688772},"260":{"tf":1.0},"263":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":2.449489742783178},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":2.0},"72":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"257":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":15,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"259":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}}}},"r":{"d":{"df":7,"docs":{"100":{"tf":1.0},"104":{"tf":1.7320508075688772},"113":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"247":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":15,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"210":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"35":{"tf":2.23606797749979},"69":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"227":{"tf":3.0}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"231":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"105":{"tf":1.0},"111":{"tf":1.4142135623730951},"213":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{".":{"1":{"df":1,"docs":{"23":{"tf":1.0}}},"b":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":34,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":3.605551275463989},"110":{"tf":2.0},"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.449489742783178},"126":{"tf":2.23606797749979},"130":{"tf":1.7320508075688772},"140":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.7320508075688772},"2":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.7320508075688772},"23":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.0},"248":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"265":{"tf":1.0},"38":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":38,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"2":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"259":{"tf":1.0},"38":{"tf":1.4142135623730951},"48":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"133":{"tf":1.0},"221":{"tf":1.0},"255":{"tf":1.0},"271":{"tf":1.0},"45":{"tf":1.0}}}}}}},"r":{"=":{"0":{"df":1,"docs":{"264":{"tf":1.0}}},"1":{"df":1,"docs":{"264":{"tf":1.0}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"262":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"111":{"tf":2.23606797749979},"223":{"tf":1.0},"254":{"tf":2.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"261":{"tf":1.7320508075688772},"262":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":46,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"106":{"tf":3.3166247903554},"111":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":3.1622776601683795},"118":{"tf":1.4142135623730951},"121":{"tf":2.0},"126":{"tf":2.0},"128":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"17":{"tf":1.0},"200":{"tf":2.0},"201":{"tf":2.0},"202":{"tf":2.0},"203":{"tf":2.0},"204":{"tf":1.7320508075688772},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"253":{"tf":1.7320508075688772},"254":{"tf":2.23606797749979},"255":{"tf":2.449489742783178},"256":{"tf":2.8284271247461903},"257":{"tf":2.6457513110645907},"258":{"tf":3.3166247903554},"259":{"tf":2.6457513110645907},"261":{"tf":1.0},"264":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"44":{"tf":2.6457513110645907},"45":{"tf":2.0},"6":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":3.4641016151377544},"77":{"tf":1.0}}}}},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{")":{"=":{"0":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":25,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":2.8284271247461903},"112":{"tf":1.7320508075688772},"117":{"tf":3.1622776601683795},"118":{"tf":3.3166247903554},"126":{"tf":2.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"213":{"tf":1.0},"221":{"tf":1.4142135623730951},"247":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"6":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.0},"223":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"127":{"tf":1.0},"138":{"tf":1.0},"241":{"tf":1.0},"87":{"tf":1.0}}}}},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"6":{"4":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"w":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"65":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"4":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"65":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"100":{"tf":1.0},"150":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"21":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":15,"docs":{"10":{"tf":3.1622776601683795},"17":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"207":{"tf":1.0},"6":{"tf":2.6457513110645907},"62":{"tf":2.449489742783178},"65":{"tf":4.898979485566356},"68":{"tf":2.23606797749979},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"8":{"tf":2.0},"85":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"[":{"df":0,"docs":{},"k":{"]":{"df":0,"docs":{},"←":{"[":{"a":{",":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"141":{"tf":1.0},"197":{"tf":2.0}},"w":{"df":2,"docs":{"139":{"tf":1.0},"198":{"tf":2.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"137":{"tf":1.4142135623730951},"203":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"106":{"tf":1.0},"110":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":1.0},"219":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"265":{"tf":1.0},"45":{"tf":2.0},"49":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"t":{"df":21,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":1.0},"16":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0},"231":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"68":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":6,"docs":{"166":{"tf":1.0},"224":{"tf":1.0},"246":{"tf":1.4142135623730951},"247":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":2.23606797749979}}}}}},"o":{"df":1,"docs":{"31":{"tf":1.0}}}},"i":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":2,"docs":{"250":{"tf":1.4142135623730951},"99":{"tf":1.0}},"r":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":20,"docs":{"113":{"tf":1.7320508075688772},"116":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"248":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"4":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"":{"<":{"2":{"3":{"2":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"∀":{"df":0,"docs":{},"i":{"df":0,"docs":{},"∈":{"df":0,"docs":{},"{":{"0":{",":{"1":{",":{"2":{",":{"3":{"df":0,"docs":{},"}":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":1,"docs":{"274":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"222":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"128":{"tf":1.0},"254":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":14,"docs":{"111":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.0},"213":{"tf":2.0},"221":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.4142135623730951},"248":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"40":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}},"g":{"df":2,"docs":{"17":{"tf":1.0},"29":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"0":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"123":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":7,"docs":{"116":{"tf":1.0},"17":{"tf":1.0},"227":{"tf":1.0},"245":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":22,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"209":{"tf":1.0},"221":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.4142135623730951},"260":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}}},"d":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"258":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"69":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"129":{"tf":1.0},"268":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}},"z":{"df":1,"docs":{"16":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"d":{"(":{"a":{",":{"b":{")":{"=":{"3":{"3":{"1":{"3":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"⋅":{"b":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"65":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"170":{"tf":1.0},"211":{"tf":1.4142135623730951},"221":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0},"36":{"tf":1.0},"62":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"221":{"tf":1.0},"246":{"tf":1.0},"74":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":3,"docs":{"15":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772}},"i":{"c":{"df":6,"docs":{"1":{"tf":1.0},"113":{"tf":1.0},"15":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0}}},"df":20,"docs":{"113":{"tf":1.0},"121":{"tf":1.0},"135":{"tf":1.0},"19":{"tf":1.0},"206":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":2.0},"226":{"tf":1.0},"227":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"255":{"tf":1.0},"262":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":2.0},"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"111":{"tf":1.0},"209":{"tf":1.0},"251":{"tf":1.0}}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"2":{"tf":1.0},"216":{"tf":1.0},"243":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"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":3,"docs":{"23":{"tf":1.0},"265":{"tf":1.0},"270":{"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":9,"docs":{"155":{"tf":1.0},"2":{"tf":1.0},"274":{"tf":1.4142135623730951},"52":{"tf":1.0},"57":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"45":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}}},"y":{"df":2,"docs":{"10":{"tf":1.0},"17":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":27,"docs":{"16":{"tf":2.449489742783178},"2":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":3.605551275463989},"35":{"tf":3.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"46":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772}},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"51":{"tf":1.0}},"w":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":5,"docs":{"140":{"tf":1.0},"151":{"tf":1.7320508075688772},"28":{"tf":1.0},"51":{"tf":1.4142135623730951},"85":{"tf":1.0}},"z":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"257":{"tf":1.0},"44":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":50,"docs":{"113":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"211":{"tf":1.0},"246":{"tf":1.4142135623730951},"258":{"tf":1.0},"268":{"tf":1.0},"34":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":3.0},"83":{"tf":3.1622776601683795},"84":{"tf":2.6457513110645907},"87":{"tf":1.0},"97":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"274":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":3.0},"111":{"tf":1.0},"129":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"104":{"tf":1.0},"115":{"tf":1.0},"22":{"tf":1.4142135623730951},"26":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"66":{"tf":1.7320508075688772},"69":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"95":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}},"y":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"′":{",":{"a":{",":{"0":{"df":1,"docs":{"117":{"tf":2.0}}},"1":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{",":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"=":{"1":{"6":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"∑":{"df":0,"docs":{},"i":{"=":{"0":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"←":{"a":{"+":{"2":{"df":2,"docs":{"65":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"q":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"−":{"a":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":2,"docs":{"256":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":2,"docs":{"254":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"257":{"tf":1.0},"258":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"←":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"4":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"→":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"−":{"b":{"df":1,"docs":{"175":{"tf":1.0}}},"c":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"≤":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}},"≥":{"2":{"3":{"2":{"df":3,"docs":{"56":{"tf":1.4142135623730951},"58":{"tf":3.3166247903554},"66":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}},"⊕":{"b":{"df":0,"docs":{},"→":{"df":0,"docs":{},"z":{"df":1,"docs":{"246":{"tf":1.0}}}}},"df":0,"docs":{}},"⋅":{"b":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"":{"=":{"0":{"df":1,"docs":{"51":{"tf":1.0}}},"1":{"df":1,"docs":{"51":{"tf":1.0}}},"b":{"df":1,"docs":{"51":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{",":{"c":{")":{"df":0,"docs":{},"←":{"a":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"0":{"df":11,"docs":{"112":{"tf":2.8284271247461903},"128":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.4142135623730951},"196":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"54":{"tf":2.0},"65":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}},"":{",":{".":{".":{".":{",":{"b":{"1":{"1":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":2,"docs":{"103":{"tf":1.0},"138":{"tf":1.0}}},"df":0,"docs":{},"j":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"1":{"df":0,"docs":{},"":{",":{"b":{"2":{"df":0,"docs":{},"":{",":{"b":{"3":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{".":{"b":{"3":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"1":{"6":{"df":3,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"6":{"1":{"df":4,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"":{"=":{"1":{"6":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"′":{"df":0,"docs":{},"":{"=":{"b":{"0":{"df":1,"docs":{"134":{"tf":1.0}},"":{"+":{"1":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"1":{"_":{"0":{"1":{"1":{"0":{"_":{"1":{"0":{"1":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"247":{"tf":1.0}}},"1":{"_":{"1":{"1":{"0":{"1":{"_":{"1":{"1":{"1":{"0":{"_":{"1":{"0":{"1":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"_":{"0":{"0":{"1":{"1":{"_":{"0":{"1":{"1":{"1":{"_":{"1":{"0":{"1":{"1":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"112":{"tf":3.0},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"138":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"54":{"tf":2.0},"65":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}},"":{",":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{",":{"b":{"1":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":2,"docs":{"128":{"tf":1.0},"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":5,"docs":{"112":{"tf":3.1622776601683795},"138":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"98":{"tf":1.4142135623730951}},"−":{"b":{"=":{"0":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":8,"docs":{"112":{"tf":3.0},"138":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"4":{"df":3,"docs":{"112":{"tf":2.0},"138":{"tf":1.0},"98":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":3,"docs":{"138":{"tf":1.0},"144":{"tf":1.0},"98":{"tf":1.4142135623730951}},"":{"=":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"144":{"tf":1.0}},"":{"=":{"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"5":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"4":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"4":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"5":{"df":1,"docs":{"138":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"b":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"=":{"0":{"df":3,"docs":{"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":2.449489742783178}}},"1":{"df":1,"docs":{"165":{"tf":1.0}}},"4":{"0":{"4":{"2":{"6":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"∑":{"df":0,"docs":{},"i":{"=":{"0":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},">":{"3":{"1":{"df":1,"docs":{"58":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"82":{"tf":3.872983346207417},"83":{"tf":4.0},"84":{"tf":1.7320508075688772}}}},"j":{"df":1,"docs":{"98":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"82":{"tf":3.872983346207417},"83":{"tf":4.0},"84":{"tf":1.7320508075688772}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"104":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"152":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"271":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"260":{"tf":1.0},"274":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"23":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"45":{"tf":1.0}}},"df":1,"docs":{"45":{"tf":3.0}}},"s":{"df":0,"docs":{},"e":{"df":20,"docs":{"0":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"113":{"tf":1.0},"124":{"tf":1.0},"147":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"259":{"tf":1.0},"274":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"49":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"126":{"tf":1.0},"2":{"tf":1.0},"242":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":19,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":3.1622776601683795},"106":{"tf":3.1622776601683795},"111":{"tf":5.916079783099616},"115":{"tf":2.449489742783178},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"121":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":4.242640687119285},"126":{"tf":2.8284271247461903},"253":{"tf":1.0},"258":{"tf":1.4142135623730951},"6":{"tf":1.0},"62":{"tf":1.0},"97":{"tf":2.8284271247461903},"99":{"tf":2.449489742783178}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}}},"z":{"df":1,"docs":{"45":{"tf":3.0}}}},"c":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"1":{"df":1,"docs":{"125":{"tf":1.0}}},"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":13,"docs":{"104":{"tf":2.449489742783178},"116":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":2.449489742783178},"233":{"tf":2.0},"245":{"tf":3.3166247903554},"259":{"tf":1.7320508075688772},"261":{"tf":1.0},"273":{"tf":1.0}},"′":{"df":0,"docs":{},"":{"=":{"b":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"116":{"tf":1.0},"245":{"tf":1.0},"263":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"+":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"263":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"263":{"tf":1.0}}},"v":{"a":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"245":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"245":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"259":{"tf":1.0}}}}},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"=":{"b":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"":{"=":{"b":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"=":{"b":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"206":{"tf":1.0},"207":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}},"i":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"b":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":57,"docs":{"100":{"tf":1.0},"106":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"198":{"tf":1.0},"23":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":2.0},"247":{"tf":2.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.0},"266":{"tf":1.7320508075688772},"271":{"tf":2.6457513110645907},"34":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":4.123105625617661},"53":{"tf":3.3166247903554},"56":{"tf":2.449489742783178},"57":{"tf":5.830951894845301},"58":{"tf":5.656854249492381},"59":{"tf":4.0},"60":{"tf":2.449489742783178},"61":{"tf":2.0},"63":{"tf":2.23606797749979},"64":{"tf":1.4142135623730951},"65":{"tf":2.449489742783178},"66":{"tf":1.0},"68":{"tf":2.0},"70":{"tf":1.0},"82":{"tf":4.123105625617661},"83":{"tf":4.47213595499958},"84":{"tf":4.0},"85":{"tf":2.0},"87":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":8,"docs":{"110":{"tf":1.0},"131":{"tf":1.0},"17":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"8":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":20,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"122":{"tf":1.0},"148":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"209":{"tf":1.0},"258":{"tf":1.0},"27":{"tf":1.0},"42":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":19,"docs":{"101":{"tf":1.0},"106":{"tf":2.8284271247461903},"11":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"17":{"tf":1.0},"222":{"tf":1.0},"234":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"33":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"66":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"122":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.0},"45":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"243":{"tf":1.0},"244":{"tf":1.0},"257":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"121":{"tf":1.0},"137":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"7":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"96":{"tf":1.0},"99":{"tf":1.0}}}},"w":{"df":115,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":2.6457513110645907},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.23606797749979},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":2.23606797749979},"208":{"tf":2.449489742783178},"209":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"246":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":2.0},"27":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"274":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"1":{"tf":1.0},"8":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"212":{"tf":1.0},"3":{"tf":1.7320508075688772},"45":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":45,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"213":{"tf":2.449489742783178},"222":{"tf":1.0},"223":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":2.0},"257":{"tf":2.6457513110645907},"258":{"tf":2.449489742783178},"259":{"tf":1.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}}}},"h":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"+":{"df":0,"docs":{},"α":{"7":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"4":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"114":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"111":{"tf":1.0},"250":{"tf":1.4142135623730951}},"g":{"df":2,"docs":{"138":{"tf":1.0},"224":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":47,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"111":{"tf":1.0},"114":{"tf":1.4142135623730951},"120":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"259":{"tf":1.0},"262":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"58":{"tf":2.0},"70":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"d":{"df":2,"docs":{"100":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":63,"docs":{"100":{"tf":1.0},"111":{"tf":2.0},"116":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":3.1622776601683795},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":2.449489742783178},"171":{"tf":2.0},"172":{"tf":1.7320508075688772},"173":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":2.0},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":1.4142135623730951},"213":{"tf":2.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0},"224":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.7320508075688772},"246":{"tf":3.0},"247":{"tf":2.8284271247461903},"250":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"255":{"tf":2.23606797749979},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":2.23606797749979},"266":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"58":{"tf":3.1622776601683795},"6":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":2.23606797749979},"80":{"tf":2.23606797749979},"81":{"tf":2.449489742783178},"82":{"tf":5.477225575051661},"83":{"tf":6.0},"84":{"tf":4.358898943540674},"88":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":19,"docs":{"116":{"tf":1.0},"179":{"tf":2.0},"180":{"tf":2.0},"2":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.4142135623730951},"246":{"tf":2.8284271247461903},"247":{"tf":1.7320508075688772},"248":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":2.449489742783178},"273":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"81":{"tf":1.0},"84":{"tf":2.0},"88":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"3":{"df":3,"docs":{"19":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"+":{"8":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"106":{"tf":5.385164807134504},"111":{"tf":2.449489742783178}}},"o":{"c":{"df":0,"docs":{},"k":{"'":{"df":5,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":2.449489742783178},"115":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":1,"docs":{"118":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"33":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":45,"docs":{"100":{"tf":1.0},"101":{"tf":3.1622776601683795},"102":{"tf":1.0},"103":{"tf":2.23606797749979},"104":{"tf":1.4142135623730951},"105":{"tf":6.164414002968976},"106":{"tf":6.0},"107":{"tf":3.0},"108":{"tf":2.8284271247461903},"109":{"tf":2.6457513110645907},"110":{"tf":3.4641016151377544},"111":{"tf":5.291502622129181},"112":{"tf":5.656854249492381},"113":{"tf":1.7320508075688772},"114":{"tf":2.0},"115":{"tf":3.3166247903554},"116":{"tf":2.449489742783178},"117":{"tf":5.0},"118":{"tf":5.291502622129181},"119":{"tf":2.449489742783178},"121":{"tf":2.0},"122":{"tf":2.449489742783178},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"147":{"tf":1.0},"229":{"tf":1.4142135623730951},"233":{"tf":1.0},"237":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"48":{"tf":1.4142135623730951},"90":{"tf":2.23606797749979},"91":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":2.0},"94":{"tf":2.23606797749979},"95":{"tf":2.8284271247461903},"96":{"tf":2.8284271247461903},"97":{"tf":2.0},"98":{"tf":5.0},"99":{"tf":3.872983346207417}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":10,"docs":{"105":{"tf":1.0},"106":{"tf":2.23606797749979},"110":{"tf":2.6457513110645907},"118":{"tf":2.0},"39":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":2.0},"94":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":33,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":2.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"124":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"172":{"tf":1.0},"19":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.4142135623730951},"23":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.7320508075688772},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"47":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"107":{"tf":1.0},"113":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"267":{"tf":1.0},"271":{"tf":1.0}}}}},"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":5,"docs":{"232":{"tf":1.7320508075688772},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"106":{"tf":1.0},"109":{"tf":2.0},"118":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":5,"docs":{"169":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.7320508075688772},"273":{"tf":1.0}},"e":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"=":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"z":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"1":{"tf":1.0},"23":{"tf":1.0},"257":{"tf":1.0},"33":{"tf":1.0},"97":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":2.449489742783178},"3":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"244":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"213":{"tf":2.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"265":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}}}},"u":{"df":25,"docs":{"104":{"tf":1.0},"116":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.23606797749979},"224":{"tf":1.0},"228":{"tf":2.0},"229":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"252":{"tf":2.0},"259":{"tf":1.7320508075688772},"261":{"tf":1.0},"263":{"tf":2.23606797749979},"265":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951}},"g":{"df":1,"docs":{"1":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"13":{"tf":2.0},"16":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"270":{"tf":1.0},"273":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"35":{"tf":1.4142135623730951},"63":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":2.0},"80":{"tf":2.0}}}}},"}":{"df":0,"docs":{},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"′":{"=":{"1":{"6":{"df":0,"docs":{},"⋅":{"b":{"+":{"df":0,"docs":{},"∑":{"df":0,"docs":{},"i":{"=":{"0":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"=":{"b":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"b":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"←":{"(":{"a":{"+":{"1":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"159":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"¬":{"a":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"−":{"a":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"−":{"a":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"a":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"−":{"1":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"{":{"1":{",":{"0":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"53":{"tf":1.0},"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"−":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"−":{"d":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"≥":{"2":{"3":{"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{",":{"d":{")":{"df":0,"docs":{},"←":{"a":{"+":{"b":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}},"/":{"b":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}},"⋅":{"b":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"54":{"tf":2.0}},"":{",":{"c":{"1":{"df":0,"docs":{},"":{",":{"c":{"2":{"df":2,"docs":{"103":{"tf":1.0},"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"←":{"(":{"a":{"0":{"+":{"b":{"0":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{"0":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"∗":{"b":{"0":{")":{"df":0,"docs":{},"−":{"2":{"df":0,"docs":{},"∗":{"(":{"a":{"1":{"df":0,"docs":{},"∗":{"b":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"54":{"tf":2.0}},"←":{"(":{"a":{"0":{"+":{"a":{"1":{")":{"df":0,"docs":{},"∗":{"(":{"b":{"0":{"+":{"b":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"+":{"b":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"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":{}}},"=":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178}}}}},"1":{"df":4,"docs":{"164":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178}}},"c":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"c":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},">":{"1":{"df":1,"docs":{"61":{"tf":2.0}}},"df":0,"docs":{}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":3,"docs":{"82":{"tf":3.4641016151377544},"83":{"tf":2.0},"84":{"tf":3.0}}}},"k":{"df":1,"docs":{"98":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":3,"docs":{"82":{"tf":3.4641016151377544},"83":{"tf":2.0},"84":{"tf":3.0}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"116":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}}}},"df":0,"docs":{},"l":{".":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":27,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.7320508075688772},"144":{"tf":1.0},"2":{"tf":1.7320508075688772},"211":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.7320508075688772},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"42":{"tf":2.8284271247461903},"43":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":3.0},"96":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":2,"docs":{"257":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772}},"r":{"'":{"df":1,"docs":{"42":{"tf":1.0}}},"df":6,"docs":{"139":{"tf":1.0},"257":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.7320508075688772},"64":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"129":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"c":{"df":11,"docs":{"104":{"tf":1.0},"116":{"tf":1.7320508075688772},"206":{"tf":1.0},"233":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"244":{"tf":1.0},"68":{"tf":1.0},"85":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"212":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"111":{"tf":1.0},"173":{"tf":1.0},"195":{"tf":1.0},"244":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":32,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"177":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.4142135623730951},"233":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"34":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"65":{"tf":2.0},"81":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":2.0}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}},"w":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":37,"docs":{"106":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"164":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"198":{"tf":1.0},"23":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":2.8284271247461903},"53":{"tf":2.6457513110645907},"56":{"tf":1.0},"57":{"tf":4.358898943540674},"58":{"tf":4.242640687119285},"59":{"tf":3.7416573867739413},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.7320508075688772},"77":{"tf":1.0},"82":{"tf":3.605551275463989},"83":{"tf":5.656854249492381},"84":{"tf":2.8284271247461903},"85":{"tf":2.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"113":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":2.23606797749979}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"1":{"df":1,"docs":{"118":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"118":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"118":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"209":{"tf":1.0},"77":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":57,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"111":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"127":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"198":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"223":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772},"257":{"tf":2.6457513110645907},"258":{"tf":2.449489742783178},"259":{"tf":2.8284271247461903},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"264":{"tf":1.0},"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.0},"89":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"17":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{",":{"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"":{",":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"":{",":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":50,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.7320508075688772},"151":{"tf":1.0},"169":{"tf":2.449489742783178},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":2.449489742783178},"211":{"tf":2.8284271247461903},"212":{"tf":1.7320508075688772},"213":{"tf":2.0},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":1.4142135623730951},"219":{"tf":2.23606797749979},"233":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"265":{"tf":2.0},"266":{"tf":1.0},"270":{"tf":1.0},"42":{"tf":1.0},"55":{"tf":1.7320508075688772},"81":{"tf":2.0},"82":{"tf":3.0},"83":{"tf":3.0},"84":{"tf":1.0},"88":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"d":{"d":{"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"82":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"83":{"tf":1.0}},"z":{"df":1,"docs":{"83":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"83":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"169":{"tf":1.0},"217":{"tf":1.0}}},"df":10,"docs":{"169":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"221":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":9,"docs":{"105":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":2.0},"109":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":2.8284271247461903},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":12,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"_":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"221":{"tf":1.0},"226":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.0}}},"df":53,"docs":{"102":{"tf":1.0},"104":{"tf":3.0},"105":{"tf":1.0},"106":{"tf":2.449489742783178},"107":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":4.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":2.0},"205":{"tf":2.0},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"215":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":3.0},"221":{"tf":3.872983346207417},"222":{"tf":3.7416573867739413},"223":{"tf":3.605551275463989},"224":{"tf":2.449489742783178},"225":{"tf":1.0},"226":{"tf":2.8284271247461903},"227":{"tf":2.23606797749979},"228":{"tf":2.6457513110645907},"229":{"tf":2.23606797749979},"230":{"tf":2.8284271247461903},"231":{"tf":2.0},"232":{"tf":2.23606797749979},"233":{"tf":2.6457513110645907},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":3.3166247903554},"246":{"tf":1.0},"249":{"tf":1.0},"252":{"tf":2.0},"253":{"tf":1.0},"259":{"tf":2.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"262":{"tf":2.449489742783178},"263":{"tf":2.0},"264":{"tf":1.7320508075688772},"269":{"tf":2.0},"271":{"tf":1.0},"273":{"tf":2.6457513110645907},"88":{"tf":2.449489742783178},"89":{"tf":1.7320508075688772}},"’":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"4":{"tf":1.0},"7":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"270":{"tf":1.7320508075688772},"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"113":{"tf":1.0},"228":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"245":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"+":{"1":{",":{"df":0,"docs":{},"v":{"2":{",":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"df":0,"docs":{},"v":{"1":{",":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"130":{"tf":1.0},"141":{"tf":1.0},"154":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"245":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.0},"64":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"′":{"df":0,"docs":{},"−":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"+":{"1":{")":{"=":{"0":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":15,"docs":{"130":{"tf":1.4142135623730951},"154":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":2.23606797749979},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"df":25,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"33":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"62":{"tf":1.7320508075688772},"69":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":2.23606797749979}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"104":{"tf":1.0},"118":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"68":{"tf":1.0},"99":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":73,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":4.358898943540674},"106":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.6457513110645907},"113":{"tf":1.4142135623730951},"114":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.23606797749979},"120":{"tf":2.8284271247461903},"121":{"tf":2.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":3.1622776601683795},"128":{"tf":2.8284271247461903},"129":{"tf":3.0},"130":{"tf":2.0},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"169":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"211":{"tf":3.7416573867739413},"212":{"tf":2.23606797749979},"213":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":2.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":3.0},"228":{"tf":2.23606797749979},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":4.123105625617661},"234":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":2.0},"243":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":3.3166247903554},"246":{"tf":4.0},"247":{"tf":3.1622776601683795},"248":{"tf":1.0},"250":{"tf":2.6457513110645907},"251":{"tf":1.4142135623730951},"254":{"tf":3.1622776601683795},"255":{"tf":2.8284271247461903},"256":{"tf":3.0},"257":{"tf":4.0},"258":{"tf":4.358898943540674},"259":{"tf":2.449489742783178},"261":{"tf":2.8284271247461903},"262":{"tf":2.23606797749979},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"266":{"tf":4.242640687119285},"267":{"tf":1.0},"268":{"tf":2.0},"271":{"tf":2.449489742783178},"87":{"tf":2.6457513110645907},"89":{"tf":2.8284271247461903}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":27,"docs":{"116":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"208":{"tf":1.7320508075688772},"213":{"tf":1.0},"217":{"tf":1.0},"224":{"tf":1.7320508075688772},"226":{"tf":1.0},"230":{"tf":1.4142135623730951},"234":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"259":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"89":{"tf":1.0}}}}},"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":6,"docs":{"126":{"tf":1.7320508075688772},"222":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0},"272":{"tf":1.4142135623730951},"3":{"tf":1.0}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"256":{"tf":1.0},"257":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":2.8284271247461903}}}}},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"245":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"77":{"tf":1.7320508075688772},"8":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0},"33":{"tf":1.0},"67":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"69":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":12,"docs":{"116":{"tf":1.7320508075688772},"199":{"tf":1.0},"205":{"tf":1.0},"219":{"tf":1.4142135623730951},"229":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.7320508075688772}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":4,"docs":{"209":{"tf":1.0},"266":{"tf":1.0},"33":{"tf":1.4142135623730951},"83":{"tf":2.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"17":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":3.872983346207417}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":18,"docs":{"13":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":2.0},"2":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":2.0},"38":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"48":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.0},"55":{"tf":1.0}}}}}},"t":{"df":16,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"3":{"tf":1.0}}},"x":{"df":7,"docs":{"102":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"270":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"88":{"tf":1.0}}}},"i":{"df":1,"docs":{"113":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"10":{"tf":1.4142135623730951},"102":{"tf":1.0},"194":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"245":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":2.23606797749979},"271":{"tf":2.23606797749979},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772},"65":{"tf":1.0},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":3,"docs":{"224":{"tf":1.0},"245":{"tf":1.0},"6":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"111":{"tf":1.0},"127":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":94,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":2.8284271247461903},"105":{"tf":2.449489742783178},"106":{"tf":2.0},"107":{"tf":2.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"115":{"tf":2.23606797749979},"116":{"tf":2.23606797749979},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.7320508075688772},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":2.8284271247461903},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":2.449489742783178},"209":{"tf":2.449489742783178},"211":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":2.449489742783178},"224":{"tf":1.0},"228":{"tf":1.4142135623730951},"232":{"tf":3.872983346207417},"233":{"tf":2.6457513110645907},"234":{"tf":2.449489742783178},"235":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"243":{"tf":3.0},"244":{"tf":1.7320508075688772},"245":{"tf":4.242640687119285},"246":{"tf":2.23606797749979},"247":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"268":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":2.449489742783178},"274":{"tf":1.7320508075688772},"47":{"tf":1.0},"58":{"tf":3.1622776601683795},"65":{"tf":1.0},"68":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"88":{"tf":2.0},"99":{"tf":2.6457513110645907}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"247":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":6,"docs":{"232":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":18,"docs":{"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"2":{"tf":1.0},"211":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"245":{"tf":2.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"271":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.0},"49":{"tf":1.4142135623730951},"60":{"tf":2.0},"61":{"tf":1.0},"93":{"tf":1.0},"94":{"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":{"23":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"223":{"tf":2.23606797749979},"262":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"102":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.4142135623730951},"265":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"213":{"tf":1.4142135623730951},"218":{"tf":1.0},"241":{"tf":1.0},"258":{"tf":2.6457513110645907},"77":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"d":{"df":5,"docs":{"101":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"209":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"105":{"tf":2.0},"11":{"tf":1.0},"111":{"tf":1.4142135623730951},"126":{"tf":1.0},"138":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"261":{"tf":1.0},"265":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"32":{"tf":1.0},"38":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.4142135623730951},"81":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}},"t":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"1":{"=":{"3":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"1":{"=":{"1":{"0":{"0":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"=":{"2":{"0":{"0":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"39":{"tf":1.0}}},"df":3,"docs":{"111":{"tf":1.0},"39":{"tf":2.449489742783178},"63":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"218":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951}},"t":{"_":{"_":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":130,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":3.3166247903554},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":2.6457513110645907},"117":{"tf":3.0},"118":{"tf":3.0},"119":{"tf":2.0},"120":{"tf":2.449489742783178},"121":{"tf":2.23606797749979},"122":{"tf":2.23606797749979},"123":{"tf":2.23606797749979},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":3.0},"127":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"135":{"tf":2.6457513110645907},"136":{"tf":1.7320508075688772},"137":{"tf":3.872983346207417},"138":{"tf":2.449489742783178},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.23606797749979},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":2.23606797749979},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"178":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"212":{"tf":2.449489742783178},"213":{"tf":2.0},"214":{"tf":1.0},"218":{"tf":2.0},"219":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":3.3166247903554},"225":{"tf":1.0},"226":{"tf":3.0},"227":{"tf":2.23606797749979},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":2.23606797749979},"241":{"tf":1.7320508075688772},"242":{"tf":2.449489742783178},"243":{"tf":3.0},"244":{"tf":2.0},"245":{"tf":4.47213595499958},"246":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":2.0},"251":{"tf":1.7320508075688772},"252":{"tf":2.0},"253":{"tf":1.0},"254":{"tf":2.449489742783178},"255":{"tf":2.0},"256":{"tf":2.6457513110645907},"257":{"tf":2.6457513110645907},"258":{"tf":1.7320508075688772},"259":{"tf":3.4641016151377544},"262":{"tf":2.8284271247461903},"263":{"tf":1.7320508075688772},"264":{"tf":2.449489742783178},"267":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":2.449489742783178},"4":{"tf":1.0},"87":{"tf":3.4641016151377544},"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"35":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":8,"docs":{"122":{"tf":1.0},"126":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"233":{"tf":1.0},"65":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":80,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.0},"105":{"tf":3.7416573867739413},"111":{"tf":2.23606797749979},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"130":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"217":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":1.4142135623730951},"246":{"tf":2.8284271247461903},"247":{"tf":2.23606797749979},"250":{"tf":1.7320508075688772},"255":{"tf":2.0},"256":{"tf":2.0},"257":{"tf":2.23606797749979},"258":{"tf":3.605551275463989},"259":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":3.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.0},"97":{"tf":2.8284271247461903},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"116":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"258":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"259":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":23,"docs":{"2":{"tf":2.6457513110645907},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":1.0},"257":{"tf":3.3166247903554},"258":{"tf":3.605551275463989},"259":{"tf":2.6457513110645907},"260":{"tf":1.4142135623730951},"3":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":3.7416573867739413},"42":{"tf":2.23606797749979},"43":{"tf":2.0},"44":{"tf":3.0},"45":{"tf":3.7416573867739413},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"88":{"tf":1.0},"95":{"tf":2.0},"96":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":5,"docs":{"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"77":{"tf":1.0}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":27,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":2.449489742783178},"120":{"tf":1.0},"121":{"tf":1.0},"14":{"tf":1.4142135623730951},"143":{"tf":2.0},"144":{"tf":2.449489742783178},"148":{"tf":2.0},"2":{"tf":2.0},"223":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"46":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"7":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"103":{"tf":1.0},"262":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0}}},"t":{"df":2,"docs":{"137":{"tf":1.0},"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"113":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"i":{"df":21,"docs":{"10":{"tf":1.0},"106":{"tf":2.0},"111":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"137":{"tf":1.4142135623730951},"150":{"tf":1.0},"184":{"tf":2.0},"212":{"tf":1.4142135623730951},"234":{"tf":1.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.4142135623730951},"74":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"69":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":22,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"137":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"220":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":19,"docs":{"0":{"tf":1.0},"107":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"166":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"227":{"tf":1.4142135623730951},"230":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"274":{"tf":1.0},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.7320508075688772},"126":{"tf":1.0},"138":{"tf":1.0},"208":{"tf":1.4142135623730951},"228":{"tf":1.0},"246":{"tf":1.4142135623730951},"247":{"tf":1.0},"259":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"266":{"tf":1.0},"48":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":2.0},"122":{"tf":3.1622776601683795},"123":{"tf":2.23606797749979},"124":{"tf":1.4142135623730951},"126":{"tf":2.0},"23":{"tf":2.449489742783178},"48":{"tf":2.0},"58":{"tf":1.4142135623730951},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.0},"150":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"211":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}},"u":{"df":2,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"142":{"tf":1.0},"262":{"tf":1.0},"274":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"257":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":4,"docs":{"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"274":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":7,"docs":{"2":{"tf":1.0},"205":{"tf":2.0},"229":{"tf":1.0},"274":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"140":{"tf":1.0},"192":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.0}},"w":{"df":3,"docs":{"140":{"tf":1.0},"193":{"tf":1.7320508075688772},"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{"0":{"df":1,"docs":{"45":{"tf":2.0}}},"1":{"df":1,"docs":{"45":{"tf":2.23606797749979}}},"2":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}},"df":8,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"257":{"tf":2.23606797749979},"258":{"tf":1.7320508075688772},"259":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":67,"docs":{"1":{"tf":1.0},"103":{"tf":2.0},"105":{"tf":2.23606797749979},"106":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"241":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"259":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"42":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"72":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"255":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":57,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"130":{"tf":1.7320508075688772},"150":{"tf":1.0},"154":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"222":{"tf":2.0},"228":{"tf":1.0},"23":{"tf":2.449489742783178},"231":{"tf":1.0},"232":{"tf":3.4641016151377544},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":2.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":2.0},"259":{"tf":1.0},"265":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":4.242640687119285},"53":{"tf":3.1622776601683795},"54":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951},"56":{"tf":2.6457513110645907},"57":{"tf":5.830951894845301},"58":{"tf":4.58257569495584},"59":{"tf":4.0},"60":{"tf":3.4641016151377544},"61":{"tf":2.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":2.23606797749979},"66":{"tf":3.605551275463989},"68":{"tf":2.8284271247461903},"83":{"tf":1.0},"84":{"tf":2.449489742783178},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{")":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"i":{"c":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"−":{"c":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"257":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"257":{"tf":1.0},"258":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"←":{"(":{"a":{"+":{"b":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"∧":{"b":{"df":2,"docs":{"162":{"tf":1.0},"179":{"tf":1.0}}},"df":0,"docs":{}},"∨":{"b":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"⊕":{"b":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"⋅":{"2":{"b":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"158":{"tf":1.0}},"−":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"+":{"b":{"df":1,"docs":{"57":{"tf":1.0}},"−":{"2":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"⋅":{"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"⋅":{"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"∗":{"b":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"⋅":{"b":{"df":2,"docs":{"52":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{",":{"b":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"{":{"1":{",":{"0":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"53":{"tf":2.6457513110645907},"59":{"tf":3.1622776601683795}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{",":{"b":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"59":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"⌊":{"a":{"/":{"2":{"3":{"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"57":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{",":{"c":{",":{"b":{",":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"e":{")":{"df":0,"docs":{},"←":{"a":{"+":{"b":{"+":{"c":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"c":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"}":{"df":0,"docs":{},"←":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{",":{"b":{",":{"c":{"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":{},"←":{"[":{"a":{"d":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"0":{"df":6,"docs":{"219":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":2.0},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0}}},"1":{"df":6,"docs":{"219":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":2.0},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0}}},"=":{"b":{"=":{"0":{"df":0,"docs":{},"∑":{"6":{"df":0,"docs":{},"":{"(":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"2":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"a":{",":{"b":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"192":{"tf":1.0},"193":{"tf":1.0},"61":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"n":{"df":1,"docs":{"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"77":{"tf":2.0}}}}}}},"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.7320508075688772},"270":{"tf":1.4142135623730951},"272":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"65":{"tf":3.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"8":{"tf":1.0},"88":{"tf":1.0}},"←":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"]":{".":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":21,"docs":{"116":{"tf":1.7320508075688772},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"198":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"57":{"tf":3.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":2.449489742783178},"66":{"tf":1.0},"68":{"tf":2.6457513110645907},"84":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"258":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":4,"docs":{"16":{"tf":1.0},"23":{"tf":2.449489742783178},"24":{"tf":1.0},"3":{"tf":1.4142135623730951}},"g":{"df":3,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":2.23606797749979}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"d":{"df":29,"docs":{"100":{"tf":2.449489742783178},"101":{"tf":1.4142135623730951},"102":{"tf":2.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"111":{"tf":4.123105625617661},"112":{"tf":1.4142135623730951},"113":{"tf":2.449489742783178},"116":{"tf":2.449489742783178},"119":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"138":{"tf":1.0},"147":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"269":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"2":{"df":1,"docs":{"112":{"tf":1.0}}},"4":{"df":1,"docs":{"112":{"tf":1.0}}},"6":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"246":{"tf":1.0},"250":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}}}}}},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"111":{"tf":1.0},"122":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"106":{"tf":1.0},"111":{"tf":2.0},"122":{"tf":2.8284271247461903},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"131":{"tf":1.0},"134":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"44":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":4,"docs":{"127":{"tf":1.0},"6":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"81":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"206":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":57,"docs":{"101":{"tf":1.0},"105":{"tf":1.7320508075688772},"111":{"tf":1.0},"116":{"tf":2.0},"118":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":2.449489742783178},"130":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.4142135623730951},"238":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":2.449489742783178},"252":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"260":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":3.0},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"54":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"19":{"tf":1.0}}}}}}},"g":{"(":{"c":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":28,"docs":{"103":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":3.4641016151377544},"139":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":3.0},"143":{"tf":2.8284271247461903},"144":{"tf":2.0},"183":{"tf":1.0},"209":{"tf":2.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"222":{"tf":2.6457513110645907},"223":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"234":{"tf":1.0},"245":{"tf":1.4142135623730951},"257":{"tf":1.0},"274":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":2.8284271247461903}},"e":{"=":{"1":{"+":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"+":{"4":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":33,"docs":{"118":{"tf":1.4142135623730951},"126":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}},"2":{"+":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"(":{"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":32,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"133":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":2.0},"167":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"199":{"tf":1.0},"218":{"tf":1.4142135623730951},"231":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":2.449489742783178},"251":{"tf":1.4142135623730951},"259":{"tf":2.0},"262":{"tf":1.7320508075688772}},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"1":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"1":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"2":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"+":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"170":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"242":{"tf":1.0},"251":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0}},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"2":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"4":{"+":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"125":{"tf":1.7320508075688772},"142":{"tf":1.0},"147":{"tf":1.0},"231":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0}},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"3":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"5":{"df":17,"docs":{"114":{"tf":2.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"147":{"tf":1.4142135623730951},"169":{"tf":1.0},"208":{"tf":1.0},"227":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"259":{"tf":1.7320508075688772}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"6":{"df":12,"docs":{"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":2.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"259":{"tf":1.4142135623730951}}},"7":{"(":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":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":{"114":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.7320508075688772},"122":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0}}},"8":{"df":3,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0}}},"9":{"df":4,"docs":{"114":{"tf":1.0},"124":{"tf":1.0},"135":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"129":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951}}}},"t":{"a":{"df":5,"docs":{"238":{"tf":1.0},"245":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":2.0},"258":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":22,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"135":{"tf":1.4142135623730951},"138":{"tf":1.0},"170":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"250":{"tf":1.0},"252":{"tf":1.0},"263":{"tf":1.0},"36":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"112":{"tf":1.0},"126":{"tf":1.0},"169":{"tf":1.0},"244":{"tf":1.0},"266":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":30,"docs":{"127":{"tf":2.6457513110645907},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":2.449489742783178},"133":{"tf":1.0},"134":{"tf":2.23606797749979},"150":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":2.23606797749979},"191":{"tf":2.23606797749979},"196":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"239":{"tf":1.0},"4":{"tf":1.4142135623730951},"42":{"tf":2.6457513110645907},"45":{"tf":2.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":2.23606797749979},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":86,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.23606797749979},"105":{"tf":1.7320508075688772},"106":{"tf":2.6457513110645907},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":2.6457513110645907},"113":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"181":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.7320508075688772},"245":{"tf":2.449489742783178},"246":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":40,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"137":{"tf":1.0},"147":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"32":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":11,"docs":{"223":{"tf":1.0},"227":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":2.0},"270":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"r":{"df":3,"docs":{"17":{"tf":1.0},"257":{"tf":1.0},"8":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"2":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"106":{"tf":1.0},"137":{"tf":1.4142135623730951},"16":{"tf":1.0},"209":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"104":{"tf":1.0},"222":{"tf":1.0},"239":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"107":{"tf":1.4142135623730951},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"128":{"tf":1.0},"130":{"tf":1.0},"170":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"239":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":7,"docs":{"2":{"tf":1.0},"22":{"tf":1.0},"255":{"tf":1.0},"274":{"tf":1.0},"32":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":59,"docs":{"106":{"tf":3.872983346207417},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.0},"113":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":23,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":2.23606797749979},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"118":{"tf":1.4142135623730951},"24":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"255":{"tf":1.0},"256":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"36":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"18":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"243":{"tf":1.0},"82":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"137":{"tf":1.4142135623730951},"209":{"tf":1.0},"226":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"23":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":1,"docs":{"52":{"tf":1.4142135623730951}},"i":{"d":{"df":20,"docs":{"104":{"tf":2.449489742783178},"111":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"245":{"tf":1.0},"259":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"65":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"n":{"df":1,"docs":{"98":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"220":{"tf":1.0},"226":{"tf":1.0},"32":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"4":{"tf":2.0},"40":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}}}},"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"212":{"tf":1.0},"239":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"264":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"116":{"tf":1.0},"209":{"tf":3.3166247903554},"233":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":6,"docs":{"105":{"tf":1.0},"19":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":23,"docs":{"105":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"116":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"135":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":2.0},"255":{"tf":1.4142135623730951},"259":{"tf":2.0},"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":6,"docs":{"115":{"tf":1.4142135623730951},"127":{"tf":1.0},"138":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":13,"docs":{"113":{"tf":2.449489742783178},"128":{"tf":1.0},"131":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"183":{"tf":2.0},"31":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.7320508075688772},"8":{"tf":1.0},"83":{"tf":2.0},"9":{"tf":1.0}},"w":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"126":{"tf":1.0},"68":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"18":{"tf":1.0}}}},"p":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}}},".":{"0":{"df":1,"docs":{"60":{"tf":1.0}}},"2":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"184":{"tf":1.0}}},"1":{"1":{"df":1,"docs":{"141":{"tf":1.0}}},"3":{"df":1,"docs":{"141":{"tf":1.0}}},"5":{"df":1,"docs":{"141":{"tf":1.0}}},"df":2,"docs":{"137":{"tf":1.0},"141":{"tf":1.0}}},"2":{"df":1,"docs":{"141":{"tf":1.0}}},"3":{"df":1,"docs":{"141":{"tf":1.0}}},"4":{"df":1,"docs":{"141":{"tf":1.0}}},"5":{"df":2,"docs":{"141":{"tf":1.0},"184":{"tf":1.0}}},"6":{"df":1,"docs":{"141":{"tf":1.0}}},"7":{"df":1,"docs":{"141":{"tf":1.0}}},"9":{"df":1,"docs":{"141":{"tf":1.0}}},"df":6,"docs":{"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"184":{"tf":1.0},"23":{"tf":1.0},"60":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"216":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"184":{"tf":1.0}}},"w":{".":{"0":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"60":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":22,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":2.6457513110645907},"239":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}},"←":{"(":{"a":{"+":{"b":{"+":{"c":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"b":{"+":{"c":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{"1":{",":{"0":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"⌊":{"(":{"a":{"df":0,"docs":{},"⋅":{"b":{")":{"/":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{",":{"d":{"]":{"df":0,"docs":{},"←":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"]":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"+":{"1":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"g":{"df":29,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"111":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"2":{"tf":1.0},"210":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.4142135623730951},"8":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"0":{"df":3,"docs":{"138":{"tf":1.7320508075688772},"143":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772}},"":{"df":0,"docs":{},"−":{"b":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"5":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"4":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"1":{"df":3,"docs":{"138":{"tf":1.7320508075688772},"144":{"tf":1.0},"77":{"tf":1.7320508075688772}},"":{"df":0,"docs":{},"−":{"b":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"5":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"{":{"b":{",":{"a":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"192":{"tf":1.0},"193":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":63,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"127":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.7320508075688772},"2":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.7320508075688772},"221":{"tf":1.7320508075688772},"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"226":{"tf":2.23606797749979},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.7320508075688772},"247":{"tf":1.4142135623730951},"251":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"258":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"137":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.4142135623730951},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"33":{"tf":1.0},"7":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":8,"docs":{"239":{"tf":1.0},"240":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":54,"docs":{"106":{"tf":1.0},"113":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"148":{"tf":1.0},"210":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"47":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":1,"docs":{"184":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":96,"docs":{"10":{"tf":2.0},"100":{"tf":1.7320508075688772},"104":{"tf":3.872983346207417},"109":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951},"111":{"tf":2.449489742783178},"113":{"tf":2.449489742783178},"116":{"tf":1.4142135623730951},"127":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":2.23606797749979},"169":{"tf":1.0},"17":{"tf":2.449489742783178},"170":{"tf":2.449489742783178},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"190":{"tf":2.449489742783178},"191":{"tf":2.449489742783178},"192":{"tf":2.0},"193":{"tf":2.23606797749979},"197":{"tf":1.4142135623730951},"198":{"tf":2.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"202":{"tf":1.7320508075688772},"203":{"tf":2.0},"204":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":2.0},"208":{"tf":2.23606797749979},"209":{"tf":3.4641016151377544},"210":{"tf":1.0},"232":{"tf":2.0},"233":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":3.4641016151377544},"239":{"tf":2.449489742783178},"240":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":2.0},"246":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"34":{"tf":2.8284271247461903},"42":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":1.0},"6":{"tf":2.6457513110645907},"60":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":2.449489742783178},"66":{"tf":3.872983346207417},"68":{"tf":1.4142135623730951},"70":{"tf":3.1622776601683795},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"79":{"tf":3.1622776601683795},"8":{"tf":1.4142135623730951},"80":{"tf":3.1622776601683795},"81":{"tf":1.7320508075688772},"86":{"tf":2.449489742783178},"87":{"tf":2.449489742783178},"97":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}}}}},"i":{"df":1,"docs":{"274":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":17,"docs":{"105":{"tf":2.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0},"267":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.4142135623730951},"75":{"tf":2.0},"77":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"3":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":18,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"123":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"170":{"tf":1.4142135623730951},"234":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}}},"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}},"df":57,"docs":{"100":{"tf":1.0},"101":{"tf":4.242640687119285},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":2.23606797749979},"108":{"tf":1.4142135623730951},"110":{"tf":2.449489742783178},"111":{"tf":2.6457513110645907},"112":{"tf":3.605551275463989},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":2.23606797749979},"120":{"tf":2.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"131":{"tf":1.0},"144":{"tf":1.0},"18":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"233":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"271":{"tf":1.0},"37":{"tf":2.23606797749979},"38":{"tf":2.449489742783178},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":2.23606797749979},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"68":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.4142135623730951},"9":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"138":{"tf":1.0},"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":44,"docs":{"113":{"tf":2.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"129":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"223":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":2.23606797749979},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"250":{"tf":2.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"255":{"tf":1.4142135623730951},"259":{"tf":2.0},"260":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"1":{"tf":1.0},"130":{"tf":1.0},"266":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":43,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"150":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.7320508075688772},"234":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.4142135623730951},"248":{"tf":1.0},"251":{"tf":2.23606797749979},"252":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"23":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.0},"118":{"tf":1.0},"150":{"tf":1.0},"227":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"25":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"112":{"tf":2.8284271247461903},"117":{"tf":2.0},"118":{"tf":1.7320508075688772},"17":{"tf":1.0},"233":{"tf":2.0},"245":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}}},"q":{".":{"2":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"140":{"tf":1.0},"164":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"59":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":25,"docs":{"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"151":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":2.0},"267":{"tf":1.0},"34":{"tf":1.0},"55":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":2.449489742783178},"87":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":3,"docs":{"170":{"tf":1.0},"243":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":1,"docs":{"53":{"tf":1.0}}},"z":{"df":2,"docs":{"139":{"tf":1.0},"165":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"110":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"40":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":2.449489742783178},"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"t":{"c":{"df":19,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"212":{"tf":1.0},"232":{"tf":1.4142135623730951},"239":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":1,"docs":{"274":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":6,"docs":{"118":{"tf":1.0},"133":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"19":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":10,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":1.0},"213":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":14,"docs":{"101":{"tf":1.4142135623730951},"121":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"169":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"250":{"tf":1.0},"267":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"86":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":50,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":2.449489742783178},"190":{"tf":1.0},"191":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"254":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"272":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":2.23606797749979},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":11,"docs":{"111":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"230":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"105":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"234":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"42":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":5,"docs":{"113":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"234":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{".":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"37":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":3,"docs":{"23":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951}}}}},"u":{"6":{"4":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"38":{"tf":1.0},"42":{"tf":2.449489742783178},"44":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":121,"docs":{"0":{"tf":2.0},"10":{"tf":1.4142135623730951},"100":{"tf":3.0},"101":{"tf":3.1622776601683795},"102":{"tf":1.4142135623730951},"103":{"tf":2.449489742783178},"105":{"tf":3.3166247903554},"106":{"tf":5.385164807134504},"107":{"tf":1.4142135623730951},"108":{"tf":2.6457513110645907},"109":{"tf":2.23606797749979},"11":{"tf":2.0},"110":{"tf":3.872983346207417},"111":{"tf":4.47213595499958},"112":{"tf":3.605551275463989},"113":{"tf":3.0},"114":{"tf":3.1622776601683795},"115":{"tf":2.0},"116":{"tf":2.6457513110645907},"117":{"tf":3.0},"118":{"tf":3.4641016151377544},"120":{"tf":2.6457513110645907},"121":{"tf":1.4142135623730951},"122":{"tf":2.8284271247461903},"123":{"tf":2.8284271247461903},"124":{"tf":2.0},"125":{"tf":1.4142135623730951},"126":{"tf":2.449489742783178},"127":{"tf":1.7320508075688772},"129":{"tf":1.0},"13":{"tf":2.0},"132":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"148":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":3.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"20":{"tf":2.23606797749979},"209":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"211":{"tf":1.4142135623730951},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":2.0},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":2.0},"232":{"tf":4.242640687119285},"233":{"tf":2.0},"234":{"tf":1.0},"236":{"tf":2.0},"237":{"tf":2.0},"238":{"tf":2.23606797749979},"239":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"240":{"tf":2.6457513110645907},"241":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"260":{"tf":2.0},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":2.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"38":{"tf":2.23606797749979},"41":{"tf":3.3166247903554},"42":{"tf":2.449489742783178},"43":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":4.795831523312719},"46":{"tf":1.0},"47":{"tf":2.23606797749979},"48":{"tf":1.0},"49":{"tf":2.6457513110645907},"50":{"tf":1.0},"55":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"8":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.23606797749979},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":2.23606797749979},"92":{"tf":1.7320508075688772},"93":{"tf":2.0},"94":{"tf":2.6457513110645907},"95":{"tf":2.6457513110645907},"96":{"tf":2.6457513110645907},"97":{"tf":1.4142135623730951},"98":{"tf":4.358898943540674},"99":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"|":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{":":{":":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}},"t":{"df":12,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"147":{"tf":1.0},"24":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.0}}}},"p":{".":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"c":{"df":2,"docs":{"139":{"tf":1.0},"166":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"33":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"166":{"tf":1.7320508075688772},"28":{"tf":1.0},"52":{"tf":1.7320508075688772}},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"1":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"19":{"tf":2.0},"2":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"221":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"38":{"tf":1.0},"50":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":2.8284271247461903},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"265":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"105":{"tf":1.0},"195":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}},"z":{".":{"2":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"38":{"tf":1.0},"40":{"tf":1.0}}}}},"u":{"6":{"4":{":":{":":{"a":{"d":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"38":{"tf":2.6457513110645907},"43":{"tf":1.0}}}},"s":{"df":7,"docs":{"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"132":{"tf":1.0},"137":{"tf":1.0},"199":{"tf":1.0},"35":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"118":{"tf":1.0},"134":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"33":{"tf":1.0},"46":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951}}}}}}},"t":{"2":{"a":{"d":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"139":{"tf":1.0},"167":{"tf":1.7320508075688772},"54":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"2":{"tf":1.0},"213":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":6,"docs":{"167":{"tf":1.0},"209":{"tf":1.7320508075688772},"253":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":2.23606797749979}}}},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"1":{"tf":1.0},"2":{"tf":1.4142135623730951},"33":{"tf":1.0},"38":{"tf":1.0},"8":{"tf":1.0}}}}},"r":{"a":{"df":6,"docs":{"138":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"←":{"df":0,"docs":{},"⌊":{"(":{"a":{"+":{"b":{"+":{"c":{")":{"/":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"b":{"+":{"c":{")":{"/":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"0":{"df":1,"docs":{"106":{"tf":1.4142135623730951}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"106":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}},"a":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.4142135623730951}},"":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"=":{"1":{"df":2,"docs":{"244":{"tf":1.0},"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"244":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":13,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"233":{"tf":1.0},"35":{"tf":1.0},"46":{"tf":1.0}}}}}},"t":{"df":8,"docs":{"100":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"271":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"209":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}},"d":{"d":{"3":{"_":{"df":0,"docs":{},"m":{"a":{"d":{"d":{"df":0,"docs":{},"":{"=":{"b":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"5":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"4":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"2":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":33,"docs":{"106":{"tf":2.0},"110":{"tf":1.0},"151":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":2.8284271247461903},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":3.0},"58":{"tf":3.0},"59":{"tf":2.8284271247461903},"61":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":2.0},"68":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"82":{"tf":3.0},"83":{"tf":3.0},"84":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"s":{"df":5,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"118":{"tf":1.0},"49":{"tf":1.0},"99":{"tf":1.0}},"e":{"_":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"⋅":{"(":{"b":{"2":{"df":0,"docs":{},"−":{"b":{")":{"=":{"0":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"7":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"13":{"tf":1.0},"55":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}}},"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"=":{"1":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"113":{"tf":1.0},"148":{"tf":1.0}},"i":{"df":1,"docs":{"116":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"137":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"68":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"23":{"tf":1.0},"257":{"tf":1.0},"3":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"d":{",":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"4":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"113":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"g":{"c":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"=":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":8,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"234":{"tf":1.0},"274":{"tf":1.0},"33":{"tf":1.0},"62":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"216":{"tf":1.0},"221":{"tf":1.0},"65":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}}},"g":{"1":{"df":1,"docs":{"126":{"tf":1.4142135623730951}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"2":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"4":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"=":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"c":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"2":{"df":1,"docs":{"126":{"tf":1.4142135623730951}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"c":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"df":1,"docs":{"126":{"tf":1.4142135623730951}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"c":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"c":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}},"":{"=":{"b":{"c":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}},"":{"=":{"1":{"df":3,"docs":{"234":{"tf":1.4142135623730951},"242":{"tf":1.0},"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"b":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"18":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":41,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"111":{"tf":2.0},"127":{"tf":1.0},"139":{"tf":2.6457513110645907},"140":{"tf":2.23606797749979},"155":{"tf":1.7320508075688772},"167":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.7320508075688772},"170":{"tf":2.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.7320508075688772},"209":{"tf":2.0},"210":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"246":{"tf":1.7320508075688772},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"258":{"tf":1.7320508075688772},"266":{"tf":1.7320508075688772},"34":{"tf":2.0},"44":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.0},"6":{"tf":2.23606797749979},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":2.23606797749979},"72":{"tf":1.0},"77":{"tf":2.0},"87":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"18":{"tf":2.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0}}},"l":{"df":2,"docs":{"116":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":17,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"211":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.7320508075688772},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"272":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0}}}},"d":{"df":2,"docs":{"213":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":11,"docs":{"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"129":{"tf":1.0},"17":{"tf":1.0},"231":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"267":{"tf":1.0},"49":{"tf":1.0},"8":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":71,"docs":{"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":2.8284271247461903},"106":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"111":{"tf":3.605551275463989},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.23606797749979},"120":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"147":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"246":{"tf":1.7320508075688772},"247":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":2.6457513110645907},"65":{"tf":1.7320508075688772},"66":{"tf":3.1622776601683795},"70":{"tf":1.0},"77":{"tf":3.0},"79":{"tf":2.0},"80":{"tf":2.0},"87":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979}}}}},"t":{"df":5,"docs":{"111":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"2":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"212":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":45,"docs":{"103":{"tf":2.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":2.23606797749979},"113":{"tf":3.1622776601683795},"114":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"123":{"tf":2.0},"125":{"tf":2.8284271247461903},"126":{"tf":2.0},"132":{"tf":2.6457513110645907},"133":{"tf":2.23606797749979},"135":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":4.123105625617661},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":3.0},"143":{"tf":2.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"146":{"tf":2.0},"147":{"tf":3.0},"148":{"tf":1.7320508075688772},"15":{"tf":1.0},"169":{"tf":1.0},"18":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"224":{"tf":2.23606797749979},"226":{"tf":1.7320508075688772},"234":{"tf":5.0990195135927845},"242":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"251":{"tf":1.0},"262":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"234":{"tf":1.0}}},"w":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"113":{"tf":1.0}},"":{"=":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":19,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":2.449489742783178},"148":{"tf":2.0},"2":{"tf":1.7320508075688772},"25":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"a":{"d":{"d":{"df":2,"docs":{"139":{"tf":1.0},"152":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"234":{"tf":1.4142135623730951}}},"df":5,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"234":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"153":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"":{"=":{"1":{"df":2,"docs":{"244":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"a":{"df":1,"docs":{"234":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"234":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"=":{"1":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":1,"docs":{"234":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"234":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"=":{"1":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"32":{"tf":1.0},"4":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"209":{"tf":3.7416573867739413},"72":{"tf":1.0},"77":{"tf":2.449489742783178}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":166,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.23606797749979},"105":{"tf":2.23606797749979},"106":{"tf":3.0},"108":{"tf":1.0},"111":{"tf":3.0},"112":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":2.449489742783178},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":2.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"135":{"tf":2.449489742783178},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":2.0},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"233":{"tf":2.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":2.0},"243":{"tf":2.6457513110645907},"244":{"tf":1.7320508075688772},"245":{"tf":3.1622776601683795},"246":{"tf":2.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"252":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"255":{"tf":2.0},"256":{"tf":2.0},"257":{"tf":2.0},"259":{"tf":2.6457513110645907},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"87":{"tf":2.0},"89":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"s":{":":{"[":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"'":{"df":1,"docs":{"45":{"tf":1.0}}},"df":3,"docs":{"23":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":2.8284271247461903}}},"p":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"113":{"tf":1.0},"137":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"df":5,"docs":{"122":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}},"t":{"df":2,"docs":{"63":{"tf":1.0},"87":{"tf":1.0}}}},"df":8,"docs":{"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"65":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"234":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"1":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"260":{"tf":1.0},"265":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":15,"docs":{"170":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"258":{"tf":1.0},"262":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":2.0},"70":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"138":{"tf":1.0},"167":{"tf":1.0},"35":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"":{"=":{"1":{"df":3,"docs":{"234":{"tf":1.4142135623730951},"242":{"tf":1.0},"244":{"tf":1.0}}},"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"i":{"=":{"0":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"′":{"df":0,"docs":{},"":{"=":{"1":{"df":2,"docs":{"234":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{},"k":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":1,"docs":{"133":{"tf":1.0}},"":{"=":{"(":{"b":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"1":{"6":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"135":{"tf":1.0}}},"1":{"df":3,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"113":{"tf":1.0},"123":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":2,"docs":{"113":{"tf":1.0},"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"166":{"tf":2.6457513110645907},"167":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"88":{"tf":1.0},"89":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"h":{"4":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"258":{"tf":1.0},"265":{"tf":1.0},"37":{"tf":1.0},"55":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"123":{"tf":1.4142135623730951}},"":{"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"−":{"8":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":5,"docs":{"209":{"tf":1.7320508075688772},"274":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":2.0}},"e":{"2":{"df":0,"docs":{},"f":{"4":{"df":2,"docs":{"140":{"tf":1.0},"209":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"g":{"c":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}},"":{"=":{"0":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}},"1":{"df":3,"docs":{"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"132":{"tf":1.0}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"6":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"4":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"3":{"2":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"146":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"132":{"tf":1.0},"135":{"tf":1.7320508075688772}}},"1":{"df":2,"docs":{"134":{"tf":1.0},"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"b":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}},"":{"=":{"1":{"df":3,"docs":{"234":{"tf":1.4142135623730951},"242":{"tf":1.0},"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"3":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"2":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"113":{"tf":1.0},"123":{"tf":1.4142135623730951}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"2":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"4":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"8":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{")":{"=":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"′":{"=":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"2":{"7":{"df":0,"docs":{},"−":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{")":{"=":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"3":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"113":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"=":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"3":{"2":{"a":{"d":{"d":{"3":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"d":{"d":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"":{"=":{"b":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"5":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"4":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"206":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0},"265":{"tf":1.0}},"i":{"df":4,"docs":{"105":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"2":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":28,"docs":{"11":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"221":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.7320508075688772},"35":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"213":{"tf":1.0},"90":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"6":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0}}}}}}},"g":{"0":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"106":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":2,"docs":{"106":{"tf":1.0},"111":{"tf":2.449489742783178}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"g":{"7":{"df":1,"docs":{"111":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"111":{"tf":2.449489742783178}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"g":{"7":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"111":{"tf":1.0}}},"7":{"df":1,"docs":{"111":{"tf":1.0}}},"9":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"g":{"1":{"0":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"g":{"1":{"1":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"0":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"213":{"tf":2.23606797749979},"258":{"tf":1.7320508075688772}}},"r":{"b":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"209":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":1,"docs":{"20":{"tf":2.23606797749979}}},"c":{"=":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"df":0,"docs":{},"g":{"c":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":2.23606797749979},"126":{"tf":1.0}},"⋅":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"b":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"77":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":24,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"137":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"19":{"tf":2.449489742783178},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"55":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"t":{"df":4,"docs":{"118":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"252":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"101":{"tf":1.0},"216":{"tf":1.0},"226":{"tf":1.0},"266":{"tf":1.0}},"n":{"df":27,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.4142135623730951},"19":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"24":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":2.0},"259":{"tf":1.0},"272":{"tf":1.0},"44":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"35":{"tf":2.449489742783178},"69":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":6,"docs":{"1":{"tf":1.0},"138":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"266":{"tf":1.0},"45":{"tf":1.0}},"o":{"d":{"df":3,"docs":{"1":{"tf":1.0},"106":{"tf":1.0},"274":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"15":{"tf":2.0}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":53,"docs":{"111":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"127":{"tf":1.0},"131":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":2.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":2.8284271247461903},"122":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":29,"docs":{"103":{"tf":2.23606797749979},"105":{"tf":4.358898943540674},"106":{"tf":3.3166247903554},"111":{"tf":8.888194417315589},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"122":{"tf":3.3166247903554},"123":{"tf":4.123105625617661},"124":{"tf":2.6457513110645907},"125":{"tf":3.1622776601683795},"126":{"tf":6.0},"138":{"tf":2.8284271247461903},"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":2.23606797749979},"143":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"269":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"87":{"tf":1.0},"97":{"tf":3.605551275463989}}}},"w":{"df":6,"docs":{"127":{"tf":1.0},"20":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"6":{"tf":1.0},"87":{"tf":1.0}}}}},"t":{"df":1,"docs":{"53":{"tf":1.0}},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"103":{"tf":1.0},"130":{"tf":1.0},"138":{"tf":1.0},"177":{"tf":1.0},"211":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.4142135623730951},"270":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"0":{"df":22,"docs":{"111":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":2.449489742783178},"126":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"233":{"tf":1.4142135623730951}},"":{",":{".":{".":{",":{"df":0,"docs":{},"h":{"3":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}},".":{",":{"df":0,"docs":{},"h":{"1":{"1":{"df":2,"docs":{"233":{"tf":1.0},"244":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":10,"docs":{"106":{"tf":2.23606797749979},"169":{"tf":1.0},"171":{"tf":1.7320508075688772},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"233":{"tf":1.0}}},"4":{"df":2,"docs":{"106":{"tf":1.0},"114":{"tf":1.0}}},"7":{"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":2.6457513110645907},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"h":{"2":{"df":2,"docs":{"201":{"tf":1.0},"203":{"tf":1.0}},"":{",":{"df":0,"docs":{},"h":{"3":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"1":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"1":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"−":{"(":{"(":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"1":{")":{"df":0,"docs":{},"∗":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"1":{")":{"=":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"6":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"2":{"7":{"+":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{")":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"df":11,"docs":{"106":{"tf":1.0},"111":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"233":{"tf":1.0}},"":{",":{".":{".":{".":{"df":0,"docs":{},"h":{"3":{"df":1,"docs":{"111":{"tf":1.0}}},"7":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":7,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0}}},"3":{"df":6,"docs":{"125":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0}}},"4":{"df":5,"docs":{"106":{"tf":1.7320508075688772},"114":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"h":{"1":{"1":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":3,"docs":{"125":{"tf":1.0},"233":{"tf":1.0},"244":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"h":{"7":{"df":1,"docs":{"244":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"5":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"147":{"tf":1.0}},"":{"=":{"1":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"df":1,"docs":{"110":{"tf":1.0}}},"8":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"h":{"1":{"1":{"df":1,"docs":{"244":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.4142135623730951}},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"a":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"101":{"tf":1.7320508075688772},"106":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"144":{"tf":1.0},"23":{"tf":1.0},"90":{"tf":1.0}}}},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"n":{"d":{"df":1,"docs":{"255":{"tf":1.0}},"l":{"df":2,"docs":{"111":{"tf":1.0},"116":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":10,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"122":{"tf":1.4142135623730951},"132":{"tf":1.0},"243":{"tf":1.0},"255":{"tf":1.4142135623730951},"258":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}}}}},"r":{"d":{"df":1,"docs":{"62":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"(":{"a":{"1":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"74":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}}}}}},"_":{"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"1":{"df":2,"docs":{"79":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"2":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"1":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"1":{"df":2,"docs":{"79":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"239":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"(":{"a":{",":{"0":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"(":{"a":{",":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":62,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":5.0},"105":{"tf":3.872983346207417},"106":{"tf":5.291502622129181},"107":{"tf":3.3166247903554},"108":{"tf":2.0},"109":{"tf":1.7320508075688772},"110":{"tf":2.8284271247461903},"111":{"tf":3.0},"112":{"tf":4.358898943540674},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":3.1622776601683795},"116":{"tf":3.605551275463989},"118":{"tf":5.0},"119":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"220":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":2.23606797749979},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":3.1622776601683795},"233":{"tf":2.8284271247461903},"236":{"tf":1.7320508075688772},"237":{"tf":2.23606797749979},"238":{"tf":2.449489742783178},"239":{"tf":2.23606797749979},"240":{"tf":2.449489742783178},"243":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":3.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"64":{"tf":1.0},"68":{"tf":3.1622776601683795},"72":{"tf":2.0},"74":{"tf":3.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"88":{"tf":2.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"99":{"tf":4.898979485566356}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"224":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":18,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":2.8284271247461903},"106":{"tf":3.0},"111":{"tf":3.872983346207417},"115":{"tf":3.1622776601683795},"116":{"tf":4.0},"206":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":2.23606797749979},"233":{"tf":1.4142135623730951},"236":{"tf":2.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"244":{"tf":2.0},"245":{"tf":2.8284271247461903},"85":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"(":{"a":{",":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"(":{"a":{",":{"0":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"(":{"a":{",":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"(":{"a":{",":{"0":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"123":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"217":{"tf":1.0},"232":{"tf":1.0},"8":{"tf":1.0}}}}},"df":2,"docs":{"23":{"tf":1.4142135623730951},"64":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":9,"docs":{"103":{"tf":1.0},"16":{"tf":1.7320508075688772},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":2.0},"26":{"tf":1.4142135623730951},"35":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"103":{"tf":1.0},"128":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":29,"docs":{"100":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":1.0},"106":{"tf":2.8284271247461903},"107":{"tf":1.0},"111":{"tf":2.23606797749979},"116":{"tf":1.0},"122":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"233":{"tf":1.0},"247":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"62":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"17":{"tf":2.23606797749979}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"42":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":18,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"19":{"tf":1.0},"209":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.7320508075688772},"4":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"138":{"tf":1.0},"20":{"tf":1.0},"222":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.4142135623730951},"4":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"69":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"233":{"tf":1.0},"254":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"232":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"143":{"tf":1.0},"206":{"tf":2.0},"68":{"tf":1.0}}}}}},"r":{"df":6,"docs":{"232":{"tf":2.23606797749979},"236":{"tf":2.6457513110645907},"237":{"tf":2.6457513110645907},"238":{"tf":3.7416573867739413},"239":{"tf":3.7416573867739413},"240":{"tf":5.291502622129181}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"a":{"+":{"7":{")":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"←":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"i":{".":{"df":47,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"128":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"211":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":2.0},"245":{"tf":2.6457513110645907},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.7320508075688772}}},"/":{"df":0,"docs":{},"o":{"df":5,"docs":{"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.0}}}},"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"243":{"tf":1.4142135623730951}},"∏":{"8":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{")":{"=":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"+":{"b":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":9,"docs":{"105":{"tf":3.0},"106":{"tf":4.123105625617661},"111":{"tf":2.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"117":{"tf":2.8284271247461903},"258":{"tf":1.7320508075688772},"259":{"tf":1.0}},"e":{"a":{"df":2,"docs":{"113":{"tf":1.0},"213":{"tf":1.0}},"l":{"df":2,"docs":{"255":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":14,"docs":{"103":{"tf":1.0},"120":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"272":{"tf":1.0},"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"213":{"tf":1.0}}},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"101":{"tf":1.0},"112":{"tf":1.0},"47":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"177":{"tf":1.0}}}},"i":{"df":1,"docs":{"274":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":76,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"247":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"207":{"tf":2.0},"208":{"tf":2.23606797749979}}}},"df":0,"docs":{},"m":{"0":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":14,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":3.0},"113":{"tf":1.0},"126":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"208":{"tf":1.0},"245":{"tf":1.0},"39":{"tf":1.4142135623730951},"45":{"tf":1.0},"50":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"69":{"tf":1.0},"97":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"168":{"tf":1.0},"19":{"tf":1.0},"214":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"245":{"tf":1.7320508075688772},"253":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.4142135623730951},"88":{"tf":1.0},"99":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":5,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"170":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":11,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"210":{"tf":1.0},"240":{"tf":1.0},"266":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":2.449489742783178},"39":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0}}}},"s":{"df":22,"docs":{"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.7320508075688772},"150":{"tf":1.0},"170":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"234":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"259":{"tf":1.4142135623730951},"264":{"tf":1.0},"9":{"tf":1.0}},"s":{"df":1,"docs":{"120":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"2":{"tf":1.0},"270":{"tf":1.0},"33":{"tf":1.0}}}}}}},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"120":{"tf":2.0}}}},"df":0,"docs":{}}}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":27,"docs":{"105":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":2.23606797749979},"217":{"tf":1.7320508075688772},"221":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"245":{"tf":2.6457513110645907},"252":{"tf":1.7320508075688772},"259":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"62":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"124":{"tf":1.0},"211":{"tf":1.0},"6":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":2,"docs":{"139":{"tf":1.0},"160":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"s":{"df":15,"docs":{"130":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"217":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"262":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"222":{"tf":1.0},"254":{"tf":1.0},"261":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"224":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"245":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":20,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.7320508075688772},"17":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":1.0},"239":{"tf":2.23606797749979},"240":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"245":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":2.23606797749979},"68":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}},"i":{"c":{"df":14,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"118":{"tf":1.7320508075688772},"133":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":12,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"226":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.0},"34":{"tf":1.4142135623730951},"63":{"tf":1.0},"70":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"34":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":3,"docs":{"105":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"266":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951}},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"245":{"tf":1.0}}}}},"df":42,"docs":{"10":{"tf":1.0},"101":{"tf":2.8284271247461903},"104":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":2.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":3.3166247903554},"127":{"tf":1.0},"129":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.0},"232":{"tf":2.0},"233":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"24":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":2.0},"9":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"247":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"62":{"tf":1.0},"65":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"33":{"tf":1.0},"42":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}}}}},"df":48,"docs":{"10":{"tf":1.7320508075688772},"103":{"tf":1.0},"106":{"tf":2.0},"116":{"tf":1.0},"127":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":2.6457513110645907},"179":{"tf":1.0},"180":{"tf":1.0},"194":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":2.0},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"270":{"tf":2.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":3.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"86":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":11,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.0},"23":{"tf":1.0},"267":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":2.449489742783178},"9":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"d":{"df":9,"docs":{"103":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":2.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"16":{"tf":1.0},"2":{"tf":1.0},"232":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":5,"docs":{"223":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":57,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"107":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"132":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"232":{"tf":5.0990195135927845},"233":{"tf":1.4142135623730951},"234":{"tf":2.449489742783178},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.7320508075688772},"240":{"tf":2.23606797749979},"25":{"tf":2.0},"28":{"tf":1.0},"31":{"tf":2.0},"33":{"tf":2.8284271247461903},"35":{"tf":1.7320508075688772},"36":{"tf":2.0},"37":{"tf":3.4641016151377544},"38":{"tf":3.872983346207417},"39":{"tf":1.4142135623730951},"41":{"tf":2.0},"42":{"tf":3.4641016151377544},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"45":{"tf":3.872983346207417},"47":{"tf":2.6457513110645907},"48":{"tf":2.23606797749979},"49":{"tf":2.23606797749979},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.449489742783178},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":2.8284271247461903},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":2.449489742783178},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":19,"docs":{"168":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.4142135623730951},"220":{"tf":1.0},"258":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"88":{"tf":1.0}},"r":{"df":1,"docs":{"274":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"224":{"tf":1.0},"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"22":{"tf":1.4142135623730951},"265":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":5,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"147":{"tf":1.0},"209":{"tf":1.0},"252":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":19,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"14":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":2.0},"230":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.0},"38":{"tf":2.0},"4":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"17":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":6,"docs":{"138":{"tf":1.0},"211":{"tf":1.0},"223":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"87":{"tf":1.0}},"t":{"df":4,"docs":{"0":{"tf":1.0},"265":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"139":{"tf":1.0},"159":{"tf":1.7320508075688772},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"257":{"tf":1.4142135623730951},"258":{"tf":2.0},"54":{"tf":1.0}}}}},"o":{"c":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":8,"docs":{"264":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"41":{"tf":2.0},"42":{"tf":3.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":8,"docs":{"113":{"tf":1.0},"210":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"255":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"118":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"110":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.7320508075688772}}}}}},"o":{"d":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"2":{"tf":1.0},"270":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"211":{"tf":1.0},"223":{"tf":1.0}}}}},"t":{"'":{"df":3,"docs":{"272":{"tf":1.0},"274":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":17,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"127":{"tf":3.1622776601683795},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"137":{"tf":2.6457513110645907},"140":{"tf":1.0},"141":{"tf":1.0},"42":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"60":{"tf":2.449489742783178},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"r":{"df":4,"docs":{"101":{"tf":1.0},"2":{"tf":1.0},"49":{"tf":1.0},"94":{"tf":1.0}}}},"h":{"df":1,"docs":{"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"129":{"tf":1.0},"207":{"tf":1.0},"37":{"tf":1.0},"8":{"tf":1.0}}}}}}},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":0,"docs":{},"−":{"1":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":2,"docs":{"256":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"255":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"∈":{"2":{",":{"3":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"0":{",":{"1":{"5":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":1,"docs":{"125":{"tf":1.0}}},"4":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"114":{"tf":1.0}}},"7":{"df":2,"docs":{"111":{"tf":1.0},"114":{"tf":1.0}}},"8":{"df":2,"docs":{"189":{"tf":1.4142135623730951},"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"8":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{",":{"8":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"0":{",":{"1":{",":{"2":{",":{"3":{"df":5,"docs":{"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"56":{"tf":1.0}},"}":{"df":0,"docs":{},"∋":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"≥":{"2":{"3":{"2":{"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":{}},"df":0,"docs":{}},"df":2,"docs":{"162":{"tf":1.0},"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"92":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"101":{"tf":2.23606797749979},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":2.23606797749979},"108":{"tf":2.23606797749979},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.23606797749979},"143":{"tf":1.0},"92":{"tf":2.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.0}}}}},"∈":{"[":{"0":{",":{"4":{"df":1,"docs":{"244":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"0":{"df":5,"docs":{"130":{"tf":1.4142135623730951},"135":{"tf":1.0},"233":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.4142135623730951}},"":{",":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"":{",":{"b":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"244":{"tf":1.0}}},"1":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951}},"":{"=":{"0":{"df":1,"docs":{"252":{"tf":1.0}}},"1":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"(":{"a":{"df":0,"docs":{},"⋅":{"1":{"6":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{")":{")":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"(":{"b":{"df":0,"docs":{},"⋅":{"1":{"6":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{")":{")":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{")":{"=":{"0":{"df":1,"docs":{"249":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"−":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"2":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"245":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"b":{"df":1,"docs":{"20":{"tf":3.4641016151377544}}},"df":2,"docs":{"65":{"tf":3.3166247903554},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":23,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"117":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":21,"docs":{"116":{"tf":2.6457513110645907},"2":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"231":{"tf":2.0},"260":{"tf":2.23606797749979},"261":{"tf":1.7320508075688772},"262":{"tf":2.23606797749979},"263":{"tf":2.6457513110645907},"264":{"tf":2.8284271247461903},"269":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":3.1622776601683795},"45":{"tf":1.0},"88":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}}}},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"df":7,"docs":{"10":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":2.449489742783178},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":3.3166247903554}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"1":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"z":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"0":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"207":{"tf":1.0},"264":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":4,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":11,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"246":{"tf":1.0},"55":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"116":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"α":{"6":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"7":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"∣":{"df":0,"docs":{},"∣":{"b":{",":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":20,"docs":{"104":{"tf":2.449489742783178},"116":{"tf":2.6457513110645907},"179":{"tf":1.0},"180":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"224":{"tf":2.0},"228":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"252":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"210":{"tf":1.0},"212":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"170":{"tf":1.0},"44":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":41,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.7320508075688772},"142":{"tf":1.0},"144":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.0},"223":{"tf":1.7320508075688772},"226":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"242":{"tf":1.0},"245":{"tf":1.7320508075688772},"246":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"262":{"tf":1.0},"264":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"87":{"tf":1.0},"97":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"212":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":1.0},"259":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"11":{"tf":1.0},"118":{"tf":1.0},"129":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"37":{"tf":1.0},"97":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"170":{"tf":1.0},"62":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}}}}},"df":2,"docs":{"209":{"tf":2.8284271247461903},"77":{"tf":2.6457513110645907}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"128":{"tf":1.0},"233":{"tf":1.0},"258":{"tf":1.0},"44":{"tf":1.7320508075688772}}}}}}},"df":1,"docs":{"68":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"f":{"'":{"df":1,"docs":{"239":{"tf":1.0}}},"df":14,"docs":{"107":{"tf":1.0},"17":{"tf":1.7320508075688772},"207":{"tf":1.0},"233":{"tf":1.4142135623730951},"239":{"tf":2.0},"240":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"74":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"255":{"tf":1.0},"274":{"tf":1.0},"4":{"tf":1.0}}}},"v":{"df":4,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"239":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":35,"docs":{"106":{"tf":1.0},"118":{"tf":1.0},"131":{"tf":2.6457513110645907},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":2.0},"140":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"147":{"tf":2.8284271247461903},"151":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.4142135623730951},"31":{"tf":1.0},"58":{"tf":1.4142135623730951},"68":{"tf":1.0},"84":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"112":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"230":{"tf":1.4142135623730951},"266":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"111":{"tf":1.0},"13":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":2.6457513110645907},"234":{"tf":2.449489742783178},"242":{"tf":1.4142135623730951},"245":{"tf":1.0},"259":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":2.0}}}},"t":{"'":{"df":11,"docs":{"101":{"tf":1.0},"112":{"tf":1.4142135623730951},"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"170":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"247":{"tf":1.4142135623730951},"262":{"tf":1.0},"45":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"34":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":18,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"209":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":2.23606797749979},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"86":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"2":{"tf":2.0},"32":{"tf":1.4142135623730951},"38":{"tf":2.0},"43":{"tf":1.7320508075688772},"69":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"m":{"b":{"df":15,"docs":{"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"66":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":12,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"232":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"253":{"tf":1.0},"35":{"tf":1.4142135623730951},"6":{"tf":1.0},"97":{"tf":1.0}}}},"df":3,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"40":{"tf":1.0}},"r":{"df":1,"docs":{"243":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"113":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"55":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":5,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.7320508075688772},"210":{"tf":1.0},"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"c":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"0":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"37":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.0}},"w":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"37":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.0}}}}}}}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":2,"docs":{"39":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":10,"docs":{"2":{"tf":1.0},"37":{"tf":2.449489742783178},"38":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":2.23606797749979},"62":{"tf":1.7320508075688772},"64":{"tf":1.0},"66":{"tf":3.872983346207417},"88":{"tf":1.0},"89":{"tf":1.0}}},"t":{"df":17,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"233":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.0},"29":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"2":{"(":{"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"6":{"tf":1.0},"74":{"tf":1.0}},"i":{"c":{"df":5,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"113":{"tf":1.0},"2":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"216":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":27,"docs":{"111":{"tf":2.23606797749979},"112":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"150":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"85":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":8,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"265":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772}}}}},"p":{"'":{"df":2,"docs":{"106":{"tf":2.0},"110":{"tf":1.4142135623730951}}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":22,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":3.0},"110":{"tf":4.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.449489742783178},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"2":{"tf":1.4142135623730951},"24":{"tf":1.0},"35":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":2.6457513110645907},"94":{"tf":2.6457513110645907},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"w":{"df":10,"docs":{"106":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"209":{"tf":1.4142135623730951},"274":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"222":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"53":{"tf":1.0}},"e":{"df":1,"docs":{"53":{"tf":1.0}}}}},"m":{"1":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"21":{"tf":1.0}}},"=":{"(":{"2":{"3":{"2":{"df":0,"docs":{},"−":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"k":{"1":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"p":{"df":2,"docs":{"104":{"tf":1.0},"116":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"0":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"35":{"tf":1.0},"6":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"33":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"215":{"tf":1.0},"233":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"272":{"tf":1.0},"38":{"tf":1.7320508075688772},"41":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"230":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":48,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.4142135623730951},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"250":{"tf":2.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"259":{"tf":2.0},"264":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"33":{"tf":2.0},"7":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"101":{"tf":1.0},"127":{"tf":1.4142135623730951},"199":{"tf":1.0},"2":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":15,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.4142135623730951},"24":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"33":{"tf":1.0},"72":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"10":{"tf":1.0},"181":{"tf":1.4142135623730951},"42":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"104":{"tf":1.0},"111":{"tf":2.0},"118":{"tf":1.0},"226":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"35":{"tf":1.0},"42":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":12,"docs":{"10":{"tf":2.0},"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"6":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"m":{"df":2,"docs":{"16":{"tf":1.0},"23":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"21":{"tf":1.0}}}}},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"16":{"tf":1.0},"33":{"tf":2.0},"35":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"245":{"tf":1.0},"264":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"111":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"274":{"tf":1.0},"4":{"tf":1.4142135623730951}}}}},"h":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"212":{"tf":1.0},"228":{"tf":1.0},"271":{"tf":1.0}}}}}},"x":{"(":{"a":{",":{"b":{")":{">":{"1":{"df":1,"docs":{"52":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"≥":{"2":{"3":{"2":{"df":3,"docs":{"57":{"tf":3.605551275463989},"58":{"tf":1.7320508075688772},"59":{"tf":3.7416573867739413}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},",":{"c":{")":{"df":0,"docs":{},"≥":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"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}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"2":{"tf":1.0},"212":{"tf":1.0},"60":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"20":{"tf":2.6457513110645907}},"p":{"df":2,"docs":{"104":{"tf":1.0},"116":{"tf":1.0}}}},"df":7,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0},"245":{"tf":1.0},"68":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":27,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"138":{"tf":1.0},"2":{"tf":1.0},"217":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}},"t":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"240":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"[":{"8":{"7":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"30":{"tf":1.0}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.4142135623730951}},"w":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.4142135623730951}},"e":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"1":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":2,"docs":{"23":{"tf":1.0},"29":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":47,"docs":{"10":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":3.1622776601683795},"2":{"tf":2.0},"200":{"tf":2.8284271247461903},"201":{"tf":2.8284271247461903},"202":{"tf":3.0},"203":{"tf":3.0},"204":{"tf":3.0},"209":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":2.0},"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"253":{"tf":2.23606797749979},"254":{"tf":2.449489742783178},"255":{"tf":3.1622776601683795},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":3.872983346207417},"259":{"tf":2.6457513110645907},"273":{"tf":1.4142135623730951},"29":{"tf":2.449489742783178},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"41":{"tf":1.0},"44":{"tf":3.4641016151377544},"45":{"tf":2.23606797749979},"6":{"tf":2.23606797749979},"62":{"tf":2.6457513110645907},"64":{"tf":1.4142135623730951},"65":{"tf":2.0},"66":{"tf":4.47213595499958},"72":{"tf":1.0},"74":{"tf":2.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"88":{"tf":2.0},"89":{"tf":1.4142135623730951}}},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"255":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"256":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}},"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":15,"docs":{"111":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"130":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"10":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"90":{"tf":1.0}}}},"l":{"df":23,"docs":{"10":{"tf":2.6457513110645907},"104":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":2.23606797749979},"220":{"tf":1.0},"232":{"tf":3.872983346207417},"233":{"tf":2.0},"239":{"tf":2.6457513110645907},"240":{"tf":2.6457513110645907},"243":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":3.3166247903554},"6":{"tf":2.0},"65":{"tf":1.7320508075688772},"68":{"tf":3.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":2.449489742783178},"77":{"tf":1.0},"8":{"tf":1.7320508075688772},"88":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"220":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"104":{"tf":1.7320508075688772},"115":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"116":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":81,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"11":{"tf":3.3166247903554},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"127":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":2.23606797749979},"138":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.7320508075688772},"155":{"tf":1.0},"16":{"tf":3.4641016151377544},"168":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":3.4641016151377544},"20":{"tf":1.0},"205":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"22":{"tf":2.8284271247461903},"220":{"tf":1.0},"23":{"tf":2.0},"232":{"tf":1.0},"24":{"tf":2.449489742783178},"25":{"tf":1.7320508075688772},"253":{"tf":1.0},"258":{"tf":1.7320508075688772},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"3":{"tf":1.7320508075688772},"31":{"tf":1.0},"32":{"tf":2.8284271247461903},"33":{"tf":4.242640687119285},"35":{"tf":3.3166247903554},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"4":{"tf":2.449489742783178},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":2.23606797749979},"7":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"213":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"118":{"tf":1.0},"206":{"tf":1.0}}}},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"139":{"tf":1.0},"201":{"tf":1.7320508075688772}},"w":{"df":2,"docs":{"140":{"tf":1.0},"200":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":2.449489742783178}}}}}},"df":1,"docs":{"74":{"tf":3.0}}},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":1,"docs":{"84":{"tf":1.7320508075688772}},"e":{"df":1,"docs":{"13":{"tf":1.0}},"l":{"df":1,"docs":{"255":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"262":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"33":{"tf":1.0}}}},"df":23,"docs":{"177":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":2.0},"225":{"tf":1.0},"262":{"tf":1.0},"273":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":4.795831523312719},"39":{"tf":1.4142135623730951},"43":{"tf":2.449489742783178},"71":{"tf":2.23606797749979},"72":{"tf":2.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"'":{"df":3,"docs":{"221":{"tf":1.0},"226":{"tf":1.0},"262":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"u":{"df":7,"docs":{"127":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"253":{"tf":1.0},"34":{"tf":1.0},"6":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"259":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":40,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":2.0},"122":{"tf":1.0},"137":{"tf":1.4142135623730951},"148":{"tf":1.0},"16":{"tf":1.0},"211":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"248":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":2.0},"4":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"86":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"110":{"tf":1.0},"45":{"tf":1.0},"77":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"v":{"d":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}},"2":{"df":2,"docs":{"139":{"tf":1.0},"191":{"tf":1.0}}},"3":{"df":1,"docs":{"139":{"tf":1.0}}},"4":{"df":1,"docs":{"139":{"tf":1.0}}},"5":{"df":1,"docs":{"139":{"tf":1.0}}},"6":{"df":1,"docs":{"139":{"tf":1.0}}},"7":{"df":1,"docs":{"139":{"tf":1.0}}},"8":{"df":1,"docs":{"139":{"tf":1.0}}},"df":2,"docs":{"191":{"tf":1.0},"60":{"tf":1.0}},"w":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":17,"docs":{"115":{"tf":1.0},"130":{"tf":1.4142135623730951},"190":{"tf":2.0},"191":{"tf":1.7320508075688772},"194":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"254":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"45":{"tf":2.23606797749979},"60":{"tf":2.0},"62":{"tf":2.23606797749979},"65":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.4142135623730951}}}},"2":{"df":2,"docs":{"139":{"tf":1.0},"190":{"tf":1.0}}},"3":{"df":1,"docs":{"139":{"tf":1.0}}},"4":{"df":1,"docs":{"139":{"tf":1.0}}},"5":{"df":1,"docs":{"139":{"tf":1.0}}},"6":{"df":1,"docs":{"139":{"tf":1.0}}},"7":{"df":1,"docs":{"139":{"tf":1.0}}},"8":{"df":1,"docs":{"139":{"tf":1.0}}},"df":2,"docs":{"190":{"tf":1.0},"60":{"tf":1.0}},"w":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"p":{"a":{"df":3,"docs":{"232":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0}}},"df":3,"docs":{"232":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0}},"u":{"df":1,"docs":{"240":{"tf":1.0}}},"v":{"df":1,"docs":{"240":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"143":{"tf":1.0},"207":{"tf":2.0}}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"208":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":4,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":4.0},"21":{"tf":2.0},"23":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"140":{"tf":1.0},"203":{"tf":1.7320508075688772}},"w":{"df":2,"docs":{"140":{"tf":1.0},"202":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"143":{"tf":1.0},"204":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"68":{"tf":1.0},"8":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"u":{"a":{"df":2,"docs":{"232":{"tf":1.0},"240":{"tf":1.0}}},"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"33":{"tf":1.0},"8":{"tf":1.0}}}},"df":2,"docs":{"232":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772}},"l":{"6":{"4":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":4,"docs":{"140":{"tf":1.0},"158":{"tf":1.7320508075688772},"38":{"tf":1.0},"52":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.0},"222":{"tf":1.0},"246":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":21,"docs":{"104":{"tf":1.4142135623730951},"113":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"217":{"tf":1.0},"232":{"tf":3.3166247903554},"233":{"tf":1.0},"234":{"tf":3.3166247903554},"238":{"tf":1.0},"242":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"25":{"tf":1.0},"271":{"tf":1.0},"41":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}},"i":{"df":19,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"138":{"tf":1.0},"169":{"tf":1.0},"212":{"tf":1.7320508075688772},"226":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.4142135623730951},"265":{"tf":2.0},"266":{"tf":1.7320508075688772},"270":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"113":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":2,"docs":{"232":{"tf":1.0},"240":{"tf":1.0}}},"df":3,"docs":{"232":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"6":{"tf":1.0}}}},"n":{"+":{"1":{"df":2,"docs":{"190":{"tf":1.0},"191":{"tf":1.0}}},"df":0,"docs":{}},"/":{"8":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"0":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"257":{"tf":1.0},"259":{"tf":1.0}},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"(":{"c":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"c":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{"=":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"257":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"257":{"tf":1.4142135623730951},"259":{"tf":1.0}}},"df":0,"docs":{},"δ":{"c":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"δ":{"a":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":1,"docs":{"259":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"df":2,"docs":{"257":{"tf":1.0},"259":{"tf":1.0}},"":{"=":{"0":{"df":1,"docs":{"257":{"tf":1.0}}},"1":{"df":1,"docs":{"257":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"=":{"0":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{")":{"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"=":{"0":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"<":{"2":{"5":{"6":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"256":{"tf":1.4142135623730951}}},"1":{"4":{"df":1,"docs":{"104":{"tf":1.0}}},"df":1,"docs":{"256":{"tf":1.4142135623730951}}},"df":0,"docs":{}},">":{"2":{"1":{"6":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"148":{"tf":1.0},"212":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"113":{"tf":1.4142135623730951},"137":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":4,"docs":{"71":{"tf":2.0},"73":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"2":{"tf":1.4142135623730951},"232":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":19,"docs":{"104":{"tf":1.7320508075688772},"18":{"tf":1.0},"184":{"tf":1.4142135623730951},"190":{"tf":2.0},"191":{"tf":2.23606797749979},"209":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"216":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":2.0},"256":{"tf":1.0},"31":{"tf":1.4142135623730951},"60":{"tf":2.8284271247461903},"65":{"tf":2.0},"74":{"tf":2.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":85,"docs":{"0":{"tf":1.0},"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":2.6457513110645907},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":2.6457513110645907},"111":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"120":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":2.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"16":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":2.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"227":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":2.0},"251":{"tf":1.7320508075688772},"253":{"tf":1.0},"254":{"tf":2.6457513110645907},"255":{"tf":3.0},"256":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.7320508075688772},"259":{"tf":2.23606797749979},"264":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":3,"docs":{"139":{"tf":1.0},"157":{"tf":1.7320508075688772},"52":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"q":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"59":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}},"t":{"df":1,"docs":{"106":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"105":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"75":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}},"df":38,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":2.8284271247461903},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":2.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"141":{"tf":1.0},"208":{"tf":2.6457513110645907},"209":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"240":{"tf":1.7320508075688772},"243":{"tf":2.0},"245":{"tf":3.3166247903554},"255":{"tf":1.7320508075688772},"256":{"tf":1.7320508075688772},"257":{"tf":2.0},"258":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"t":{"df":52,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":3.0},"111":{"tf":3.605551275463989},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"120":{"tf":2.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":2.0},"124":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"166":{"tf":2.0},"167":{"tf":1.4142135623730951},"209":{"tf":2.6457513110645907},"211":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"234":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":2.0},"243":{"tf":1.4142135623730951},"244":{"tf":2.0},"246":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"266":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"g":{"=":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"124":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.7320508075688772}}}}}}},"df":23,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"207":{"tf":2.449489742783178},"208":{"tf":3.3166247903554},"232":{"tf":2.6457513110645907},"233":{"tf":1.7320508075688772},"239":{"tf":2.449489742783178},"240":{"tf":3.0},"243":{"tf":2.0},"244":{"tf":1.0},"245":{"tf":2.8284271247461903},"65":{"tf":1.0},"68":{"tf":2.0},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}}}}}}}},"df":27,"docs":{"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"128":{"tf":1.0},"130":{"tf":1.0},"170":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"222":{"tf":1.0},"239":{"tf":1.0},"256":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"55":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":3,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"'":{"df":1,"docs":{"111":{"tf":1.0}}},"df":9,"docs":{"100":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"122":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"150":{"tf":1.7320508075688772},"23":{"tf":1.0},"97":{"tf":2.23606797749979},"99":{"tf":2.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":8,"docs":{"113":{"tf":1.0},"241":{"tf":1.0},"252":{"tf":1.0},"263":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"70":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":51,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"143":{"tf":1.0},"159":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"246":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"87":{"tf":1.0}}},"h":{"df":4,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0}}},"i":{"c":{"df":11,"docs":{"111":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"254":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"w":{"df":8,"docs":{"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"255":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":2.8284271247461903}}}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":3.1622776601683795}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":37,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"111":{"tf":3.1622776601683795},"116":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"14":{"tf":1.0},"169":{"tf":1.4142135623730951},"17":{"tf":2.449489742783178},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":1.0},"258":{"tf":1.0},"37":{"tf":2.23606797749979},"39":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"8":{"tf":2.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"208":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"=":{"0":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"106":{"tf":1.0}}}},"∈":{"[":{"2":{",":{"9":{"df":2,"docs":{"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"0":{",":{".":{".":{".":{",":{"1":{"5":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"7":{",":{"9":{",":{"1":{"1":{",":{"1":{"3":{",":{"1":{"5":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"2":{",":{"3":{"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":{}},"1":{",":{".":{".":{".":{",":{"1":{"5":{"df":1,"docs":{"60":{"tf":1.0}}},"6":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"3":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{".":{".":{".":{",":{"1":{"5":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"−":{"1":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":0,"docs":{},"−":{"1":{")":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"116":{"tf":1.0},"228":{"tf":1.0},"245":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"d":{"d":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"18":{"tf":1.4142135623730951}},"f":{"a":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":5,"docs":{"102":{"tf":1.0},"228":{"tf":1.4142135623730951},"232":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"211":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0}}}}}}},"l":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":10,"docs":{"208":{"tf":2.449489742783178},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"240":{"tf":1.4142135623730951},"245":{"tf":2.0},"255":{"tf":2.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"68":{"tf":1.0},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"137":{"tf":1.0},"169":{"tf":1.0},"244":{"tf":1.0},"254":{"tf":1.0},"37":{"tf":1.0},"63":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":2.0}}}}}},"n":{"c":{"df":16,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":2.23606797749979},"16":{"tf":1.0},"19":{"tf":1.4142135623730951},"209":{"tf":1.0},"219":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"98":{"tf":1.0}}},"df":60,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"111":{"tf":3.0},"113":{"tf":1.7320508075688772},"122":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"130":{"tf":1.0},"138":{"tf":1.4142135623730951},"150":{"tf":1.0},"170":{"tf":2.0},"190":{"tf":1.0},"191":{"tf":1.0},"2":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":2.6457513110645907},"233":{"tf":2.449489742783178},"234":{"tf":1.7320508075688772},"24":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"248":{"tf":1.0},"25":{"tf":2.23606797749979},"250":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":2.6457513110645907},"50":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":2.449489742783178},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":29,"docs":{"10":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.0},"130":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.7320508075688772},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":3.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}},"p":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"1":{"1":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"123":{"tf":1.0}}},"9":{"df":1,"docs":{"123":{"tf":1.7320508075688772}}},"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"6":{"df":0,"docs":{},"":{"(":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"2":{"df":0,"docs":{},"i":{")":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"106":{"tf":1.0},"111":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"252":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":16,"docs":{"100":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.7320508075688772},"116":{"tf":2.0},"123":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"103":{"tf":1.0},"105":{"tf":2.449489742783178},"106":{"tf":2.23606797749979},"111":{"tf":5.656854249492381},"116":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":3.7416573867739413},"138":{"tf":3.3166247903554},"139":{"tf":5.656854249492381},"140":{"tf":4.123105625617661},"141":{"tf":4.123105625617661},"142":{"tf":3.0},"143":{"tf":2.8284271247461903},"144":{"tf":2.8284271247461903},"269":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":16,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"127":{"tf":1.0},"150":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"62":{"tf":2.0},"65":{"tf":2.23606797749979},"66":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":2.8284271247461903},"75":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"103":{"tf":1.0}}},"(":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{},"s":{"1":{"df":2,"docs":{"101":{"tf":2.449489742783178},"112":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":162,"docs":{"10":{"tf":1.0},"100":{"tf":2.0},"101":{"tf":2.23606797749979},"102":{"tf":1.0},"103":{"tf":3.4641016151377544},"104":{"tf":1.0},"105":{"tf":3.1622776601683795},"106":{"tf":6.48074069840786},"108":{"tf":2.0},"109":{"tf":1.0},"110":{"tf":3.7416573867739413},"111":{"tf":8.12403840463596},"112":{"tf":2.6457513110645907},"113":{"tf":2.8284271247461903},"114":{"tf":3.3166247903554},"115":{"tf":2.6457513110645907},"116":{"tf":4.0},"117":{"tf":3.4641016151377544},"118":{"tf":3.4641016151377544},"120":{"tf":3.1622776601683795},"121":{"tf":2.6457513110645907},"122":{"tf":3.872983346207417},"123":{"tf":4.0},"124":{"tf":3.3166247903554},"125":{"tf":3.4641016151377544},"126":{"tf":3.1622776601683795},"127":{"tf":1.4142135623730951},"130":{"tf":2.0},"131":{"tf":1.7320508075688772},"137":{"tf":3.872983346207417},"138":{"tf":4.69041575982343},"139":{"tf":2.6457513110645907},"140":{"tf":2.6457513110645907},"141":{"tf":2.6457513110645907},"142":{"tf":3.605551275463989},"143":{"tf":2.6457513110645907},"144":{"tf":2.23606797749979},"145":{"tf":1.0},"146":{"tf":2.23606797749979},"147":{"tf":2.449489742783178},"148":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":2.23606797749979},"170":{"tf":1.0},"171":{"tf":2.0},"172":{"tf":1.7320508075688772},"173":{"tf":2.0},"174":{"tf":2.0},"175":{"tf":2.0},"176":{"tf":2.0},"177":{"tf":2.23606797749979},"178":{"tf":2.0},"179":{"tf":2.8284271247461903},"180":{"tf":2.8284271247461903},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.7320508075688772},"184":{"tf":2.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772},"190":{"tf":2.0},"191":{"tf":2.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"195":{"tf":2.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"2":{"tf":2.0},"20":{"tf":1.0},"200":{"tf":2.23606797749979},"201":{"tf":2.23606797749979},"202":{"tf":2.449489742783178},"203":{"tf":2.449489742783178},"204":{"tf":2.449489742783178},"205":{"tf":2.0},"206":{"tf":2.0},"207":{"tf":2.6457513110645907},"208":{"tf":2.23606797749979},"209":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"210":{"tf":2.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":2.6457513110645907},"228":{"tf":2.8284271247461903},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"245":{"tf":2.0},"246":{"tf":3.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"251":{"tf":2.0},"252":{"tf":2.23606797749979},"254":{"tf":1.0},"255":{"tf":2.23606797749979},"258":{"tf":2.8284271247461903},"259":{"tf":2.449489742783178},"260":{"tf":1.0},"263":{"tf":2.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"50":{"tf":2.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":2.23606797749979},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":2.6457513110645907},"82":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":2.6457513110645907},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":4.0},"98":{"tf":2.449489742783178},"99":{"tf":2.23606797749979}}},"x":{"df":1,"docs":{"272":{"tf":1.0}}}},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"116":{"tf":1.0},"263":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"206":{"tf":1.0},"245":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}}}}}}},"df":1,"docs":{"259":{"tf":1.0}}}},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"208":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"207":{"tf":1.0},"208":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":18,"docs":{"13":{"tf":2.23606797749979},"19":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"220":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"258":{"tf":1.4142135623730951},"265":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":1.0},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.0},"65":{"tf":1.0}}}}}},"u":{"3":{"2":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"111":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"204":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":2.23606797749979},"228":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"35":{"tf":2.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"115":{"tf":1.0},"138":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"209":{"tf":1.0},"247":{"tf":1.0},"42":{"tf":1.0},"86":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"62":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":30,"docs":{"103":{"tf":1.4142135623730951},"105":{"tf":2.0},"106":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"122":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"207":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"42":{"tf":1.0},"68":{"tf":1.4142135623730951},"77":{"tf":1.0},"83":{"tf":4.242640687119285},"84":{"tf":2.449489742783178},"86":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":20,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"17":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"259":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":43,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":2.449489742783178},"194":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":2.0},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"233":{"tf":1.7320508075688772},"236":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"25":{"tf":1.0},"251":{"tf":2.23606797749979},"258":{"tf":1.0},"270":{"tf":2.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":2.0},"75":{"tf":1.7320508075688772},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":2.449489742783178},"80":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"2":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"255":{"tf":1.0}}}},"df":24,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":1.0},"220":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"246":{"tf":1.0},"251":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":13,"docs":{"128":{"tf":1.0},"129":{"tf":2.6457513110645907},"130":{"tf":2.23606797749979},"131":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"134":{"tf":1.0},"135":{"tf":2.449489742783178},"17":{"tf":1.4142135623730951},"177":{"tf":1.0},"209":{"tf":1.0},"269":{"tf":1.0},"82":{"tf":2.8284271247461903},"84":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}},"r":{"df":1,"docs":{"84":{"tf":1.0}}}},"u":{"b":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"101":{"tf":1.0},"4":{"tf":1.0},"6":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"198":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772}}}}}}}}},"x":{"df":2,"docs":{"103":{"tf":1.0},"124":{"tf":1.7320508075688772}}}},"p":{"0":{"df":2,"docs":{"211":{"tf":1.7320508075688772},"212":{"tf":2.23606797749979}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"p":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{")":{"=":{"0":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"1":{"df":6,"docs":{"105":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"129":{"tf":2.23606797749979},"233":{"tf":2.0},"240":{"tf":1.7320508075688772},"245":{"tf":2.6457513110645907}},"":{"=":{"1":{"df":2,"docs":{"136":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"p":{"1":{"df":3,"docs":{"117":{"tf":1.0},"135":{"tf":1.4142135623730951},"245":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.0}}}},"v":{"df":2,"docs":{"117":{"tf":1.0},"135":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"=":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"117":{"tf":1.0},"135":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"2":{"df":2,"docs":{"105":{"tf":2.0},"118":{"tf":1.7320508075688772}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"118":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"=":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"3":{"df":2,"docs":{"105":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"=":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"=":{"2":{"6":{"4":{"df":0,"docs":{},"−":{"2":{"3":{"2":{"+":{"1":{"df":3,"docs":{"6":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"74":{"tf":1.0}}}},"d":{"df":15,"docs":{"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"141":{"tf":1.0},"182":{"tf":1.7320508075688772},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"262":{"tf":1.0},"266":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.4142135623730951}},"w":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"16":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"105":{"tf":2.6457513110645907},"106":{"tf":2.449489742783178},"117":{"tf":2.0},"43":{"tf":1.0},"88":{"tf":1.0}}}}},"t":{"df":10,"docs":{"102":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"245":{"tf":2.23606797749979},"264":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"71":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"169":{"tf":1.0}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"113":{"tf":1.0},"222":{"tf":1.0},"270":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"69":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"42":{"tf":1.0},"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":15,"docs":{"10":{"tf":1.7320508075688772},"101":{"tf":1.0},"104":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":2.449489742783178},"208":{"tf":2.0},"232":{"tf":3.1622776601683795},"233":{"tf":1.0},"239":{"tf":2.23606797749979},"240":{"tf":2.449489742783178},"243":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"6":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":2.0}}}}}}}},"df":5,"docs":{"23":{"tf":1.7320508075688772},"267":{"tf":2.449489742783178},"268":{"tf":1.4142135623730951},"34":{"tf":1.0},"77":{"tf":2.0}},"e":{"=":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"74":{"tf":2.0}}}},"df":1,"docs":{"209":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}},"r":{"df":10,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"124":{"tf":1.0},"210":{"tf":1.4142135623730951},"217":{"tf":1.0},"23":{"tf":1.0},"254":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":2.23606797749979},"80":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":34,"docs":{"104":{"tf":1.0},"111":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"215":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.4142135623730951},"255":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":3.7416573867739413},"84":{"tf":3.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"223":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"36":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":18,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"206":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"68":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"112":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"143":{"tf":1.0}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":13,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"239":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.4142135623730951},"33":{"tf":1.0},"72":{"tf":1.0}}},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"115":{"tf":1.0},"224":{"tf":1.0}}}},"o":{"df":2,"docs":{"209":{"tf":1.0},"74":{"tf":1.7320508075688772}},"e":{"df":1,"docs":{"209":{"tf":1.7320508075688772}},"′":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"4":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"19":{"tf":1.0},"209":{"tf":2.23606797749979},"24":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"77":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"115":{"tf":1.0},"209":{"tf":1.0},"77":{"tf":2.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"274":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"98":{"tf":1.0}}}},"p":{"df":21,"docs":{"10":{"tf":1.0},"106":{"tf":3.4641016151377544},"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":2.449489742783178},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"98":{"tf":2.6457513110645907}},"u":{"df":0,"docs":{},"l":{"df":11,"docs":{"106":{"tf":2.449489742783178},"111":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"257":{"tf":1.0},"45":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"2":{"tf":1.0},"231":{"tf":1.0},"244":{"tf":1.0},"85":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":60,"docs":{"105":{"tf":2.449489742783178},"111":{"tf":2.23606797749979},"126":{"tf":1.0},"137":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.23606797749979},"230":{"tf":1.0},"239":{"tf":1.0},"60":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":12,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"124":{"tf":1.0},"170":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"272":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"274":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"2":{"df":4,"docs":{"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"52":{"tf":1.0},"84":{"tf":2.449489742783178}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"112":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"260":{"tf":1.0},"48":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":1,"docs":{"2":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":7,"docs":{"138":{"tf":2.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"81":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"105":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":19,"docs":{"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"31":{"tf":1.0},"42":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"s":{"df":30,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"209":{"tf":1.0},"245":{"tf":1.4142135623730951},"258":{"tf":1.0},"37":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"55":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":18,"docs":{"127":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.4142135623730951},"220":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":2.23606797749979},"70":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"170":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"23":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"10":{"tf":1.0},"207":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"106":{"tf":4.123105625617661},"111":{"tf":2.0}}}},"o":{"c":{".":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{">":{".":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"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":{}}},"b":{"a":{"df":0,"docs":{},"r":{".":{"1":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"2":{"df":1,"docs":{"37":{"tf":1.0}}},"3":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"23":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"38":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":44,"docs":{"116":{"tf":2.6457513110645907},"2":{"tf":1.7320508075688772},"220":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"233":{"tf":1.0},"260":{"tf":2.0},"262":{"tf":1.4142135623730951},"263":{"tf":2.0},"264":{"tf":2.0},"269":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":3.872983346207417},"38":{"tf":4.58257569495584},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.6457513110645907},"42":{"tf":3.605551275463989},"43":{"tf":2.8284271247461903},"44":{"tf":2.449489742783178},"45":{"tf":2.449489742783178},"62":{"tf":1.7320508075688772},"66":{"tf":3.3166247903554},"69":{"tf":2.0},"7":{"tf":1.0},"71":{"tf":2.23606797749979},"72":{"tf":2.8284271247461903},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":2.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":2.0},"82":{"tf":2.6457513110645907},"83":{"tf":3.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"'":{"df":2,"docs":{"45":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":3,"docs":{"111":{"tf":1.4142135623730951},"45":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":10,"docs":{"100":{"tf":1.0},"101":{"tf":2.6457513110645907},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"224":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"233":{"tf":1.0},"81":{"tf":1.0}},"t":{"df":20,"docs":{"1":{"tf":1.0},"105":{"tf":1.7320508075688772},"129":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"211":{"tf":2.23606797749979},"212":{"tf":2.23606797749979},"217":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":2.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"266":{"tf":3.872983346207417},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":2,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":5,"docs":{"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"42":{"tf":1.0},"62":{"tf":1.0},"99":{"tf":1.0}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"118":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":58,"docs":{"0":{"tf":2.0},"10":{"tf":1.0},"100":{"tf":3.4641016151377544},"101":{"tf":2.8284271247461903},"104":{"tf":1.4142135623730951},"105":{"tf":2.8284271247461903},"106":{"tf":1.4142135623730951},"107":{"tf":2.23606797749979},"11":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":2.23606797749979},"113":{"tf":2.23606797749979},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"129":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":2.8284271247461903},"17":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"23":{"tf":3.0},"263":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":2.0},"3":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":2.8284271247461903},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":3.1622776601683795},"39":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":2.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"62":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":2.0},"8":{"tf":2.23606797749979},"88":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979},"99":{"tf":3.0}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":17,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"19":{"tf":2.8284271247461903},"2":{"tf":1.0},"20":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":2.23606797749979},"3":{"tf":2.0},"72":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"119":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"209":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"265":{"tf":1.0},"270":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":17,"docs":{"113":{"tf":1.0},"16":{"tf":1.4142135623730951},"20":{"tf":2.0},"207":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.4142135623730951},"223":{"tf":1.0},"228":{"tf":1.0},"246":{"tf":1.0},"265":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"3":{"tf":1.0},"4":{"tf":1.4142135623730951},"69":{"tf":1.0},"87":{"tf":1.0}},"r":{"df":47,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"106":{"tf":2.8284271247461903},"107":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":2.23606797749979},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":1.0},"266":{"tf":1.4142135623730951},"268":{"tf":1.7320508075688772},"272":{"tf":1.0},"6":{"tf":1.0},"87":{"tf":1.0}}}},"i":{"d":{"df":54,"docs":{"10":{"tf":2.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"11":{"tf":1.0},"113":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"2":{"tf":2.449489742783178},"207":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"252":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"38":{"tf":1.0},"4":{"tf":2.449489742783178},"46":{"tf":1.0},"50":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"65":{"tf":2.6457513110645907},"66":{"tf":2.23606797749979},"67":{"tf":1.0},"68":{"tf":2.6457513110645907},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":2.0},"8":{"tf":2.8284271247461903},"87":{"tf":1.4142135623730951},"88":{"tf":2.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}}}},"u":{"b":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"17":{"tf":1.7320508075688772},"8":{"tf":2.6457513110645907},"86":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":8,"docs":{"111":{"tf":1.0},"137":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"265":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{".":{"0":{"df":2,"docs":{"49":{"tf":1.0},"60":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"2":{"3":{"4":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"a":{"b":{"c":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"4":{".":{"0":{"df":0,"docs":{},"x":{"a":{"b":{"c":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{".":{"0":{"df":1,"docs":{"38":{"tf":1.0}}},"2":{".":{"3":{".":{"4":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0}}},"2":{".":{"0":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0}}},"3":{"df":3,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0}}},"4":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}},"5":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"1":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"2":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":35,"docs":{"10":{"tf":1.0},"111":{"tf":2.23606797749979},"113":{"tf":1.7320508075688772},"122":{"tf":2.23606797749979},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":2.0},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.7320508075688772},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":2.0},"63":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":3.0},"66":{"tf":1.4142135623730951},"88":{"tf":1.0},"97":{"tf":2.449489742783178}}}},"t":{"df":9,"docs":{"111":{"tf":1.0},"142":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"198":{"tf":1.0},"43":{"tf":1.0},"8":{"tf":1.0}}}},"′":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"p":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"q":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"q":{"3":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"(":{"df":0,"docs":{},"v":{"0":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"":{"=":{"(":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"":{"=":{"(":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"5":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":0,"docs":{},"":{"=":{"(":{"df":0,"docs":{},"v":{"6":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"7":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"23":{"tf":1.0},"82":{"tf":1.4142135623730951}},"u":{"a":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"209":{"tf":1.7320508075688772},"77":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"]":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{")":{".":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"77":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"24":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"178":{"tf":1.0},"65":{"tf":1.0}}}}}}}}}},"r":{"+":{"1":{"5":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"r":{"3":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"r":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"r":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"}":{"df":0,"docs":{},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"a":{"7":{"df":0,"docs":{},"":{",":{"b":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"b":{"7":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"g":{"df":2,"docs":{"239":{"tf":1.0},"240":{"tf":1.0}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":22,"docs":{"105":{"tf":1.7320508075688772},"129":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":38,"docs":{"124":{"tf":1.0},"142":{"tf":1.7320508075688772},"169":{"tf":2.8284271247461903},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"210":{"tf":2.23606797749979},"211":{"tf":2.23606797749979},"212":{"tf":1.7320508075688772},"213":{"tf":2.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":2.8284271247461903},"221":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.4142135623730951},"34":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"84":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"104":{"tf":1.0},"116":{"tf":1.4142135623730951},"206":{"tf":1.0},"233":{"tf":1.7320508075688772},"238":{"tf":1.0},"245":{"tf":1.0},"68":{"tf":1.0},"85":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"4":{"tf":1.0},"87":{"tf":1.0}}}},"df":1,"docs":{"253":{"tf":1.0}}}}}},"w":{"df":2,"docs":{"33":{"tf":2.449489742783178},"50":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"14":{"tf":1.0}}}}}},"c":{"_":{"1":{"6":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":12,"docs":{"104":{"tf":1.4142135623730951},"15":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"23":{"tf":1.0},"240":{"tf":1.0},"261":{"tf":1.0},"65":{"tf":2.449489742783178},"68":{"tf":3.605551275463989},"82":{"tf":1.4142135623730951}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"111":{"tf":2.23606797749979},"112":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"df":26,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":2.23606797749979},"258":{"tf":3.0},"259":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"44":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":2.449489742783178},"8":{"tf":1.0}},"i":{"df":1,"docs":{"1":{"tf":1.0}}},"–":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"–":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"3":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"105":{"tf":1.0},"130":{"tf":1.0},"142":{"tf":1.0},"19":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"142":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":5,"docs":{"107":{"tf":1.0},"15":{"tf":1.0},"3":{"tf":1.4142135623730951},"37":{"tf":1.0},"90":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":29,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"129":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"69":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":4,"docs":{"103":{"tf":1.0},"138":{"tf":1.0},"143":{"tf":1.4142135623730951},"209":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"0":{"tf":1.0},"38":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":2.0},"220":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":1.7320508075688772},"4":{"tf":1.0},"41":{"tf":1.0},"62":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"87":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"101":{"tf":1.0},"133":{"tf":1.0},"221":{"tf":1.0},"245":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"10":{"tf":1.0},"44":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":35,"docs":{"103":{"tf":3.605551275463989},"104":{"tf":1.0},"106":{"tf":4.47213595499958},"111":{"tf":3.7416573867739413},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"123":{"tf":2.23606797749979},"125":{"tf":1.7320508075688772},"138":{"tf":3.0},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"259":{"tf":1.0},"99":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"103":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.7320508075688772},"55":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"232":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0}}}},"df":2,"docs":{"1":{"tf":1.0},"212":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"v":{"df":9,"docs":{"104":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"169":{"tf":1.4142135623730951},"243":{"tf":1.0},"245":{"tf":1.0}}}},"i":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"130":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"220":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.0},"274":{"tf":1.0},"88":{"tf":1.0}}}},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":2.23606797749979}}}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"178":{"tf":1.0},"65":{"tf":1.0},"77":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}},"df":38,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":2.23606797749979},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":2.0},"259":{"tf":1.0},"261":{"tf":1.7320508075688772},"31":{"tf":1.0},"44":{"tf":1.4142135623730951},"8":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":31,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":2.23606797749979},"108":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":3.7416573867739413},"112":{"tf":2.23606797749979},"117":{"tf":2.6457513110645907},"118":{"tf":2.8284271247461903},"123":{"tf":1.4142135623730951},"126":{"tf":3.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"131":{"tf":2.0},"135":{"tf":1.7320508075688772},"140":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"51":{"tf":2.0},"66":{"tf":2.0},"86":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{".":{"1":{"0":{"df":1,"docs":{"48":{"tf":1.0}}},"6":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"101":{"tf":1.0},"106":{"tf":2.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":2.0},"118":{"tf":2.0},"144":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"246":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":7,"docs":{"111":{"tf":1.0},"13":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"240":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"16":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":2.8284271247461903},"25":{"tf":1.0},"26":{"tf":1.0}}},"o":{"df":1,"docs":{"22":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":41,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":2.0},"118":{"tf":2.6457513110645907},"126":{"tf":2.23606797749979},"128":{"tf":1.0},"129":{"tf":1.0},"17":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"233":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"111":{"tf":1.0},"128":{"tf":1.0},"138":{"tf":1.0},"170":{"tf":1.0},"224":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"58":{"tf":2.8284271247461903},"63":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":2.449489742783178},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"215":{"tf":1.0},"219":{"tf":1.7320508075688772},"224":{"tf":1.0},"228":{"tf":2.23606797749979},"229":{"tf":2.0},"252":{"tf":1.0},"259":{"tf":1.4142135623730951},"263":{"tf":1.0},"271":{"tf":2.6457513110645907},"272":{"tf":1.7320508075688772},"41":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":45,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"119":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"170":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"230":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"272":{"tf":1.0},"274":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":12,"docs":{"2":{"tf":1.0},"206":{"tf":1.4142135623730951},"220":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"258":{"tf":1.0},"68":{"tf":2.23606797749979},"88":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"2":{"tf":1.0},"233":{"tf":1.4142135623730951},"44":{"tf":2.0},"45":{"tf":1.0}}}},"t":{"df":2,"docs":{"120":{"tf":1.0},"42":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"207":{"tf":1.0},"223":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"274":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":17,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.7320508075688772},"111":{"tf":2.449489742783178},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":2.449489742783178},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"144":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"111":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"226":{"tf":1.0},"245":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":11,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":2.23606797749979},"229":{"tf":1.0},"252":{"tf":1.0},"271":{"tf":2.449489742783178},"272":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}}}}}},"t":{"df":55,"docs":{"111":{"tf":1.0},"137":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"31":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"2":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"50":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":53,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.449489742783178},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":1.7320508075688772},"118":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"246":{"tf":2.23606797749979},"247":{"tf":2.0},"25":{"tf":1.0},"252":{"tf":1.0},"265":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.4142135623730951},"55":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.449489742783178},"9":{"tf":1.0},"97":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"35":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"111":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":19,"docs":{"104":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"66":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}},"e":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"111":{"tf":1.0},"117":{"tf":1.0},"138":{"tf":1.0}}},"t":{"df":2,"docs":{"224":{"tf":1.0},"31":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"a":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":1,"docs":{"268":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":29,"docs":{"106":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.6457513110645907},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":2.0},"137":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"146":{"tf":2.23606797749979},"147":{"tf":1.0},"154":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"243":{"tf":1.7320508075688772},"39":{"tf":1.0},"45":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"68":{"tf":1.0},"84":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0}}}}},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"0":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"1":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"2":{",":{"df":0,"docs":{},"i":{"df":2,"docs":{"129":{"tf":1.0},"268":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}}},"m":{"'":{"df":2,"docs":{"262":{"tf":1.0},"263":{"tf":1.0}}},"df":13,"docs":{"116":{"tf":1.7320508075688772},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"260":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"269":{"tf":1.0},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"75":{"tf":1.0}}}}},"df":29,"docs":{"100":{"tf":1.0},"105":{"tf":2.23606797749979},"107":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":1.0},"2":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":2.23606797749979},"232":{"tf":2.23606797749979},"233":{"tf":2.23606797749979},"240":{"tf":1.7320508075688772},"243":{"tf":1.0},"245":{"tf":3.1622776601683795},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"41":{"tf":2.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"75":{"tf":3.0},"8":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":2.0},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"19":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951}}}}}},"n":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":10,"docs":{"166":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"240":{"tf":2.449489742783178},"244":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"'":{"df":1,"docs":{"251":{"tf":1.0}}},"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"2":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"6":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":67,"docs":{"103":{"tf":1.0},"104":{"tf":2.449489742783178},"105":{"tf":3.0},"106":{"tf":4.0},"110":{"tf":1.7320508075688772},"111":{"tf":4.123105625617661},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":3.3166247903554},"118":{"tf":2.8284271247461903},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":2.449489742783178},"126":{"tf":3.1622776601683795},"128":{"tf":1.0},"129":{"tf":3.872983346207417},"130":{"tf":2.449489742783178},"131":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"211":{"tf":2.23606797749979},"213":{"tf":2.449489742783178},"217":{"tf":2.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"223":{"tf":3.1622776601683795},"226":{"tf":1.0},"227":{"tf":2.0},"231":{"tf":1.4142135623730951},"233":{"tf":2.6457513110645907},"234":{"tf":4.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"244":{"tf":2.23606797749979},"245":{"tf":3.0},"246":{"tf":3.0},"247":{"tf":2.8284271247461903},"250":{"tf":2.449489742783178},"251":{"tf":2.449489742783178},"252":{"tf":2.0},"254":{"tf":2.6457513110645907},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.7320508075688772},"259":{"tf":2.0},"261":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":3.1622776601683795},"268":{"tf":2.23606797749979},"87":{"tf":1.7320508075688772},"97":{"tf":1.0}}}},"p":{"c":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":9,"docs":{"113":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":24,"docs":{"105":{"tf":1.7320508075688772},"112":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":2.23606797749979},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"211":{"tf":2.23606797749979},"212":{"tf":2.23606797749979},"217":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.7320508075688772},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":3.872983346207417},"267":{"tf":1.0},"271":{"tf":1.7320508075688772},"32":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"37":{"tf":1.0},"66":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"11":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"r":{")":{"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"3":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{",":{"d":{")":{")":{"df":0,"docs":{},"r":{"df":0,"docs":{},"′":{"df":0,"docs":{},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{",":{"d":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"0":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":9,"docs":{"161":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":23,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"126":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.4142135623730951},"217":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.4142135623730951},"258":{"tf":2.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},",":{".":{".":{".":{",":{"df":0,"docs":{},"s":{"1":{"4":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},".":{".":{".":{"df":0,"docs":{},"s":{"1":{"5":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"0":{"df":3,"docs":{"212":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"263":{"tf":1.0}}},"1":{"df":3,"docs":{"212":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"263":{"tf":1.0}}},"2":{"4":{"8":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"=":{"0":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"1":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"3":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"2":{"4":{"8":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"2":{"4":{"8":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"":{"=":{"0":{"df":2,"docs":{"159":{"tf":1.0},"165":{"tf":1.0}}},"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"′":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"166":{"tf":1.0},"175":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"182":{"tf":1.0}}},"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"2":{"df":4,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"2":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"+":{"1":{")":{"=":{"0":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{")":{"=":{"0":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"=":{"0":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"158":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"184":{"tf":1.0},"190":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"⋅":{"(":{"df":0,"docs":{},"f":{"a":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"1":{"2":{"df":1,"docs":{"204":{"tf":1.0}},"":{"+":{"1":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":3,"docs":{"212":{"tf":1.0},"218":{"tf":1.0},"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"s":{"1":{"2":{"df":0,"docs":{},"":{"+":{"2":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"5":{"df":2,"docs":{"131":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951}}},"df":10,"docs":{"162":{"tf":1.0},"163":{"tf":1.0},"212":{"tf":1.4142135623730951},"217":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.4142135623730951},"258":{"tf":2.0},"259":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"s":{"1":{"5":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"0":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"212":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"⋅":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"′":{"df":0,"docs":{},"":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":7,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"1":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"≤":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}}}}},"2":{"df":5,"docs":{"223":{"tf":1.4142135623730951},"227":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0}},"":{"=":{"1":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{")":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"∗":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"−":{"df":0,"docs":{},"s":{"=":{"0":{"df":1,"docs":{"249":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"3":{"df":1,"docs":{"227":{"tf":1.0}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"∗":{"2":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{"+":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"=":{"0":{"df":1,"docs":{"249":{"tf":1.0}}},"1":{"df":1,"docs":{"249":{"tf":1.0}}},"df":0,"docs":{}},"_":{"1":{"df":1,"docs":{"259":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":46,"docs":{"101":{"tf":1.0},"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"127":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.4142135623730951},"150":{"tf":1.0},"184":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.7320508075688772},"233":{"tf":1.7320508075688772},"240":{"tf":2.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":2.0},"249":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":2.0},"256":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":2.6457513110645907},"259":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"267":{"tf":1.0},"271":{"tf":2.0},"272":{"tf":1.4142135623730951},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"60":{"tf":2.23606797749979},"89":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":37,"docs":{"133":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"243":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"202":{"tf":1.0},"203":{"tf":1.0},"24":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}},"c":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"110":{"tf":1.0},"27":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"138":{"tf":1.0},"274":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"141":{"tf":1.0},"196":{"tf":1.7320508075688772},"64":{"tf":1.0}}}}}}},"df":3,"docs":{"23":{"tf":1.0},"248":{"tf":1.0},"65":{"tf":2.449489742783178}},"e":{"c":{"df":2,"docs":{"20":{"tf":2.8284271247461903},"21":{"tf":2.0}},"o":{"df":0,"docs":{},"n":{"d":{"df":25,"docs":{"105":{"tf":1.7320508075688772},"108":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"211":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"245":{"tf":1.7320508075688772},"254":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.7320508075688772},"2":{"tf":1.0},"8":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":36,"docs":{"100":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":2.23606797749979},"123":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"217":{"tf":1.0},"219":{"tf":1.0},"232":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"25":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"37":{"tf":1.0},"4":{"tf":1.7320508075688772},"42":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"1":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"266":{"tf":1.4142135623730951},"274":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"17":{"tf":1.0},"209":{"tf":1.0},"62":{"tf":1.0},"71":{"tf":1.0}},"n":{"df":4,"docs":{"138":{"tf":1.0},"20":{"tf":1.0},"223":{"tf":1.0},"89":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"209":{"tf":1.4142135623730951},"221":{"tf":1.0},"273":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"226":{"tf":1.0},"233":{"tf":1.4142135623730951},"245":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0},"47":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"224":{"tf":1.0}}},"df":25,"docs":{"104":{"tf":1.7320508075688772},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"169":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.7320508075688772},"223":{"tf":1.7320508075688772},"224":{"tf":2.0},"226":{"tf":1.7320508075688772},"227":{"tf":4.358898943540674},"230":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":3.4641016151377544},"242":{"tf":1.4142135623730951},"245":{"tf":1.0},"249":{"tf":1.7320508075688772},"251":{"tf":1.0},"258":{"tf":2.0},"259":{"tf":1.0},"262":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"168":{"tf":1.0},"195":{"tf":1.0},"240":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"63":{"tf":1.0},"90":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"d":{"df":7,"docs":{"116":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"245":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.0}}},"t":{"df":9,"docs":{"116":{"tf":1.0},"219":{"tf":1.4142135623730951},"224":{"tf":1.0},"228":{"tf":2.0},"229":{"tf":1.0},"245":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":2.23606797749979},"87":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"2":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.0},"36":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":18,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"18":{"tf":1.0},"246":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"88":{"tf":1.0},"97":{"tf":2.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"104":{"tf":2.0},"106":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.4142135623730951},"220":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"35":{"tf":1.0},"69":{"tf":1.0}}}},"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"v":{"df":4,"docs":{"103":{"tf":1.0},"142":{"tf":1.0},"245":{"tf":1.0},"6":{"tf":1.0}}}},"t":{"df":104,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.23606797749979},"105":{"tf":2.0},"106":{"tf":3.605551275463989},"11":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":2.6457513110645907},"113":{"tf":2.23606797749979},"114":{"tf":1.4142135623730951},"116":{"tf":2.8284271247461903},"117":{"tf":2.0},"118":{"tf":2.0},"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":2.449489742783178},"124":{"tf":2.0},"125":{"tf":2.23606797749979},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":2.449489742783178},"132":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"138":{"tf":2.23606797749979},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"223":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":2.449489742783178},"234":{"tf":4.358898943540674},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"242":{"tf":2.0},"243":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":2.0},"258":{"tf":3.0},"259":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"274":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"100":{"tf":1.0},"246":{"tf":1.4142135623730951}}},"r":{"df":9,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"145":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"33":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"88":{"tf":1.0}}}}}},"h":{"a":{"2":{"5":{"6":{"df":2,"docs":{"72":{"tf":1.0},"80":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.0},"230":{"tf":1.0},"245":{"tf":1.0},"69":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":45,"docs":{"127":{"tf":1.0},"130":{"tf":2.6457513110645907},"131":{"tf":2.449489742783178},"132":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"135":{"tf":2.6457513110645907},"137":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":2.23606797749979},"147":{"tf":3.0},"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"81":{"tf":1.0},"84":{"tf":4.123105625617661}}}},"p":{"df":1,"docs":{"2":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":4,"docs":{"100":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"w":{"df":2,"docs":{"138":{"tf":1.0},"169":{"tf":1.0}},"n":{"df":15,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":2.449489742783178},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"138":{"tf":1.0},"246":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"272":{"tf":1.0},"89":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"i":{"+":{"1":{"2":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"8":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"187":{"tf":1.0},"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"162":{"tf":1.0},"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"208":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":2.0},"245":{"tf":3.1622776601683795},"269":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"259":{"tf":1.0},"263":{"tf":1.0}}}},"df":1,"docs":{"238":{"tf":1.0}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"221":{"tf":1.0}}}}}}},"df":13,"docs":{"111":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951},"258":{"tf":1.0},"33":{"tf":1.0},"81":{"tf":1.0}}},"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":2.0},"118":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.4142135623730951},"44":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"115":{"tf":1.0},"147":{"tf":1.0},"184":{"tf":1.0},"210":{"tf":1.0},"257":{"tf":1.0},"43":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"112":{"tf":1.0},"18":{"tf":1.0},"212":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.4142135623730951},"33":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"211":{"tf":1.0},"254":{"tf":1.0}}}}},"i":{"c":{"df":3,"docs":{"170":{"tf":1.0},"222":{"tf":1.0},"247":{"tf":1.0}}},"df":6,"docs":{"111":{"tf":1.4142135623730951},"130":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"35":{"tf":1.0},"87":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":24,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"33":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"240":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":44,"docs":{"103":{"tf":1.4142135623730951},"105":{"tf":2.449489742783178},"11":{"tf":1.0},"111":{"tf":3.1622776601683795},"112":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"134":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"20":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"219":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"236":{"tf":1.4142135623730951},"239":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":2.23606797749979},"25":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":2.23606797749979},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"271":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.0},"97":{"tf":3.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"257":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":8,"docs":{"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":2.0},"209":{"tf":1.7320508075688772},"70":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"+":{"1":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"187":{"tf":1.0},"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":6,"docs":{"104":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"49":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951}}},"w":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.0},"232":{"tf":1.0},"266":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"246":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"105":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"211":{"tf":1.0},"23":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"19":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":7,"docs":{"2":{"tf":1.0},"209":{"tf":1.4142135623730951},"23":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"3":{"tf":1.0},"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"232":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0}}}}},"p":{"=":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":7,"docs":{"130":{"tf":1.0},"2":{"tf":1.0},"221":{"tf":1.0},"25":{"tf":1.0},"266":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":2.23606797749979}}}},"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":25,"docs":{"101":{"tf":3.1622776601683795},"103":{"tf":2.0},"105":{"tf":2.0},"106":{"tf":2.6457513110645907},"107":{"tf":1.4142135623730951},"111":{"tf":5.291502622129181},"112":{"tf":3.1622776601683795},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"122":{"tf":3.0},"123":{"tf":2.23606797749979},"124":{"tf":2.0},"125":{"tf":1.7320508075688772},"126":{"tf":2.23606797749979},"143":{"tf":1.0},"2":{"tf":1.0},"41":{"tf":1.0},"97":{"tf":2.23606797749979},"99":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"10":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":2.449489742783178}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"103":{"tf":1.0},"120":{"tf":2.23606797749979},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"220":{"tf":1.4142135623730951},"228":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"44":{"tf":1.4142135623730951},"68":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":26,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"16":{"tf":1.0},"209":{"tf":1.0},"220":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"232":{"tf":1.0},"233":{"tf":1.0},"244":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.7320508075688772},"36":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":35,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"120":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":2.23606797749979},"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"226":{"tf":1.0},"261":{"tf":1.0},"270":{"tf":1.4142135623730951},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":3.7416573867739413},"88":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"2":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"101":{"tf":2.23606797749979},"103":{"tf":1.0},"106":{"tf":2.23606797749979},"109":{"tf":1.7320508075688772},"112":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"93":{"tf":2.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"=":{"0":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"′":{"=":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"δ":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"33":{"tf":1.0}}}},"l":{"df":2,"docs":{"1":{"tf":1.0},"33":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"75":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"4":{")":{",":{"a":{"d":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}}}},"df":147,"docs":{"10":{"tf":2.0},"101":{"tf":1.4142135623730951},"105":{"tf":2.449489742783178},"106":{"tf":3.4641016151377544},"109":{"tf":1.0},"110":{"tf":3.872983346207417},"111":{"tf":2.0},"112":{"tf":3.872983346207417},"113":{"tf":4.123105625617661},"114":{"tf":1.7320508075688772},"117":{"tf":4.0},"118":{"tf":2.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":4.0},"128":{"tf":3.0},"129":{"tf":2.449489742783178},"130":{"tf":3.1622776601683795},"131":{"tf":3.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":2.6457513110645907},"135":{"tf":1.4142135623730951},"137":{"tf":3.3166247903554},"139":{"tf":4.58257569495584},"140":{"tf":2.449489742783178},"141":{"tf":4.0},"142":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"150":{"tf":2.0},"151":{"tf":1.7320508075688772},"152":{"tf":2.0},"153":{"tf":1.7320508075688772},"154":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":1.7320508075688772},"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"166":{"tf":2.0},"167":{"tf":2.8284271247461903},"17":{"tf":2.0},"171":{"tf":1.7320508075688772},"172":{"tf":2.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"183":{"tf":1.7320508075688772},"184":{"tf":3.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772},"190":{"tf":2.6457513110645907},"191":{"tf":2.449489742783178},"192":{"tf":2.0},"193":{"tf":2.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":2.23606797749979},"197":{"tf":2.23606797749979},"198":{"tf":2.449489742783178},"199":{"tf":1.0},"200":{"tf":2.0},"201":{"tf":2.0},"202":{"tf":2.23606797749979},"203":{"tf":2.0},"204":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"206":{"tf":2.23606797749979},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"209":{"tf":3.1622776601683795},"215":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.7320508075688772},"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":1.7320508075688772},"24":{"tf":1.0},"245":{"tf":1.7320508075688772},"252":{"tf":1.0},"259":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"28":{"tf":2.6457513110645907},"31":{"tf":2.0},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.0},"45":{"tf":2.8284271247461903},"47":{"tf":1.0},"49":{"tf":2.23606797749979},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"6":{"tf":3.0},"60":{"tf":5.0990195135927845},"62":{"tf":2.6457513110645907},"63":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":5.0990195135927845},"66":{"tf":4.123105625617661},"68":{"tf":1.0},"74":{"tf":2.8284271247461903},"75":{"tf":2.449489742783178},"79":{"tf":2.0},"8":{"tf":2.449489742783178},"80":{"tf":2.0},"81":{"tf":2.23606797749979},"82":{"tf":3.872983346207417},"83":{"tf":4.69041575982343},"84":{"tf":3.0},"85":{"tf":1.7320508075688772},"86":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"9":{"tf":2.23606797749979},"93":{"tf":2.0},"94":{"tf":2.8284271247461903},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"32":{"tf":1.4142135623730951},"38":{"tf":1.0},"69":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"258":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":9,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"274":{"tf":4.123105625617661},"4":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":95,"docs":{"105":{"tf":2.23606797749979},"107":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":1.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":2.0},"127":{"tf":1.0},"137":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":2.23606797749979},"233":{"tf":1.0},"234":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"245":{"tf":2.0},"261":{"tf":1.0},"271":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"74":{"tf":1.7320508075688772},"8":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}}}},"t":{"df":1,"docs":{"16":{"tf":1.4142135623730951}},"e":{"df":43,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":2.23606797749979},"106":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":2.23606797749979},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"150":{"tf":1.4142135623730951},"172":{"tf":1.0},"18":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":2.23606797749979},"233":{"tf":2.449489742783178},"236":{"tf":2.449489742783178},"237":{"tf":2.0},"238":{"tf":2.6457513110645907},"239":{"tf":2.6457513110645907},"24":{"tf":1.0},"240":{"tf":2.6457513110645907},"243":{"tf":1.4142135623730951},"244":{"tf":2.23606797749979},"245":{"tf":3.3166247903554},"28":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"2":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":3,"docs":{"255":{"tf":1.0},"256":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":1.0}}}},"y":{"df":6,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"217":{"tf":1.0},"249":{"tf":1.0},"262":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"6":{"4":{"df":2,"docs":{"72":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"f":{"4":{"df":2,"docs":{"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"76":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"3":{"df":2,"docs":{"72":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":2,"docs":{"72":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"u":{"6":{"4":{"df":4,"docs":{"38":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"71":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"72":{"tf":1.0},"85":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"72":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"255":{"tf":1.0}}}},"p":{"df":16,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":2.449489742783178},"112":{"tf":2.23606797749979},"130":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":2.23606797749979},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"242":{"tf":1.0},"267":{"tf":1.0},"99":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"110":{"tf":1.0},"137":{"tf":1.0},"212":{"tf":1.0},"255":{"tf":1.0},"63":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"6":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"10":{"tf":1.7320508075688772},"114":{"tf":1.0},"128":{"tf":1.0},"17":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"265":{"tf":1.0},"267":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"6":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":2.23606797749979},"79":{"tf":2.0},"80":{"tf":2.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"219":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":2.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":16,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"17":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"233":{"tf":1.0},"255":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"16":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"52":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"34":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":9,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"137":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"262":{"tf":1.0},"37":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"82":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"65":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"h":{"df":21,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"121":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.7320508075688772},"233":{"tf":1.0},"245":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"29":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"170":{"tf":1.0},"199":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":4,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"207":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"17":{"tf":2.23606797749979},"2":{"tf":1.4142135623730951},"55":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"138":{"tf":1.0},"2":{"tf":2.449489742783178},"212":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"270":{"tf":1.0},"3":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"39":{"tf":1.4142135623730951},"7":{"tf":1.0},"88":{"tf":1.0}}}},"s":{"df":2,"docs":{"239":{"tf":1.0},"240":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":26,"docs":{"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"114":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"218":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"250":{"tf":2.0},"254":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":2.0},"264":{"tf":1.0},"9":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"p":{".":{"1":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"w":{"df":3,"docs":{"139":{"tf":1.0},"189":{"tf":1.7320508075688772},"60":{"tf":1.0}}}},"df":11,"docs":{"139":{"tf":1.0},"185":{"tf":2.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"60":{"tf":2.6457513110645907}},"w":{".":{"1":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":2,"docs":{"139":{"tf":1.0},"187":{"tf":1.7320508075688772}}},"3":{"df":2,"docs":{"139":{"tf":1.0},"188":{"tf":1.7320508075688772}}},"df":3,"docs":{"139":{"tf":1.0},"186":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951}}}},"y":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"246":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"33":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":2.0},"144":{"tf":1.0},"220":{"tf":1.0},"229":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":2.6457513110645907},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"64":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":3.0},"99":{"tf":1.0}},"l":{".":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"245":{"tf":1.0}}},"df":16,"docs":{"111":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"149":{"tf":1.4142135623730951},"169":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"4":{"tf":1.4142135623730951},"72":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"c":{"'":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"⋅":{"(":{"df":0,"docs":{},"z":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"1":{"6":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"2":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{")":{")":{"=":{"0":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"0":{"df":4,"docs":{"105":{"tf":1.7320508075688772},"129":{"tf":1.0},"131":{"tf":1.0},"170":{"tf":1.0}},"":{",":{"df":0,"docs":{},"t":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"df":5,"docs":{"105":{"tf":1.4142135623730951},"129":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"170":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"t":{"4":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":6,"docs":{"105":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"170":{"tf":1.0}}},"3":{"df":1,"docs":{"170":{"tf":1.0}}},"5":{"df":1,"docs":{"105":{"tf":1.0}}},"6":{"df":1,"docs":{"105":{"tf":1.0}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"77":{"tf":2.0}}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":51,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":6.244997998398398},"106":{"tf":5.291502622129181},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":3.0},"111":{"tf":4.898979485566356},"112":{"tf":4.358898943540674},"113":{"tf":2.6457513110645907},"115":{"tf":2.0},"117":{"tf":4.123105625617661},"118":{"tf":4.123105625617661},"119":{"tf":1.4142135623730951},"126":{"tf":4.358898943540674},"128":{"tf":1.0},"129":{"tf":3.4641016151377544},"130":{"tf":2.8284271247461903},"131":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":2.8284271247461903},"17":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.4142135623730951},"221":{"tf":1.0},"230":{"tf":3.0},"231":{"tf":2.23606797749979},"233":{"tf":3.0},"244":{"tf":1.0},"245":{"tf":3.3166247903554},"246":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"248":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":3.1622776601683795},"265":{"tf":1.7320508075688772},"267":{"tf":2.8284271247461903},"268":{"tf":2.0},"269":{"tf":3.1622776601683795},"50":{"tf":1.0},"55":{"tf":1.4142135623730951},"67":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"21":{"tf":1.0},"55":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.449489742783178}},"n":{"df":2,"docs":{"101":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"13":{"tf":1.0},"15":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"24":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"35":{"tf":1.4142135623730951},"7":{"tf":1.0},"71":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"101":{"tf":1.0},"13":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0}}}}},"df":5,"docs":{"256":{"tf":1.4142135623730951},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0},"64":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"104":{"tf":1.0},"116":{"tf":1.7320508075688772},"118":{"tf":2.23606797749979},"127":{"tf":1.0},"18":{"tf":1.0},"206":{"tf":1.0},"34":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"37":{"tf":1.0},"45":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"274":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"69":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"t":{"'":{"df":3,"docs":{"271":{"tf":1.0},"272":{"tf":1.0},"55":{"tf":1.0}}},":":{"1":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"111":{"tf":1.0},"184":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"230":{"tf":1.0},"71":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"116":{"tf":1.0},"223":{"tf":1.7320508075688772},"262":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}},"g":{"df":3,"docs":{"2":{"tf":1.0},"24":{"tf":1.4142135623730951},"60":{"tf":1.0}}}},"r":{"d":{"df":10,"docs":{"105":{"tf":1.4142135623730951},"112":{"tf":1.0},"138":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"23":{"tf":1.0},"245":{"tf":1.4142135623730951},"35":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"215":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0},"270":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"111":{"tf":1.0},"212":{"tf":1.0}},"t":{"df":6,"docs":{"105":{"tf":1.7320508075688772},"111":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.0},"232":{"tf":1.0},"266":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":9,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"123":{"tf":1.0},"143":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.4142135623730951},"42":{"tf":1.0},"6":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"23":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.0},"249":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}}}}}}}}},"u":{"df":77,"docs":{"100":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":2.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"138":{"tf":2.449489742783178},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"147":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"238":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.7320508075688772},"271":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.7320508075688772},"7":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":2.0},"98":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":1,"docs":{"238":{"tf":1.0}},"e":{"df":2,"docs":{"233":{"tf":1.0},"245":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":25,"docs":{"105":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"129":{"tf":1.0},"19":{"tf":3.0},"20":{"tf":2.449489742783178},"209":{"tf":1.0},"21":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"226":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951},"263":{"tf":1.0},"267":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":6,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"211":{"tf":1.0},"240":{"tf":1.4142135623730951},"245":{"tf":1.0},"65":{"tf":1.0},"87":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"116":{"tf":1.0}}},"l":{"df":5,"docs":{"16":{"tf":1.0},"22":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0}}}},"p":{"df":71,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":3.3166247903554},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.6457513110645907},"114":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"42":{"tf":1.7320508075688772},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":3.1622776601683795},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":2.449489742783178},"68":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"93":{"tf":2.0},"94":{"tf":2.8284271247461903},"98":{"tf":2.23606797749979}}},"t":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"106":{"tf":1.0},"111":{"tf":2.0},"138":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"258":{"tf":1.0},"37":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":49,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":2.0},"128":{"tf":1.0},"136":{"tf":1.7320508075688772},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":2.449489742783178},"218":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":3.872983346207417},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"230":{"tf":1.0},"233":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"258":{"tf":2.23606797749979},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"265":{"tf":2.8284271247461903},"266":{"tf":3.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772}}},"k":{"df":16,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"117":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.4142135623730951},"260":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"89":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"19":{"tf":1.0},"258":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":58,"docs":{"113":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"223":{"tf":2.6457513110645907},"231":{"tf":1.4142135623730951},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"41":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":24,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"17":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":2.0},"220":{"tf":1.0},"239":{"tf":2.23606797749979},"240":{"tf":2.449489742783178},"33":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":3.1622776601683795},"75":{"tf":3.1622776601683795},"77":{"tf":1.0},"8":{"tf":2.449489742783178},"88":{"tf":1.0},"90":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"255":{"tf":1.0}}}}},"df":4,"docs":{"213":{"tf":1.0},"35":{"tf":1.0},"66":{"tf":1.0},"98":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"223":{"tf":1.0},"252":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"42":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"106":{"tf":3.605551275463989},"111":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"135":{"tf":1.4142135623730951},"17":{"tf":1.0},"77":{"tf":1.7320508075688772}},"e":{".":{"2":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}},"n":{"df":4,"docs":{"112":{"tf":1.0},"138":{"tf":1.0},"169":{"tf":1.0},"36":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"233":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"'":{"df":1,"docs":{"175":{"tf":1.0}}},"df":64,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"115":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"148":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":2.0},"227":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":2.8284271247461903},"259":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"269":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":3.872983346207417},"83":{"tf":4.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":10,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.0},"234":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"266":{"tf":1.0},"270":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}}}},"←":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"u":{"3":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"2":{"a":{"d":{"d":{"3":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772}}},"df":2,"docs":{"142":{"tf":1.0},"173":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"140":{"tf":1.0},"179":{"tf":1.7320508075688772},"248":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"1":{"df":1,"docs":{"56":{"tf":1.0}}},"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":2,"docs":{"142":{"tf":1.0},"172":{"tf":1.7320508075688772}}},"df":1,"docs":{"56":{"tf":1.0}},"w":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{".":{"b":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"27":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"57":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"28":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"u":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"142":{"tf":1.0},"178":{"tf":1.7320508075688772}}}}},"df":10,"docs":{"140":{"tf":1.4142135623730951},"142":{"tf":3.1622776601683795},"168":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.0},"55":{"tf":1.0},"81":{"tf":1.0}},"m":{"a":{"d":{"d":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"142":{"tf":1.0},"176":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"3":{"df":1,"docs":{"57":{"tf":1.0}}},"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"d":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"56":{"tf":1.0}}}}}},"u":{"b":{"df":2,"docs":{"142":{"tf":1.0},"175":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}},"w":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"57":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"3":{"df":1,"docs":{"57":{"tf":1.0}}},"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"d":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"140":{"tf":1.0},"180":{"tf":1.7320508075688772},"248":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0}}}}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"65":{"tf":1.0},"81":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"1":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"+":{"df":0,"docs":{},"α":{"4":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"z":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"d":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"213":{"tf":1.0},"252":{"tf":1.7320508075688772},"263":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"b":{"df":0,"docs":{},"h":{"+":{"df":0,"docs":{},"α":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"5":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":1,"docs":{"252":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"tf":1.4142135623730951}},"":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{",":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{",":{"2":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"4":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"+":{"df":0,"docs":{},"v":{"df":2,"docs":{"200":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"113":{"tf":2.23606797749979},"167":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"238":{"tf":1.0},"259":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"55":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951}},"e":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"82":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"83":{"tf":1.0}},"z":{"df":1,"docs":{"83":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"83":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"242":{"tf":1.0},"244":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"55":{"tf":1.0},"57":{"tf":3.605551275463989},"58":{"tf":2.23606797749979},"59":{"tf":2.449489742783178},"77":{"tf":1.0},"81":{"tf":1.0}}}}},"r":{"df":9,"docs":{"135":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"19":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"38":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"82":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":2,"docs":{"24":{"tf":1.0},"31":{"tf":2.449489742783178}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":32,"docs":{"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"252":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"272":{"tf":1.0},"89":{"tf":1.0},"99":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"234":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"87":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":7,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"127":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":8,"docs":{"168":{"tf":1.0},"2":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"120":{"tf":1.0},"23":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"139":{"tf":1.0},"143":{"tf":2.8284271247461903}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":22,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"232":{"tf":2.23606797749979},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"240":{"tf":1.7320508075688772},"243":{"tf":1.0},"245":{"tf":2.23606797749979},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":17,"docs":{"105":{"tf":1.4142135623730951},"111":{"tf":2.0},"138":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"238":{"tf":1.0},"258":{"tf":1.7320508075688772},"6":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"77":{"tf":1.0},"97":{"tf":2.0},"98":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"266":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"11":{"tf":1.0},"32":{"tf":1.0},"71":{"tf":1.0}}}},"df":136,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":1.0},"105":{"tf":2.0},"106":{"tf":2.449489742783178},"107":{"tf":1.0},"11":{"tf":2.0},"111":{"tf":3.0},"113":{"tf":2.0},"115":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":1.0},"118":{"tf":1.7320508075688772},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":3.0},"14":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"147":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"199":{"tf":1.0},"2":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"210":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":1.0},"220":{"tf":2.0},"223":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":2.449489742783178},"233":{"tf":3.4641016151377544},"234":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":2.0},"243":{"tf":1.0},"245":{"tf":3.4641016151377544},"246":{"tf":1.4142135623730951},"247":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.449489742783178},"266":{"tf":1.7320508075688772},"267":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":2.0},"38":{"tf":2.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":2.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"77":{"tf":2.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.872983346207417},"87":{"tf":1.7320508075688772},"88":{"tf":3.0},"89":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.0},"99":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"u":{"6":{"4":{"df":2,"docs":{"38":{"tf":1.4142135623730951},"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"97":{"tf":1.0}}},"df":11,"docs":{"17":{"tf":1.0},"2":{"tf":1.7320508075688772},"23":{"tf":1.7320508075688772},"32":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"69":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"d":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"72":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"52":{"tf":1.0}}}}},"v":{"0":{".":{"7":{"df":2,"docs":{"1":{"tf":1.0},"11":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"258":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"v":{"7":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"3":{"df":3,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"7":{"df":1,"docs":{"130":{"tf":1.0}}},"8":{"df":1,"docs":{"130":{"tf":1.0}}},"df":3,"docs":{"126":{"tf":1.0},"130":{"tf":1.0},"258":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"2":{"df":3,"docs":{"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"258":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"258":{"tf":1.0}}},"8":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"v":{"1":{"5":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":2,"docs":{"200":{"tf":1.0},"202":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"264":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"1":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"1":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":2,"docs":{"201":{"tf":1.0},"203":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"245":{"tf":1.0}},"l":{"df":2,"docs":{"166":{"tf":1.4142135623730951},"255":{"tf":2.6457513110645907}},"i":{"d":{"df":13,"docs":{"107":{"tf":1.0},"170":{"tf":2.449489742783178},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"25":{"tf":1.0},"60":{"tf":2.8284271247461903},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":157,"docs":{"10":{"tf":2.0},"100":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":3.605551275463989},"105":{"tf":4.0},"106":{"tf":4.795831523312719},"110":{"tf":1.7320508075688772},"111":{"tf":5.477225575051661},"113":{"tf":2.0},"114":{"tf":2.8284271247461903},"116":{"tf":4.123105625617661},"117":{"tf":3.3166247903554},"118":{"tf":3.605551275463989},"120":{"tf":3.0},"121":{"tf":2.0},"122":{"tf":2.0},"123":{"tf":3.0},"124":{"tf":2.23606797749979},"126":{"tf":4.58257569495584},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":3.7416573867739413},"130":{"tf":2.8284271247461903},"131":{"tf":3.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":2.449489742783178},"138":{"tf":2.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.4142135623730951},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":2.0},"17":{"tf":2.0},"170":{"tf":2.23606797749979},"171":{"tf":2.0},"172":{"tf":1.7320508075688772},"173":{"tf":2.0},"174":{"tf":2.0},"175":{"tf":2.0},"176":{"tf":2.23606797749979},"177":{"tf":2.23606797749979},"178":{"tf":1.7320508075688772},"179":{"tf":2.0},"180":{"tf":2.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"199":{"tf":2.0},"200":{"tf":2.23606797749979},"201":{"tf":2.23606797749979},"202":{"tf":2.0},"203":{"tf":2.23606797749979},"204":{"tf":2.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"207":{"tf":2.23606797749979},"208":{"tf":2.8284271247461903},"209":{"tf":3.1622776601683795},"210":{"tf":1.0},"211":{"tf":4.242640687119285},"212":{"tf":3.0},"213":{"tf":2.23606797749979},"216":{"tf":1.4142135623730951},"217":{"tf":2.8284271247461903},"218":{"tf":1.7320508075688772},"219":{"tf":2.23606797749979},"224":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"23":{"tf":2.0},"231":{"tf":2.449489742783178},"232":{"tf":2.0},"233":{"tf":3.1622776601683795},"234":{"tf":2.449489742783178},"238":{"tf":1.4142135623730951},"239":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":2.8284271247461903},"244":{"tf":1.0},"245":{"tf":3.7416573867739413},"246":{"tf":3.4641016151377544},"247":{"tf":2.8284271247461903},"250":{"tf":2.6457513110645907},"251":{"tf":2.23606797749979},"252":{"tf":2.0},"253":{"tf":1.7320508075688772},"254":{"tf":3.605551275463989},"255":{"tf":2.23606797749979},"256":{"tf":2.23606797749979},"257":{"tf":2.23606797749979},"258":{"tf":3.7416573867739413},"259":{"tf":3.4641016151377544},"261":{"tf":2.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":2.23606797749979},"267":{"tf":2.449489742783178},"268":{"tf":2.23606797749979},"271":{"tf":2.0},"272":{"tf":3.0},"29":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.7320508075688772},"49":{"tf":2.449489742783178},"50":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.7320508075688772},"60":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":2.449489742783178},"64":{"tf":1.0},"65":{"tf":2.8284271247461903},"68":{"tf":2.0},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":3.872983346207417},"77":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":2.449489742783178},"80":{"tf":1.0},"81":{"tf":2.23606797749979},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.872983346207417},"85":{"tf":1.0},"87":{"tf":2.0},"89":{"tf":1.4142135623730951},"97":{"tf":2.23606797749979},"98":{"tf":2.8284271247461903},"99":{"tf":2.23606797749979}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":26,"docs":{"103":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"219":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}},"df":1,"docs":{"169":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"135":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"16":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"72":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}},"b":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"c":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"d":{"df":1,"docs":{"245":{"tf":1.0}}},"df":12,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":3.1622776601683795},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"66":{"tf":2.0},"68":{"tf":2.8284271247461903}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"266":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"111":{"tf":1.0},"144":{"tf":1.0},"18":{"tf":1.0},"210":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"262":{"tf":1.0},"274":{"tf":1.0},"33":{"tf":1.0},"68":{"tf":1.0}},"f":{"df":10,"docs":{"100":{"tf":1.0},"19":{"tf":1.4142135623730951},"207":{"tf":1.0},"232":{"tf":2.6457513110645907},"233":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"35":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0}},"i":{"df":42,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":2.0},"107":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"22":{"tf":1.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.7320508075688772},"245":{"tf":1.0},"252":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":2,"docs":{"132":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"11":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}}}},"h":{"df":1,"docs":{"245":{"tf":1.0}},"i":{"df":0,"docs":{},"":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"3":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"t":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"":{"=":{"2":{"3":{"2":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"a":{"df":34,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":2.23606797749979},"126":{"tf":1.4142135623730951},"148":{"tf":1.0},"15":{"tf":1.4142135623730951},"169":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"259":{"tf":1.0},"267":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"42":{"tf":2.449489742783178},"44":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":2.449489742783178},"75":{"tf":1.4142135623730951},"8":{"tf":1.0},"88":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"132":{"tf":1.0},"257":{"tf":1.0}}}},"df":2,"docs":{"252":{"tf":1.4142135623730951},"259":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"111":{"tf":1.0},"19":{"tf":1.0},"258":{"tf":1.0},"35":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":21,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"129":{"tf":1.0},"2":{"tf":1.4142135623730951},"223":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":2.449489742783178},"231":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"262":{"tf":1.0},"264":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"268":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"k":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{")":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"c":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"6":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"h":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"245":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"b":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"":{"+":{"b":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"d":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"c":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"7":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"":{"=":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"'":{"df":9,"docs":{"2":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"77":{"tf":1.0}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":105,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":2.0},"10":{"tf":2.23606797749979},"100":{"tf":2.6457513110645907},"101":{"tf":2.449489742783178},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"105":{"tf":2.449489742783178},"106":{"tf":4.47213595499958},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"11":{"tf":2.8284271247461903},"110":{"tf":2.8284271247461903},"111":{"tf":2.6457513110645907},"112":{"tf":1.0},"113":{"tf":2.6457513110645907},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"14":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"16":{"tf":2.0},"168":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":4.123105625617661},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":2.6457513110645907},"220":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"3":{"tf":2.0},"32":{"tf":2.0},"33":{"tf":3.0},"35":{"tf":1.4142135623730951},"4":{"tf":2.23606797749979},"42":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.4142135623730951},"6":{"tf":2.8284271247461903},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"8":{"tf":2.23606797749979},"87":{"tf":1.7320508075688772},"88":{"tf":2.6457513110645907},"89":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772},"90":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":2.0},"98":{"tf":3.7416573867739413},"99":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"c":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"7":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"b":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"s":{"df":4,"docs":{"137":{"tf":1.0},"212":{"tf":1.0},"274":{"tf":1.0},"43":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"i":{"+":{"b":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"b":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"h":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"230":{"tf":1.0},"264":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"+":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":1,"docs":{"264":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{")":{"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":2,"docs":{"211":{"tf":1.0},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"←":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"i":{"]":{"[":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"]":{"[":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"→":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"i":{"]":{"[":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"]":{"[":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":18,"docs":{"121":{"tf":1.0},"130":{"tf":1.4142135623730951},"170":{"tf":1.0},"18":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.4142135623730951},"246":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.7320508075688772},"262":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0},"8":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}}}},"y":{"df":19,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"42":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.7320508075688772},"86":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":5,"docs":{"211":{"tf":1.0},"213":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":15,"docs":{"128":{"tf":1.0},"129":{"tf":2.449489742783178},"132":{"tf":1.0},"133":{"tf":1.0},"212":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"263":{"tf":1.0},"268":{"tf":1.7320508075688772}}}},"v":{"df":2,"docs":{"110":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"2":{"tf":1.0},"209":{"tf":1.0},"260":{"tf":1.0},"62":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"245":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"133":{"tf":1.0},"170":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"81":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"49":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"222":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"204":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"255":{"tf":1.0},"264":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"265":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":23,"docs":{"10":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"227":{"tf":1.0},"245":{"tf":2.0},"253":{"tf":1.0},"258":{"tf":2.23606797749979},"34":{"tf":2.23606797749979},"37":{"tf":1.0},"44":{"tf":2.449489742783178},"6":{"tf":1.0},"60":{"tf":2.8284271247461903},"62":{"tf":1.0},"65":{"tf":2.8284271247461903},"66":{"tf":3.4641016151377544},"68":{"tf":2.449489742783178},"70":{"tf":2.23606797749979},"75":{"tf":2.0},"85":{"tf":2.23606797749979},"87":{"tf":2.0}},"s":{".":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":18,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"116":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"241":{"tf":1.0},"255":{"tf":1.4142135623730951},"258":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"1":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"258":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"213":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"258":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"85":{"tf":2.8284271247461903}}}}}},"df":19,"docs":{"137":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"22":{"tf":1.0},"25":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":2.449489742783178},"258":{"tf":3.0},"259":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":2.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"0":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}}}}},"x":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"1":{"df":1,"docs":{"247":{"tf":1.0}}},"2":{"df":1,"docs":{"247":{"tf":1.0}}},"3":{"df":1,"docs":{"247":{"tf":1.0}}},"=":{"1":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"138":{"tf":4.0},"209":{"tf":1.7320508075688772},"211":{"tf":2.449489742783178},"241":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"213":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"(":{"a":{",":{"b":{")":{"=":{"a":{"+":{"b":{"df":0,"docs":{},"−":{"2":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"⋅":{"b":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"180":{"tf":1.7320508075688772},"220":{"tf":1.0},"246":{"tf":2.0},"52":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"x":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"′":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"x":{"+":{"df":0,"docs":{},"y":{")":{"=":{"0":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"1":{"df":1,"docs":{"247":{"tf":1.0}}},"2":{"df":1,"docs":{"247":{"tf":1.0}}},"3":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"z":{"=":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{")":{"4":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"":{"+":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{")":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"":{"+":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"0":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"219":{"tf":1.0},"246":{"tf":1.7320508075688772},"247":{"tf":2.449489742783178},"251":{"tf":1.0},"252":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":20,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"111":{"tf":1.0},"124":{"tf":1.0},"170":{"tf":1.7320508075688772},"2":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":2.23606797749979},"246":{"tf":1.4142135623730951},"259":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"49":{"tf":1.0},"66":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}},"k":{"df":2,"docs":{"274":{"tf":1.0},"3":{"tf":1.0}}},"p":{"df":3,"docs":{"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"251":{"tf":1.0}}}}}},"breadcrumbs":{"root":{"0":{"'":{"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"233":{"tf":1.0}}},",":{"0":{",":{"0":{",":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"1":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"224":{"tf":1.0},"234":{"tf":1.0}}},"1":{"df":2,"docs":{"224":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"0":{",":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"1":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"1":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"3":{",":{"4":{",":{"5":{",":{"6":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"2":{"df":2,"docs":{"6":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":2,"docs":{"124":{"tf":1.0},"189":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":2,"docs":{"34":{"tf":1.0},"70":{"tf":1.0}}}},".":{"9":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"1":{"0":{"0":{"1":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.0}}},"1":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":103,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":2.23606797749979},"106":{"tf":4.898979485566356},"109":{"tf":1.0},"110":{"tf":2.8284271247461903},"111":{"tf":5.0990195135927845},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":2.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":2.449489742783178},"120":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":2.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":2.0},"137":{"tf":2.0},"138":{"tf":3.4641016151377544},"139":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"154":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":2.8284271247461903},"227":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":3.605551275463989},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":2.23606797749979},"259":{"tf":1.7320508075688772},"261":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"28":{"tf":4.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":6.928203230275509},"34":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":2.23606797749979},"65":{"tf":2.6457513110645907},"66":{"tf":2.8284271247461903},"70":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"83":{"tf":4.0},"84":{"tf":2.449489742783178},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.0},"98":{"tf":2.0}},"s":{"df":1,"docs":{"239":{"tf":1.0}}},"x":{"7":{"b":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"":{"+":{"df":0,"docs":{},"v":{")":{"2":{"df":1,"docs":{"212":{"tf":1.0}}},"4":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"212":{"tf":1.0}}},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"a":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"r":{"+":{"7":{")":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"+":{"8":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"α":{"4":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"n":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"r":{"+":{"7":{")":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},",":{".":{".":{".":{",":{"df":0,"docs":{},"α":{"3":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"α":{"1":{"df":3,"docs":{"252":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0}},"":{",":{"df":0,"docs":{},"α":{"2":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"→":{"1":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"1":{"+":{"a":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"′":{")":{"df":0,"docs":{},"⋅":{"(":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":0,"docs":{},"−":{"1":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{")":{"=":{"0":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},",":{"0":{",":{"0":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"222":{"tf":1.0},"224":{"tf":1.4142135623730951}}},"1":{",":{"0":{",":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"1":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"222":{"tf":1.0},"224":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951}}},"1":{",":{"0":{"df":2,"docs":{"222":{"tf":1.0},"224":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"224":{"tf":1.0},"234":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"3":{",":{"4":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"6":{"7":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"/":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"7":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"1":{"1":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"138":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"266":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0}}},"1":{"0":{"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"138":{"tf":1.0},"274":{"tf":1.0}}},"2":{"4":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"144":{"tf":1.0}}},"6":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"144":{"tf":1.0}}},"df":9,"docs":{"123":{"tf":1.0},"139":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.4142135623730951},"247":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.0}}},"1":{"0":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"1":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"144":{"tf":1.0}}},"6":{"df":1,"docs":{"144":{"tf":1.0}}},"d":{"b":{"b":{"d":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"2":{"7":{"df":0,"docs":{},"e":{"2":{"6":{"df":0,"docs":{},"e":{"4":{"8":{"b":{"df":0,"docs":{},"e":{"3":{"1":{"9":{"8":{"1":{"3":{"3":{"d":{"df":0,"docs":{},"f":{"8":{"c":{"b":{"df":0,"docs":{},"e":{"d":{"6":{"c":{"5":{"8":{"7":{"5":{"d":{"0":{"df":0,"docs":{},"f":{"b":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.0}}},"2":{",":{"1":{"3":{",":{"1":{"4":{",":{"1":{"5":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"144":{"tf":1.0}}},"2":{"df":1,"docs":{"20":{"tf":1.0}}},"3":{"df":2,"docs":{"36":{"tf":1.0},"63":{"tf":1.0}}},"4":{"df":1,"docs":{"144":{"tf":1.0}}},"6":{"df":1,"docs":{"20":{"tf":1.0}}},"8":{"df":3,"docs":{"20":{"tf":1.0},"266":{"tf":1.0},"68":{"tf":1.0}}},"9":{"df":1,"docs":{"247":{"tf":1.4142135623730951}}},"df":12,"docs":{"123":{"tf":1.0},"139":{"tf":1.0},"187":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"246":{"tf":1.0},"258":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"3":{"5":{"6":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"20":{"tf":1.0}}},"df":2,"docs":{"139":{"tf":1.0},"222":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"204":{"tf":1.0}}}}},"4":{"df":2,"docs":{"139":{"tf":1.0},"20":{"tf":1.0}}},"5":{".":{"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"247":{"tf":1.0}}},"df":7,"docs":{"111":{"tf":1.0},"139":{"tf":1.0},"20":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"53":{"tf":1.0},"85":{"tf":1.0}}},"6":{"3":{"df":1,"docs":{"247":{"tf":1.0}}},"df":54,"docs":{"127":{"tf":2.449489742783178},"128":{"tf":2.23606797749979},"129":{"tf":1.0},"131":{"tf":2.0},"133":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"210":{"tf":2.0},"213":{"tf":2.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.0},"23":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":2.23606797749979},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"42":{"tf":2.449489742783178},"45":{"tf":2.0},"52":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":2.23606797749979},"88":{"tf":1.0},"9":{"tf":2.23606797749979},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"85":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}}},"7":{"df":6,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"53":{"tf":1.0},"89":{"tf":1.0}}},"8":{"df":2,"docs":{"139":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"9":{"df":3,"docs":{"128":{"tf":1.0},"139":{"tf":1.0},"53":{"tf":1.0}}},"df":118,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"106":{"tf":4.58257569495584},"109":{"tf":1.0},"110":{"tf":2.449489742783178},"111":{"tf":3.4641016151377544},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":2.23606797749979},"116":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":2.6457513110645907},"120":{"tf":2.0},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":2.23606797749979},"126":{"tf":1.7320508075688772},"129":{"tf":1.4142135623730951},"130":{"tf":2.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"138":{"tf":3.1622776601683795},"139":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":2.0},"148":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":2.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":2.0},"232":{"tf":1.4142135623730951},"233":{"tf":2.6457513110645907},"234":{"tf":4.795831523312719},"237":{"tf":1.7320508075688772},"238":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"245":{"tf":1.7320508075688772},"247":{"tf":4.47213595499958},"250":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":2.449489742783178},"259":{"tf":1.4142135623730951},"261":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.4142135623730951},"274":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":2.0},"34":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":2.8284271247461903},"53":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"60":{"tf":2.6457513110645907},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":2.0},"68":{"tf":2.23606797749979},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"83":{"tf":3.7416573867739413},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"−":{"b":{"6":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"4":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"4":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{")":{"=":{"0":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{")":{"=":{"0":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"b":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"1":{"6":{")":{"=":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{")":{"=":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"k":{"0":{"df":1,"docs":{"234":{"tf":1.0}}},"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"⋅":{"(":{"2":{"3":{"2":{"df":0,"docs":{},"−":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{")":{"=":{"1":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"δ":{"a":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"1":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{"=":{"1":{"df":2,"docs":{"257":{"tf":1.0},"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"δ":{"c":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"z":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"1":{"6":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{")":{"=":{"0":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"159":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"2":{"'":{"df":1,"docs":{"212":{"tf":1.0}}},".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"5":{"df":0,"docs":{},"x":{"df":1,"docs":{"258":{"tf":1.0}}}},"6":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"7":{"0":{"df":1,"docs":{"247":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"139":{"tf":1.0},"20":{"tf":1.0},"68":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"6":{"df":12,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.4142135623730951},"210":{"tf":1.0},"259":{"tf":1.0},"37":{"tf":1.0}}},"8":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"df":1,"docs":{"139":{"tf":1.0}}},"2":{"0":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}},"df":1,"docs":{"139":{"tf":1.0}}},"3":{"0":{"+":{"3":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"37":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"1":{"df":1,"docs":{"45":{"tf":1.0}}},"2":{"df":16,"docs":{"127":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"246":{"tf":1.0},"258":{"tf":1.7320508075688772},"55":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0}},"−":{"1":{"df":4,"docs":{"170":{"tf":1.0},"44":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"139":{"tf":1.0},"56":{"tf":1.0}}},"4":{".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"20":{"tf":1.0}}},"8":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"3":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"t":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":3,"docs":{"102":{"tf":1.0},"139":{"tf":1.0},"247":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"2":{"6":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":2,"docs":{"211":{"tf":1.7320508075688772},"65":{"tf":1.0}}},"6":{"df":1,"docs":{"258":{"tf":1.0}}},"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"≤":{"2":{"1":{"6":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"139":{"tf":1.0}}},"6":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"1":{"5":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"2":{"6":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"−":{"2":{"3":{"2":{"+":{"1":{"df":5,"docs":{"127":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"253":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"139":{"tf":1.0}}},"7":{".":{"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"21":{"tf":1.0}}},"df":3,"docs":{"111":{"tf":1.0},"123":{"tf":1.0},"139":{"tf":1.0}}},"8":{"df":3,"docs":{"139":{"tf":1.0},"20":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"df":2,"docs":{"139":{"tf":1.0},"68":{"tf":1.0}}},"^":{"3":{"2":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"82":{"tf":3.0},"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":74,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":1.0},"209":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"266":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":2.0},"51":{"tf":1.4142135623730951},"52":{"tf":2.449489742783178},"53":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":3.3166247903554},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":2.0},"68":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":2.0},"79":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":2.23606797749979},"87":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"'":{"df":1,"docs":{"212":{"tf":1.0}}},".":{"1":{"df":1,"docs":{"21":{"tf":1.0}}},"6":{"df":1,"docs":{"21":{"tf":1.0}}},"7":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"7":{"2":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"139":{"tf":1.0},"20":{"tf":1.0}}},"1":{"0":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}},"df":2,"docs":{"139":{"tf":1.0},"170":{"tf":1.0}}},"2":{"df":31,"docs":{"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":2.23606797749979},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"258":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"58":{"tf":2.0},"65":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":2.8284271247461903},"80":{"tf":2.8284271247461903},"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"88":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"1":{"3":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"140":{"tf":1.0},"58":{"tf":1.0}}},"4":{"df":1,"docs":{"140":{"tf":1.0}}},"5":{"df":2,"docs":{"140":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"140":{"tf":1.0},"58":{"tf":1.0}}},"7":{"df":3,"docs":{"140":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}},"8":{"df":1,"docs":{"140":{"tf":1.0}}},"9":{"df":1,"docs":{"140":{"tf":1.0}}},"df":49,"docs":{"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":2.23606797749979},"111":{"tf":1.0},"113":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"250":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":2.0},"45":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":3.3166247903554},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"66":{"tf":2.23606797749979},"68":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":1,"docs":{"213":{"tf":1.0}}},"r":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"4":{",":{"5":{",":{"6":{",":{"7":{",":{"8":{",":{"9":{",":{"1":{"0":{",":{"1":{"1":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":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":{"186":{"tf":1.0},"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":3,"docs":{"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0}}},"df":0,"docs":{}},".":{"6":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"0":{"4":{"2":{"6":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"140":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"1":{"8":{"5":{"1":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"140":{"tf":1.0}}},"2":{"df":1,"docs":{"140":{"tf":1.0}}},"3":{"df":1,"docs":{"140":{"tf":1.0}}},"4":{"df":3,"docs":{"140":{"tf":1.0},"58":{"tf":1.0},"84":{"tf":1.0}}},"5":{"df":1,"docs":{"140":{"tf":1.0}}},"6":{"df":1,"docs":{"140":{"tf":1.0}}},"7":{"df":3,"docs":{"140":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.7320508075688772}}},"8":{"df":2,"docs":{"141":{"tf":1.0},"85":{"tf":1.0}}},"9":{"df":1,"docs":{"141":{"tf":1.0}}},"]":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":54,"docs":{"104":{"tf":2.0},"105":{"tf":2.0},"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":2.6457513110645907},"116":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"138":{"tf":2.0},"139":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":2.8284271247461903},"166":{"tf":1.7320508075688772},"167":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"200":{"tf":1.0},"202":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":2.0},"209":{"tf":1.7320508075688772},"217":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"247":{"tf":2.23606797749979},"258":{"tf":1.7320508075688772},"269":{"tf":1.0},"31":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":3.3166247903554},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"65":{"tf":1.7320508075688772},"66":{"tf":2.6457513110645907},"72":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"77":{"tf":2.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}},"n":{"df":2,"docs":{"212":{"tf":1.0},"216":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}}},"5":{",":{"6":{",":{"7":{",":{"8":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"2":{"df":2,"docs":{"141":{"tf":1.0},"20":{"tf":1.0}}},"3":{"df":1,"docs":{"141":{"tf":1.0}}},"4":{"df":1,"docs":{"141":{"tf":1.0}}},"5":{"df":1,"docs":{"141":{"tf":1.0}}},"6":{"df":1,"docs":{"141":{"tf":1.0}}},"7":{"df":2,"docs":{"141":{"tf":1.0},"20":{"tf":1.0}}},"8":{"df":2,"docs":{"141":{"tf":1.0},"85":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"5":{"0":{"df":0,"docs":{},"x":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"141":{"tf":1.0},"58":{"tf":1.0}}},"df":27,"docs":{"113":{"tf":2.0},"116":{"tf":1.4142135623730951},"132":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.0},"142":{"tf":2.0},"143":{"tf":4.0},"144":{"tf":1.0},"200":{"tf":1.0},"222":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.449489742783178},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0}}},"6":{".":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"6":{"c":{"9":{"df":0,"docs":{},"f":{"0":{"3":{"7":{"c":{"7":{"8":{"9":{"3":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"e":{"4":{"1":{"1":{"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":1,"docs":{"141":{"tf":1.0}}},"1":{"df":2,"docs":{"141":{"tf":1.0},"20":{"tf":1.0}}},"2":{"df":1,"docs":{"141":{"tf":1.0}}},"3":{"df":2,"docs":{"141":{"tf":1.0},"52":{"tf":1.0}}},"4":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":23,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"213":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"266":{"tf":1.0},"38":{"tf":1.4142135623730951},"6":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.7320508075688772},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":4.0},"97":{"tf":1.0}}},"5":{"5":{"3":{"5":{"df":3,"docs":{"213":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.0}}},"6":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.0}},"k":{"df":1,"docs":{"213":{"tf":1.0}}}},"6":{"df":2,"docs":{"142":{"tf":1.0},"20":{"tf":1.0}}},"7":{"df":1,"docs":{"20":{"tf":1.0}}},"8":{"df":1,"docs":{"142":{"tf":1.0}}},"9":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}},"df":28,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.7320508075688772},"132":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"142":{"tf":3.1622776601683795},"184":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.7320508075688772},"224":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":2.0},"255":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"77":{"tf":1.4142135623730951}},"x":{"df":1,"docs":{"258":{"tf":1.0}}}},"7":{".":{"7":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"142":{"tf":1.0}}},"1":{"df":1,"docs":{"89":{"tf":1.0}}},"2":{"df":2,"docs":{"142":{"tf":1.0},"97":{"tf":1.0}}},"3":{"df":1,"docs":{"52":{"tf":1.0}}},"4":{"df":1,"docs":{"142":{"tf":1.0}}},"5":{"df":1,"docs":{"85":{"tf":1.0}}},"6":{"df":2,"docs":{"142":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"20":{"tf":1.0}}},"8":{"df":2,"docs":{"142":{"tf":1.0},"20":{"tf":1.0}}},"df":30,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":2.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"126":{"tf":1.0},"138":{"tf":2.6457513110645907},"139":{"tf":5.830951894845301},"140":{"tf":4.123105625617661},"141":{"tf":4.123105625617661},"143":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"240":{"tf":2.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"68":{"tf":1.0},"97":{"tf":1.7320508075688772}}},"8":{",":{"1":{"6":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"9":{",":{"1":{"0":{",":{"1":{"1":{",":{"1":{"2":{",":{"1":{"3":{",":{"1":{"4":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"143":{"tf":1.0},"20":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"2":{"df":1,"docs":{"143":{"tf":1.0}}},"3":{"df":1,"docs":{"143":{"tf":1.0}}},"4":{"df":1,"docs":{"143":{"tf":1.0}}},"5":{"df":2,"docs":{"143":{"tf":1.0},"20":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"143":{"tf":1.0}}},"7":{"df":2,"docs":{"143":{"tf":1.0},"30":{"tf":1.0}}},"8":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"143":{"tf":1.0}}},"9":{"df":2,"docs":{"143":{"tf":1.0},"20":{"tf":1.0}}},"df":45,"docs":{"104":{"tf":2.6457513110645907},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"111":{"tf":3.605551275463989},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":2.0},"121":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"142":{"tf":1.0},"186":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"213":{"tf":1.0},"222":{"tf":1.7320508075688772},"224":{"tf":1.0},"232":{"tf":3.3166247903554},"233":{"tf":1.7320508075688772},"234":{"tf":3.3166247903554},"237":{"tf":1.0},"238":{"tf":2.0},"242":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"246":{"tf":1.7320508075688772},"247":{"tf":1.7320508075688772},"250":{"tf":1.4142135623730951},"252":{"tf":1.0},"258":{"tf":1.0},"29":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"97":{"tf":2.0},"99":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"244":{"tf":1.0}}}},"⋅":{"d":{"df":0,"docs":{},"−":{"1":{"df":2,"docs":{"207":{"tf":1.0},"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"9":{".":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"8":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":2,"docs":{"143":{"tf":1.0},"20":{"tf":1.0}}},"2":{"df":1,"docs":{"143":{"tf":1.0}}},"3":{"df":1,"docs":{"143":{"tf":1.0}}},"4":{"df":2,"docs":{"143":{"tf":1.0},"84":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":1,"docs":{"143":{"tf":1.0}}},"6":{"df":3,"docs":{"144":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0}}},"df":23,"docs":{"105":{"tf":1.0},"111":{"tf":2.23606797749979},"118":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"193":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"247":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"68":{"tf":1.0},"85":{"tf":2.23606797749979},"87":{"tf":1.0},"97":{"tf":1.0}}},"_":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.0}}},"a":{"+":{"1":{"df":1,"docs":{"65":{"tf":1.0}}},"7":{"df":1,"docs":{"116":{"tf":1.0}}},"b":{")":{"df":0,"docs":{},"≥":{"2":{"3":{"2":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"+":{"c":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"173":{"tf":1.0}},"⋅":{"c":{"df":1,"docs":{"177":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"′":{",":{"df":0,"docs":{},"h":{"5":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{",":{"c":{",":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{",":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"/":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":7,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"34":{"tf":1.0},"54":{"tf":2.8284271247461903},"65":{"tf":1.4142135623730951},"70":{"tf":1.0},"87":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"a":{"1":{"1":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"df":1,"docs":{"209":{"tf":1.0}},"":{",":{"a":{"2":{"df":0,"docs":{},"":{",":{"a":{"3":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{".":{"a":{"3":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"←":{"df":0,"docs":{},"−":{"a":{"0":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"df":4,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"54":{"tf":2.8284271247461903},"65":{"tf":1.4142135623730951}},"′":{"df":0,"docs":{},"←":{"df":0,"docs":{},"−":{"a":{"1":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"2":{"df":2,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":1.0}}},"3":{"df":2,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":1.0}}},"<":{"2":{"3":{"2":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":1,"docs":{"57":{"tf":1.0}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"53":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}},"=":{"0":{"df":4,"docs":{"165":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}}},"1":{"df":1,"docs":{"51":{"tf":1.0}}},"4":{"1":{"8":{"5":{"1":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":2,"docs":{"164":{"tf":1.0},"51":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"∑":{"df":0,"docs":{},"i":{"=":{"0":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},">":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"6":{"3":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":4,"docs":{"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0}}}},"i":{"df":1,"docs":{"98":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":4,"docs":{"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":95,"docs":{"104":{"tf":1.0},"106":{"tf":3.1622776601683795},"107":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":2.0},"113":{"tf":1.0},"116":{"tf":3.1622776601683795},"117":{"tf":1.7320508075688772},"118":{"tf":2.23606797749979},"120":{"tf":2.0},"122":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":2.23606797749979},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"138":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":2.23606797749979},"207":{"tf":2.0},"208":{"tf":2.0},"212":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":3.1622776601683795},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":2.23606797749979},"255":{"tf":1.7320508075688772},"256":{"tf":2.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.4142135623730951},"272":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"p":{"df":3,"docs":{"232":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"62":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.7320508075688772},"74":{"tf":1.0}}}}},"r":{"b":{"df":15,"docs":{"104":{"tf":2.23606797749979},"106":{"tf":1.0},"111":{"tf":2.6457513110645907},"115":{"tf":1.4142135623730951},"116":{"tf":2.23606797749979},"232":{"tf":2.0},"233":{"tf":1.0},"238":{"tf":2.0},"239":{"tf":2.0},"240":{"tf":2.0},"243":{"tf":1.7320508075688772},"244":{"tf":1.4142135623730951},"245":{"tf":2.0},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"116":{"tf":2.0},"99":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":1,"docs":{"166":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"15":{"tf":2.449489742783178},"220":{"tf":1.0},"88":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":32,"docs":{"116":{"tf":1.7320508075688772},"127":{"tf":1.0},"199":{"tf":2.6457513110645907},"2":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"220":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.7320508075688772},"260":{"tf":1.0},"263":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":2.449489742783178},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":2.23606797749979},"72":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"257":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":15,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"259":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}}}},"r":{"d":{"df":7,"docs":{"100":{"tf":1.0},"104":{"tf":1.7320508075688772},"113":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"247":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":15,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"210":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"35":{"tf":2.23606797749979},"69":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"227":{"tf":3.0}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"231":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"105":{"tf":1.0},"111":{"tf":1.4142135623730951},"213":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{".":{"1":{"df":1,"docs":{"23":{"tf":1.0}}},"b":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":34,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":3.605551275463989},"110":{"tf":2.0},"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.449489742783178},"126":{"tf":2.23606797749979},"130":{"tf":1.7320508075688772},"140":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":2.0},"2":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.7320508075688772},"23":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.0},"248":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"265":{"tf":1.0},"38":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":38,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"2":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"233":{"tf":1.0},"234":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"259":{"tf":1.0},"38":{"tf":1.4142135623730951},"48":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"133":{"tf":1.0},"221":{"tf":1.0},"255":{"tf":1.0},"271":{"tf":1.0},"45":{"tf":1.0}}}}}}},"r":{"=":{"0":{"df":1,"docs":{"264":{"tf":1.0}}},"1":{"df":1,"docs":{"264":{"tf":1.0}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"262":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"111":{"tf":2.23606797749979},"223":{"tf":1.0},"254":{"tf":2.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"261":{"tf":1.7320508075688772},"262":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":46,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"106":{"tf":3.3166247903554},"111":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":3.1622776601683795},"118":{"tf":1.4142135623730951},"121":{"tf":2.23606797749979},"126":{"tf":2.0},"128":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"17":{"tf":1.0},"200":{"tf":2.0},"201":{"tf":2.0},"202":{"tf":2.0},"203":{"tf":2.0},"204":{"tf":1.7320508075688772},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"253":{"tf":1.7320508075688772},"254":{"tf":2.23606797749979},"255":{"tf":2.449489742783178},"256":{"tf":2.8284271247461903},"257":{"tf":2.6457513110645907},"258":{"tf":3.3166247903554},"259":{"tf":2.6457513110645907},"261":{"tf":1.0},"264":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"44":{"tf":2.6457513110645907},"45":{"tf":2.0},"6":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":3.4641016151377544},"77":{"tf":1.0}}}}},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{")":{"=":{"0":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":25,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":2.8284271247461903},"112":{"tf":1.7320508075688772},"117":{"tf":3.1622776601683795},"118":{"tf":3.3166247903554},"126":{"tf":2.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"213":{"tf":1.0},"221":{"tf":1.4142135623730951},"247":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"6":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.0},"223":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"127":{"tf":1.0},"138":{"tf":1.0},"241":{"tf":1.0},"87":{"tf":1.0}}}}},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"6":{"4":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"w":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"65":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"4":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"65":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"100":{"tf":1.0},"150":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"21":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":15,"docs":{"10":{"tf":3.1622776601683795},"17":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"207":{"tf":1.0},"6":{"tf":2.6457513110645907},"62":{"tf":2.449489742783178},"65":{"tf":4.898979485566356},"68":{"tf":2.23606797749979},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"8":{"tf":2.0},"85":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"[":{"df":0,"docs":{},"k":{"]":{"df":0,"docs":{},"←":{"[":{"a":{",":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"141":{"tf":1.0},"197":{"tf":2.23606797749979}},"w":{"df":2,"docs":{"139":{"tf":1.0},"198":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"137":{"tf":1.4142135623730951},"203":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"106":{"tf":1.0},"110":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":1.0},"219":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"265":{"tf":1.0},"45":{"tf":2.0},"49":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"t":{"df":21,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":1.0},"16":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0},"231":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"68":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":6,"docs":{"166":{"tf":1.0},"224":{"tf":1.0},"246":{"tf":1.4142135623730951},"247":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":2.449489742783178}}}}}},"o":{"df":1,"docs":{"31":{"tf":1.0}}}},"i":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":2,"docs":{"250":{"tf":1.4142135623730951},"99":{"tf":1.0}},"r":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":20,"docs":{"113":{"tf":2.0},"116":{"tf":1.0},"132":{"tf":1.4142135623730951},"149":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"241":{"tf":1.7320508075688772},"248":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"4":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"":{"<":{"2":{"3":{"2":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"∀":{"df":0,"docs":{},"i":{"df":0,"docs":{},"∈":{"df":0,"docs":{},"{":{"0":{",":{"1":{",":{"2":{",":{"3":{"df":0,"docs":{},"}":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":1,"docs":{"274":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"222":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"128":{"tf":1.0},"254":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":14,"docs":{"111":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.0},"213":{"tf":2.0},"221":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.4142135623730951},"248":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"40":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}},"g":{"df":2,"docs":{"17":{"tf":1.0},"29":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"0":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"123":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"254":{"tf":1.7320508075688772}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":7,"docs":{"116":{"tf":1.0},"17":{"tf":1.0},"227":{"tf":1.0},"245":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":22,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"209":{"tf":1.0},"221":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.4142135623730951},"260":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}}},"d":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"258":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"69":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"129":{"tf":1.0},"268":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}},"z":{"df":1,"docs":{"16":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"d":{"(":{"a":{",":{"b":{")":{"=":{"3":{"3":{"1":{"3":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"⋅":{"b":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"65":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"170":{"tf":1.0},"211":{"tf":1.4142135623730951},"221":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0},"36":{"tf":1.0},"62":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"221":{"tf":1.0},"246":{"tf":1.0},"74":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":3,"docs":{"15":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772}},"i":{"c":{"df":6,"docs":{"1":{"tf":1.0},"113":{"tf":1.0},"15":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0}}},"df":20,"docs":{"113":{"tf":1.0},"121":{"tf":1.0},"135":{"tf":1.0},"19":{"tf":1.0},"206":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":2.0},"226":{"tf":1.0},"227":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"255":{"tf":1.0},"262":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"254":{"tf":1.0},"258":{"tf":2.23606797749979},"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"111":{"tf":1.0},"209":{"tf":1.0},"251":{"tf":1.0}}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"2":{"tf":1.0},"216":{"tf":1.0},"243":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"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":3,"docs":{"23":{"tf":1.0},"265":{"tf":1.0},"270":{"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":9,"docs":{"155":{"tf":1.0},"2":{"tf":1.0},"274":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"87":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"45":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}}},"y":{"df":2,"docs":{"10":{"tf":1.0},"17":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":48,"docs":{"16":{"tf":2.449489742783178},"2":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":3.872983346207417},"34":{"tf":1.0},"35":{"tf":3.1622776601683795},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772}},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"51":{"tf":1.0}},"w":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":5,"docs":{"140":{"tf":1.0},"151":{"tf":2.0},"28":{"tf":1.0},"51":{"tf":1.7320508075688772},"85":{"tf":1.0}},"z":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"257":{"tf":1.0},"44":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":50,"docs":{"113":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"211":{"tf":1.0},"246":{"tf":1.4142135623730951},"258":{"tf":1.0},"268":{"tf":1.0},"34":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":3.0},"83":{"tf":3.1622776601683795},"84":{"tf":2.6457513110645907},"87":{"tf":1.0},"97":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"274":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":3.0},"111":{"tf":1.0},"129":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"104":{"tf":1.0},"115":{"tf":1.0},"22":{"tf":1.4142135623730951},"26":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"66":{"tf":1.7320508075688772},"69":{"tf":1.0},"72":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"95":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}},"y":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"′":{",":{"a":{",":{"0":{"df":1,"docs":{"117":{"tf":2.0}}},"1":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{",":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"=":{"1":{"6":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"∑":{"df":0,"docs":{},"i":{"=":{"0":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"←":{"a":{"+":{"2":{"df":2,"docs":{"65":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"q":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"−":{"a":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":2,"docs":{"256":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":2,"docs":{"254":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"257":{"tf":1.0},"258":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"←":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"4":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"→":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"−":{"b":{"df":1,"docs":{"175":{"tf":1.0}}},"c":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"≤":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}},"≥":{"2":{"3":{"2":{"df":3,"docs":{"56":{"tf":1.4142135623730951},"58":{"tf":3.3166247903554},"66":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}},"⊕":{"b":{"df":0,"docs":{},"→":{"df":0,"docs":{},"z":{"df":1,"docs":{"246":{"tf":1.0}}}}},"df":0,"docs":{}},"⋅":{"b":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"":{"=":{"0":{"df":1,"docs":{"51":{"tf":1.0}}},"1":{"df":1,"docs":{"51":{"tf":1.0}}},"b":{"df":1,"docs":{"51":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{",":{"c":{")":{"df":0,"docs":{},"←":{"a":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"0":{"df":11,"docs":{"112":{"tf":2.8284271247461903},"128":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.4142135623730951},"196":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"54":{"tf":2.0},"65":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}},"":{",":{".":{".":{".":{",":{"b":{"1":{"1":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":2,"docs":{"103":{"tf":1.0},"138":{"tf":1.0}}},"df":0,"docs":{},"j":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"1":{"df":0,"docs":{},"":{",":{"b":{"2":{"df":0,"docs":{},"":{",":{"b":{"3":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{".":{"b":{"3":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"1":{"6":{"df":3,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"6":{"1":{"df":4,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"":{"=":{"1":{"6":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"′":{"df":0,"docs":{},"":{"=":{"b":{"0":{"df":1,"docs":{"134":{"tf":1.0}},"":{"+":{"1":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"1":{"_":{"0":{"1":{"1":{"0":{"_":{"1":{"0":{"1":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"247":{"tf":1.0}}},"1":{"_":{"1":{"1":{"0":{"1":{"_":{"1":{"1":{"1":{"0":{"_":{"1":{"0":{"1":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"_":{"0":{"0":{"1":{"1":{"_":{"0":{"1":{"1":{"1":{"_":{"1":{"0":{"1":{"1":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"112":{"tf":3.0},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"138":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"54":{"tf":2.0},"65":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}},"":{",":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{",":{"b":{"1":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":2,"docs":{"128":{"tf":1.0},"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":5,"docs":{"112":{"tf":3.1622776601683795},"138":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"98":{"tf":1.4142135623730951}},"−":{"b":{"=":{"0":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":8,"docs":{"112":{"tf":3.0},"138":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"4":{"df":3,"docs":{"112":{"tf":2.0},"138":{"tf":1.0},"98":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":3,"docs":{"138":{"tf":1.0},"144":{"tf":1.0},"98":{"tf":1.4142135623730951}},"":{"=":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"144":{"tf":1.0}},"":{"=":{"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"5":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"4":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"4":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"5":{"df":1,"docs":{"138":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"b":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"=":{"0":{"df":3,"docs":{"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":2.449489742783178}}},"1":{"df":1,"docs":{"165":{"tf":1.0}}},"4":{"0":{"4":{"2":{"6":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"∑":{"df":0,"docs":{},"i":{"=":{"0":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},">":{"3":{"1":{"df":1,"docs":{"58":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"82":{"tf":3.872983346207417},"83":{"tf":4.0},"84":{"tf":1.7320508075688772}}}},"j":{"df":1,"docs":{"98":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"82":{"tf":3.872983346207417},"83":{"tf":4.0},"84":{"tf":1.7320508075688772}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"104":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"152":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"271":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"260":{"tf":1.0},"274":{"tf":1.7320508075688772},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"23":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"45":{"tf":1.0}}},"df":1,"docs":{"45":{"tf":3.0}}},"s":{"df":0,"docs":{},"e":{"df":20,"docs":{"0":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"113":{"tf":1.0},"124":{"tf":1.0},"147":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"259":{"tf":1.0},"274":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"49":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"126":{"tf":1.0},"2":{"tf":1.0},"242":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":19,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":3.1622776601683795},"106":{"tf":3.1622776601683795},"111":{"tf":5.916079783099616},"115":{"tf":2.449489742783178},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"121":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":4.358898943540674},"126":{"tf":2.8284271247461903},"253":{"tf":1.0},"258":{"tf":1.4142135623730951},"6":{"tf":1.0},"62":{"tf":1.0},"97":{"tf":2.8284271247461903},"99":{"tf":2.449489742783178}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}}},"z":{"df":1,"docs":{"45":{"tf":3.0}}}},"c":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"1":{"df":1,"docs":{"125":{"tf":1.0}}},"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":13,"docs":{"104":{"tf":2.449489742783178},"116":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":2.449489742783178},"233":{"tf":2.0},"245":{"tf":3.3166247903554},"259":{"tf":1.7320508075688772},"261":{"tf":1.0},"273":{"tf":1.0}},"′":{"df":0,"docs":{},"":{"=":{"b":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"116":{"tf":1.0},"245":{"tf":1.0},"263":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"+":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"263":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"263":{"tf":1.0}}},"v":{"a":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"245":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"245":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"259":{"tf":1.0}}}}},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"=":{"b":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"":{"=":{"b":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"=":{"b":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"206":{"tf":1.0},"207":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}},"i":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"b":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":57,"docs":{"100":{"tf":1.0},"106":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"198":{"tf":1.0},"23":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":2.0},"247":{"tf":2.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.0},"266":{"tf":1.7320508075688772},"271":{"tf":2.6457513110645907},"34":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":4.123105625617661},"53":{"tf":3.3166247903554},"56":{"tf":2.449489742783178},"57":{"tf":5.830951894845301},"58":{"tf":5.656854249492381},"59":{"tf":4.0},"60":{"tf":2.449489742783178},"61":{"tf":2.0},"63":{"tf":2.23606797749979},"64":{"tf":1.4142135623730951},"65":{"tf":2.449489742783178},"66":{"tf":1.0},"68":{"tf":2.0},"70":{"tf":1.0},"82":{"tf":4.123105625617661},"83":{"tf":4.47213595499958},"84":{"tf":4.0},"85":{"tf":2.0},"87":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":8,"docs":{"110":{"tf":1.0},"131":{"tf":1.0},"17":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"8":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":20,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"122":{"tf":1.0},"148":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"209":{"tf":1.0},"258":{"tf":1.0},"27":{"tf":1.0},"42":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":19,"docs":{"101":{"tf":1.0},"106":{"tf":2.8284271247461903},"11":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"17":{"tf":1.0},"222":{"tf":1.0},"234":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"33":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"66":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"122":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.0},"45":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"243":{"tf":1.0},"244":{"tf":1.0},"257":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"121":{"tf":1.0},"137":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"7":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"96":{"tf":1.0},"99":{"tf":1.0}}}},"w":{"df":115,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":2.6457513110645907},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.23606797749979},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":2.23606797749979},"208":{"tf":2.449489742783178},"209":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"246":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":2.0},"27":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"274":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"1":{"tf":1.0},"8":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"212":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"45":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":45,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"213":{"tf":2.449489742783178},"222":{"tf":1.0},"223":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":2.0},"257":{"tf":2.6457513110645907},"258":{"tf":2.449489742783178},"259":{"tf":1.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}}}},"h":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"+":{"df":0,"docs":{},"α":{"7":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"4":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"114":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"111":{"tf":1.0},"250":{"tf":1.4142135623730951}},"g":{"df":2,"docs":{"138":{"tf":1.0},"224":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":47,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"111":{"tf":1.0},"114":{"tf":1.4142135623730951},"120":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"259":{"tf":1.0},"262":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"58":{"tf":2.0},"70":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"d":{"df":2,"docs":{"100":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":63,"docs":{"100":{"tf":1.0},"111":{"tf":2.0},"116":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":3.1622776601683795},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":2.449489742783178},"171":{"tf":2.0},"172":{"tf":1.7320508075688772},"173":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":2.0},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":1.7320508075688772},"213":{"tf":2.23606797749979},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0},"224":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.7320508075688772},"246":{"tf":3.0},"247":{"tf":2.8284271247461903},"250":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"255":{"tf":2.23606797749979},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":2.23606797749979},"266":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"58":{"tf":3.1622776601683795},"6":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":2.23606797749979},"80":{"tf":2.23606797749979},"81":{"tf":2.6457513110645907},"82":{"tf":5.477225575051661},"83":{"tf":6.0},"84":{"tf":4.358898943540674},"88":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":20,"docs":{"116":{"tf":1.0},"179":{"tf":2.0},"180":{"tf":2.0},"2":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.4142135623730951},"246":{"tf":3.1622776601683795},"247":{"tf":2.0},"248":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":2.6457513110645907},"273":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"81":{"tf":1.0},"84":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"3":{"df":3,"docs":{"19":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":2.23606797749979}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"+":{"8":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"106":{"tf":5.385164807134504},"111":{"tf":2.449489742783178}}},"o":{"c":{"df":0,"docs":{},"k":{"'":{"df":5,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":2.449489742783178},"115":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":1,"docs":{"118":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"33":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":45,"docs":{"100":{"tf":1.0},"101":{"tf":3.1622776601683795},"102":{"tf":1.0},"103":{"tf":2.23606797749979},"104":{"tf":1.7320508075688772},"105":{"tf":6.164414002968976},"106":{"tf":6.0},"107":{"tf":3.0},"108":{"tf":3.0},"109":{"tf":2.8284271247461903},"110":{"tf":3.605551275463989},"111":{"tf":5.385164807134504},"112":{"tf":5.656854249492381},"113":{"tf":1.7320508075688772},"114":{"tf":2.0},"115":{"tf":3.4641016151377544},"116":{"tf":2.449489742783178},"117":{"tf":5.0990195135927845},"118":{"tf":5.385164807134504},"119":{"tf":2.6457513110645907},"121":{"tf":2.23606797749979},"122":{"tf":2.449489742783178},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"147":{"tf":1.0},"229":{"tf":1.4142135623730951},"233":{"tf":1.0},"237":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"48":{"tf":1.4142135623730951},"90":{"tf":2.23606797749979},"91":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"93":{"tf":2.23606797749979},"94":{"tf":2.449489742783178},"95":{"tf":3.0},"96":{"tf":3.0},"97":{"tf":2.23606797749979},"98":{"tf":5.0},"99":{"tf":3.872983346207417}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":10,"docs":{"105":{"tf":1.0},"106":{"tf":2.23606797749979},"110":{"tf":2.6457513110645907},"118":{"tf":2.0},"39":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":2.0},"94":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":33,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":2.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"124":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"172":{"tf":1.0},"19":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.4142135623730951},"23":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.7320508075688772},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"47":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"107":{"tf":1.0},"113":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"267":{"tf":1.0},"271":{"tf":1.0}}}}},"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":5,"docs":{"232":{"tf":1.7320508075688772},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"106":{"tf":1.0},"109":{"tf":2.0},"118":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":5,"docs":{"169":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.7320508075688772},"273":{"tf":1.0}},"e":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"=":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"z":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"1":{"tf":1.0},"23":{"tf":1.0},"257":{"tf":1.0},"33":{"tf":1.0},"97":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":2.449489742783178},"3":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"244":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"213":{"tf":2.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"265":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}}}},"u":{"df":25,"docs":{"104":{"tf":1.0},"116":{"tf":2.449489742783178},"169":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.449489742783178},"224":{"tf":1.0},"228":{"tf":2.23606797749979},"229":{"tf":2.0},"245":{"tf":1.4142135623730951},"252":{"tf":2.23606797749979},"259":{"tf":1.7320508075688772},"261":{"tf":1.0},"263":{"tf":2.449489742783178},"265":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":2.0},"273":{"tf":1.4142135623730951}},"g":{"df":1,"docs":{"1":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"13":{"tf":2.0},"16":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"270":{"tf":1.4142135623730951},"273":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"35":{"tf":1.4142135623730951},"63":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":2.0},"80":{"tf":2.0}}}}},"}":{"df":0,"docs":{},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"′":{"=":{"1":{"6":{"df":0,"docs":{},"⋅":{"b":{"+":{"df":0,"docs":{},"∑":{"df":0,"docs":{},"i":{"=":{"0":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"=":{"b":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"b":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"←":{"(":{"a":{"+":{"1":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"159":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"¬":{"a":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"−":{"a":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"−":{"a":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"a":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"−":{"1":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"{":{"1":{",":{"0":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"53":{"tf":1.0},"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"−":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"−":{"d":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"≥":{"2":{"3":{"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{",":{"d":{")":{"df":0,"docs":{},"←":{"a":{"+":{"b":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}},"/":{"b":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}},"⋅":{"b":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"54":{"tf":2.0}},"":{",":{"c":{"1":{"df":0,"docs":{},"":{",":{"c":{"2":{"df":2,"docs":{"103":{"tf":1.0},"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"←":{"(":{"a":{"0":{"+":{"b":{"0":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{"0":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"∗":{"b":{"0":{")":{"df":0,"docs":{},"−":{"2":{"df":0,"docs":{},"∗":{"(":{"a":{"1":{"df":0,"docs":{},"∗":{"b":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"54":{"tf":2.0}},"←":{"(":{"a":{"0":{"+":{"a":{"1":{")":{"df":0,"docs":{},"∗":{"(":{"b":{"0":{"+":{"b":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"+":{"b":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"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":{}}},"=":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178}}}}},"1":{"df":4,"docs":{"164":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178}}},"c":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"c":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},">":{"1":{"df":1,"docs":{"61":{"tf":2.0}}},"df":0,"docs":{}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":3,"docs":{"82":{"tf":3.4641016151377544},"83":{"tf":2.0},"84":{"tf":3.0}}}},"k":{"df":1,"docs":{"98":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":3,"docs":{"82":{"tf":3.4641016151377544},"83":{"tf":2.0},"84":{"tf":3.0}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"116":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}}}},"df":0,"docs":{},"l":{".":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":27,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.7320508075688772},"144":{"tf":1.0},"2":{"tf":1.7320508075688772},"211":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.7320508075688772},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"42":{"tf":2.8284271247461903},"43":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":3.1622776601683795},"96":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":2,"docs":{"257":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772}},"r":{"'":{"df":1,"docs":{"42":{"tf":1.0}}},"df":6,"docs":{"139":{"tf":1.0},"257":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.7320508075688772},"64":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"129":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"214":{"tf":1.0},"216":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"c":{"df":11,"docs":{"104":{"tf":1.0},"116":{"tf":1.7320508075688772},"206":{"tf":1.0},"233":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"244":{"tf":1.0},"68":{"tf":1.0},"85":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"212":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"111":{"tf":1.0},"173":{"tf":1.0},"195":{"tf":1.0},"244":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":32,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"177":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.4142135623730951},"233":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"34":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"65":{"tf":2.0},"81":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":2.0}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}},"w":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":37,"docs":{"106":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"164":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"198":{"tf":1.0},"23":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":2.8284271247461903},"53":{"tf":2.6457513110645907},"56":{"tf":1.0},"57":{"tf":4.358898943540674},"58":{"tf":4.242640687119285},"59":{"tf":3.7416573867739413},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.7320508075688772},"77":{"tf":1.0},"82":{"tf":3.605551275463989},"83":{"tf":5.656854249492381},"84":{"tf":2.8284271247461903},"85":{"tf":2.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"113":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":2.23606797749979}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"1":{"df":1,"docs":{"118":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"118":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"118":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"209":{"tf":1.0},"77":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":57,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"111":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"127":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"198":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"223":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772},"257":{"tf":2.6457513110645907},"258":{"tf":2.449489742783178},"259":{"tf":2.8284271247461903},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"264":{"tf":1.0},"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.0},"89":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"17":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{",":{"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"":{",":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"":{",":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":56,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.7320508075688772},"151":{"tf":1.0},"169":{"tf":2.6457513110645907},"17":{"tf":1.0},"170":{"tf":1.7320508075688772},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":2.449489742783178},"211":{"tf":3.0},"212":{"tf":1.7320508075688772},"213":{"tf":2.23606797749979},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":1.4142135623730951},"219":{"tf":2.23606797749979},"233":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.7320508075688772},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"265":{"tf":2.449489742783178},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"42":{"tf":1.0},"55":{"tf":1.7320508075688772},"81":{"tf":2.0},"82":{"tf":3.0},"83":{"tf":3.0},"84":{"tf":1.0},"88":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"d":{"d":{"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"82":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"83":{"tf":1.0}},"z":{"df":1,"docs":{"83":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"83":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"169":{"tf":1.0},"217":{"tf":1.0}}},"df":16,"docs":{"169":{"tf":1.0},"210":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":2.0},"221":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":9,"docs":{"105":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":2.0},"109":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":2.8284271247461903},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":12,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"_":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"221":{"tf":1.0},"226":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.0}}},"df":67,"docs":{"102":{"tf":1.0},"104":{"tf":3.0},"105":{"tf":1.0},"106":{"tf":2.449489742783178},"107":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":4.123105625617661},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":2.0},"205":{"tf":2.0},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"215":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":3.3166247903554},"221":{"tf":4.123105625617661},"222":{"tf":4.0},"223":{"tf":3.7416573867739413},"224":{"tf":2.6457513110645907},"225":{"tf":1.7320508075688772},"226":{"tf":3.1622776601683795},"227":{"tf":2.6457513110645907},"228":{"tf":3.0},"229":{"tf":2.6457513110645907},"230":{"tf":3.1622776601683795},"231":{"tf":2.449489742783178},"232":{"tf":2.8284271247461903},"233":{"tf":3.1622776601683795},"234":{"tf":2.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"237":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"240":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":3.605551275463989},"246":{"tf":2.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":1.7320508075688772},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"252":{"tf":2.6457513110645907},"253":{"tf":2.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"259":{"tf":2.449489742783178},"260":{"tf":2.23606797749979},"261":{"tf":1.7320508075688772},"262":{"tf":2.8284271247461903},"263":{"tf":2.6457513110645907},"264":{"tf":2.23606797749979},"269":{"tf":2.0},"271":{"tf":1.0},"273":{"tf":2.6457513110645907},"88":{"tf":2.449489742783178},"89":{"tf":1.7320508075688772}},"’":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"4":{"tf":1.0},"7":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"270":{"tf":1.7320508075688772},"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"113":{"tf":1.0},"228":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"245":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"+":{"1":{",":{"df":0,"docs":{},"v":{"2":{",":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"df":0,"docs":{},"v":{"1":{",":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"130":{"tf":1.0},"141":{"tf":1.0},"154":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"245":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.0},"64":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"′":{"df":0,"docs":{},"−":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"+":{"1":{")":{"=":{"0":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":15,"docs":{"130":{"tf":1.4142135623730951},"154":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":2.23606797749979},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"df":27,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"33":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.0},"62":{"tf":1.7320508075688772},"69":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":2.23606797749979}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"104":{"tf":1.0},"118":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"68":{"tf":1.0},"99":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":73,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":4.358898943540674},"106":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.6457513110645907},"113":{"tf":1.4142135623730951},"114":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.23606797749979},"120":{"tf":3.0},"121":{"tf":2.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":3.1622776601683795},"128":{"tf":2.8284271247461903},"129":{"tf":3.0},"130":{"tf":2.0},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"169":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"211":{"tf":3.7416573867739413},"212":{"tf":2.23606797749979},"213":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":2.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":3.0},"228":{"tf":2.23606797749979},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":4.123105625617661},"234":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":2.23606797749979},"243":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":3.3166247903554},"246":{"tf":4.0},"247":{"tf":3.1622776601683795},"248":{"tf":1.0},"250":{"tf":2.6457513110645907},"251":{"tf":1.4142135623730951},"254":{"tf":3.1622776601683795},"255":{"tf":2.8284271247461903},"256":{"tf":3.0},"257":{"tf":4.0},"258":{"tf":4.358898943540674},"259":{"tf":2.449489742783178},"261":{"tf":2.8284271247461903},"262":{"tf":2.23606797749979},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"266":{"tf":4.358898943540674},"267":{"tf":1.0},"268":{"tf":2.23606797749979},"271":{"tf":2.449489742783178},"87":{"tf":2.6457513110645907},"89":{"tf":2.8284271247461903}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":27,"docs":{"116":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"208":{"tf":1.7320508075688772},"213":{"tf":1.0},"217":{"tf":1.0},"224":{"tf":1.7320508075688772},"226":{"tf":1.0},"230":{"tf":1.4142135623730951},"234":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"259":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"89":{"tf":1.0}}}}},"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":6,"docs":{"126":{"tf":1.7320508075688772},"222":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0},"272":{"tf":1.4142135623730951},"3":{"tf":1.0}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"256":{"tf":1.0},"257":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":3.0}}}}},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"245":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"77":{"tf":1.7320508075688772},"8":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0},"33":{"tf":1.0},"67":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"69":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":12,"docs":{"116":{"tf":1.7320508075688772},"199":{"tf":1.0},"205":{"tf":1.0},"219":{"tf":1.7320508075688772},"229":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":2.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":4,"docs":{"209":{"tf":1.0},"266":{"tf":1.0},"33":{"tf":1.4142135623730951},"83":{"tf":2.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"17":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"70":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":4.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":18,"docs":{"13":{"tf":2.23606797749979},"15":{"tf":1.0},"16":{"tf":2.0},"2":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":2.0},"38":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"48":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.0},"55":{"tf":1.0}}}}}},"t":{"df":16,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"3":{"tf":1.0}}},"x":{"df":7,"docs":{"102":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"270":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"88":{"tf":1.0}}}},"i":{"df":1,"docs":{"113":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"10":{"tf":1.4142135623730951},"102":{"tf":1.0},"194":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"245":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":2.23606797749979},"271":{"tf":2.23606797749979},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772},"65":{"tf":1.0},"88":{"tf":2.6457513110645907},"89":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":3,"docs":{"224":{"tf":1.0},"245":{"tf":1.0},"6":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"111":{"tf":1.0},"127":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":94,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":2.8284271247461903},"105":{"tf":2.449489742783178},"106":{"tf":2.0},"107":{"tf":2.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"115":{"tf":2.449489742783178},"116":{"tf":2.23606797749979},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.7320508075688772},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":2.8284271247461903},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":2.449489742783178},"209":{"tf":2.449489742783178},"211":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":2.449489742783178},"224":{"tf":1.0},"228":{"tf":1.4142135623730951},"232":{"tf":3.872983346207417},"233":{"tf":2.6457513110645907},"234":{"tf":2.449489742783178},"235":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"243":{"tf":3.0},"244":{"tf":1.7320508075688772},"245":{"tf":4.242640687119285},"246":{"tf":2.23606797749979},"247":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"268":{"tf":1.7320508075688772},"271":{"tf":1.4142135623730951},"272":{"tf":2.449489742783178},"274":{"tf":1.7320508075688772},"47":{"tf":1.0},"58":{"tf":3.1622776601683795},"65":{"tf":1.0},"68":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"88":{"tf":2.0},"99":{"tf":2.8284271247461903}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"247":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":6,"docs":{"232":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":18,"docs":{"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"2":{"tf":1.0},"211":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"245":{"tf":2.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"271":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"49":{"tf":1.7320508075688772},"60":{"tf":2.0},"61":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"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":{"23":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"223":{"tf":2.23606797749979},"262":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"102":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.4142135623730951},"265":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"213":{"tf":1.4142135623730951},"218":{"tf":1.0},"241":{"tf":1.0},"258":{"tf":2.6457513110645907},"77":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"d":{"df":5,"docs":{"101":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"209":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"105":{"tf":2.0},"11":{"tf":1.0},"111":{"tf":1.4142135623730951},"126":{"tf":1.0},"138":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"261":{"tf":1.0},"265":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"32":{"tf":1.0},"38":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.4142135623730951},"81":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}},"t":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"1":{"=":{"3":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"1":{"=":{"1":{"0":{"0":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"=":{"2":{"0":{"0":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"39":{"tf":1.0}}},"df":3,"docs":{"111":{"tf":1.0},"39":{"tf":2.6457513110645907},"63":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"218":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951}},"t":{"_":{"_":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":133,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":3.605551275463989},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":3.0},"117":{"tf":3.3166247903554},"118":{"tf":3.3166247903554},"119":{"tf":2.23606797749979},"120":{"tf":2.8284271247461903},"121":{"tf":2.6457513110645907},"122":{"tf":2.6457513110645907},"123":{"tf":2.6457513110645907},"124":{"tf":2.23606797749979},"125":{"tf":2.0},"126":{"tf":3.3166247903554},"127":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"134":{"tf":2.0},"135":{"tf":2.8284271247461903},"136":{"tf":2.0},"137":{"tf":4.123105625617661},"138":{"tf":2.6457513110645907},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":2.449489742783178},"143":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":2.23606797749979},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"178":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"212":{"tf":2.449489742783178},"213":{"tf":2.0},"214":{"tf":1.0},"218":{"tf":2.23606797749979},"219":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":3.3166247903554},"225":{"tf":1.4142135623730951},"226":{"tf":3.1622776601683795},"227":{"tf":2.449489742783178},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"231":{"tf":2.449489742783178},"241":{"tf":2.0},"242":{"tf":2.6457513110645907},"243":{"tf":3.1622776601683795},"244":{"tf":2.23606797749979},"245":{"tf":4.58257569495584},"246":{"tf":1.4142135623730951},"248":{"tf":1.7320508075688772},"249":{"tf":1.0},"250":{"tf":2.0},"251":{"tf":1.7320508075688772},"252":{"tf":2.23606797749979},"253":{"tf":1.0},"254":{"tf":2.449489742783178},"255":{"tf":2.0},"256":{"tf":2.6457513110645907},"257":{"tf":2.6457513110645907},"258":{"tf":1.7320508075688772},"259":{"tf":3.605551275463989},"262":{"tf":3.0},"263":{"tf":2.0},"264":{"tf":2.6457513110645907},"267":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":2.6457513110645907},"4":{"tf":1.0},"87":{"tf":3.4641016151377544},"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"35":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":8,"docs":{"122":{"tf":1.0},"126":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"233":{"tf":1.0},"65":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":80,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.0},"105":{"tf":3.7416573867739413},"111":{"tf":2.23606797749979},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"130":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"217":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":1.4142135623730951},"246":{"tf":2.8284271247461903},"247":{"tf":2.23606797749979},"250":{"tf":1.7320508075688772},"255":{"tf":2.0},"256":{"tf":2.0},"257":{"tf":2.23606797749979},"258":{"tf":3.605551275463989},"259":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":3.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.0},"97":{"tf":2.8284271247461903},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"116":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"258":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"259":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":23,"docs":{"2":{"tf":2.6457513110645907},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":1.0},"257":{"tf":3.4641016151377544},"258":{"tf":3.605551275463989},"259":{"tf":2.6457513110645907},"260":{"tf":1.4142135623730951},"3":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":4.0},"42":{"tf":2.449489742783178},"43":{"tf":2.23606797749979},"44":{"tf":3.1622776601683795},"45":{"tf":3.872983346207417},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"88":{"tf":1.0},"95":{"tf":2.0},"96":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":5,"docs":{"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.7320508075688772},"258":{"tf":1.7320508075688772},"77":{"tf":1.0}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":27,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":1.7320508075688772},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":2.449489742783178},"120":{"tf":1.0},"121":{"tf":1.0},"14":{"tf":1.7320508075688772},"143":{"tf":2.0},"144":{"tf":2.449489742783178},"148":{"tf":2.23606797749979},"2":{"tf":2.0},"223":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"46":{"tf":2.449489742783178},"47":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":2.0},"7":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"103":{"tf":1.0},"262":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0}}},"t":{"df":2,"docs":{"137":{"tf":1.0},"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"113":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"i":{"df":21,"docs":{"10":{"tf":1.0},"106":{"tf":2.0},"111":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"137":{"tf":1.4142135623730951},"150":{"tf":1.0},"184":{"tf":2.0},"212":{"tf":1.4142135623730951},"234":{"tf":1.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.4142135623730951},"74":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":2.23606797749979},"69":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":22,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"137":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"220":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":19,"docs":{"0":{"tf":1.0},"107":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"166":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"227":{"tf":1.4142135623730951},"230":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"274":{"tf":1.0},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.7320508075688772},"126":{"tf":1.0},"138":{"tf":1.0},"208":{"tf":1.4142135623730951},"228":{"tf":1.0},"246":{"tf":1.4142135623730951},"247":{"tf":1.0},"259":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"266":{"tf":1.0},"48":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":2.0},"122":{"tf":3.3166247903554},"123":{"tf":2.23606797749979},"124":{"tf":1.4142135623730951},"126":{"tf":2.0},"23":{"tf":2.449489742783178},"48":{"tf":2.0},"58":{"tf":1.4142135623730951},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.0},"150":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"64":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"211":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}},"u":{"df":2,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"142":{"tf":1.0},"262":{"tf":1.0},"274":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"257":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":4,"docs":{"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"274":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":12,"docs":{"2":{"tf":1.0},"205":{"tf":2.449489742783178},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"229":{"tf":1.0},"274":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"140":{"tf":1.0},"192":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":1.0}},"w":{"df":3,"docs":{"140":{"tf":1.0},"193":{"tf":2.0},"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{"0":{"df":1,"docs":{"45":{"tf":2.0}}},"1":{"df":1,"docs":{"45":{"tf":2.23606797749979}}},"2":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}},"df":8,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"257":{"tf":2.23606797749979},"258":{"tf":1.7320508075688772},"259":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":67,"docs":{"1":{"tf":1.0},"103":{"tf":2.0},"105":{"tf":2.23606797749979},"106":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"241":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"259":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"42":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"72":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"255":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":57,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"130":{"tf":1.7320508075688772},"150":{"tf":1.0},"154":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"222":{"tf":2.0},"228":{"tf":1.0},"23":{"tf":2.449489742783178},"231":{"tf":1.0},"232":{"tf":3.4641016151377544},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":2.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":2.0},"259":{"tf":1.0},"265":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":4.242640687119285},"53":{"tf":3.1622776601683795},"54":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951},"56":{"tf":2.6457513110645907},"57":{"tf":5.830951894845301},"58":{"tf":4.58257569495584},"59":{"tf":4.0},"60":{"tf":3.4641016151377544},"61":{"tf":2.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":2.23606797749979},"66":{"tf":3.605551275463989},"68":{"tf":2.8284271247461903},"83":{"tf":1.0},"84":{"tf":2.449489742783178},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{")":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"i":{"c":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"−":{"c":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"257":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"257":{"tf":1.0},"258":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"←":{"(":{"a":{"+":{"b":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"∧":{"b":{"df":2,"docs":{"162":{"tf":1.0},"179":{"tf":1.0}}},"df":0,"docs":{}},"∨":{"b":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"⊕":{"b":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"⋅":{"2":{"b":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"158":{"tf":1.0}},"−":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"+":{"b":{"df":1,"docs":{"57":{"tf":1.0}},"−":{"2":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"⋅":{"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"⋅":{"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"∗":{"b":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"⋅":{"b":{"df":2,"docs":{"52":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{",":{"b":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"{":{"1":{",":{"0":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"53":{"tf":2.6457513110645907},"59":{"tf":3.1622776601683795}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{",":{"b":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"59":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"⌊":{"a":{"/":{"2":{"3":{"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"57":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{",":{"c":{",":{"b":{",":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"e":{")":{"df":0,"docs":{},"←":{"a":{"+":{"b":{"+":{"c":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"c":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"}":{"df":0,"docs":{},"←":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{",":{"b":{",":{"c":{"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":{},"←":{"[":{"a":{"d":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"0":{"df":6,"docs":{"219":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":2.0},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0}}},"1":{"df":6,"docs":{"219":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":2.0},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0}}},"=":{"b":{"=":{"0":{"df":0,"docs":{},"∑":{"6":{"df":0,"docs":{},"":{"(":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"2":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"a":{",":{"b":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"192":{"tf":1.0},"193":{"tf":1.0},"61":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"n":{"df":1,"docs":{"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"77":{"tf":2.0}}}}}}},"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.7320508075688772},"270":{"tf":1.4142135623730951},"272":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"65":{"tf":3.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"8":{"tf":1.0},"88":{"tf":1.0}},"←":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"]":{".":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":21,"docs":{"116":{"tf":1.7320508075688772},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"198":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"57":{"tf":3.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":2.449489742783178},"66":{"tf":1.0},"68":{"tf":2.6457513110645907},"84":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"258":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":4,"docs":{"16":{"tf":1.0},"23":{"tf":2.449489742783178},"24":{"tf":1.0},"3":{"tf":1.4142135623730951}},"g":{"df":3,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":2.6457513110645907}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"d":{"df":38,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":1.7320508075688772},"102":{"tf":2.449489742783178},"103":{"tf":2.23606797749979},"104":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":2.23606797749979},"108":{"tf":2.0},"109":{"tf":2.449489742783178},"110":{"tf":2.0},"111":{"tf":4.358898943540674},"112":{"tf":2.0},"113":{"tf":3.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":2.8284271247461903},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":2.449489742783178},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"138":{"tf":1.0},"147":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"269":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"2":{"df":1,"docs":{"112":{"tf":1.0}}},"4":{"df":1,"docs":{"112":{"tf":1.0}}},"6":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"246":{"tf":1.0},"250":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.4142135623730951}}}}}}}},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"111":{"tf":1.0},"122":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"106":{"tf":1.0},"111":{"tf":2.0},"122":{"tf":2.8284271247461903},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"131":{"tf":1.0},"134":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"44":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":4,"docs":{"127":{"tf":1.0},"6":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"81":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"206":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":57,"docs":{"101":{"tf":1.0},"105":{"tf":1.7320508075688772},"111":{"tf":1.0},"116":{"tf":2.0},"118":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":2.449489742783178},"130":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.4142135623730951},"238":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":2.449489742783178},"252":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"260":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":3.0},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"54":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"19":{"tf":1.0}}}}}}},"g":{"(":{"c":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":28,"docs":{"103":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":3.4641016151377544},"139":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":3.0},"143":{"tf":3.0},"144":{"tf":2.23606797749979},"183":{"tf":1.0},"209":{"tf":2.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"222":{"tf":2.6457513110645907},"223":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"234":{"tf":1.0},"245":{"tf":1.4142135623730951},"257":{"tf":1.0},"274":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":2.8284271247461903}},"e":{"=":{"1":{"+":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"+":{"4":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":33,"docs":{"118":{"tf":1.4142135623730951},"126":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}},"2":{"+":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"(":{"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":32,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"133":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":2.0},"167":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"199":{"tf":1.0},"218":{"tf":1.4142135623730951},"231":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":2.449489742783178},"251":{"tf":1.4142135623730951},"259":{"tf":2.0},"262":{"tf":1.7320508075688772}},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"1":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"1":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"2":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"+":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"170":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"242":{"tf":1.0},"251":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0}},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"2":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"4":{"+":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"125":{"tf":1.7320508075688772},"142":{"tf":1.0},"147":{"tf":1.0},"231":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0}},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"3":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"5":{"df":17,"docs":{"114":{"tf":2.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"147":{"tf":1.4142135623730951},"169":{"tf":1.0},"208":{"tf":1.0},"227":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"259":{"tf":1.7320508075688772}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"6":{"df":12,"docs":{"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":2.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"259":{"tf":1.4142135623730951}}},"7":{"(":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":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":{"114":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.7320508075688772},"122":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0}}},"8":{"df":3,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0}}},"9":{"df":4,"docs":{"114":{"tf":1.0},"124":{"tf":1.0},"135":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"129":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951}}}},"t":{"a":{"df":5,"docs":{"238":{"tf":1.0},"245":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":2.0},"258":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":22,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"135":{"tf":1.4142135623730951},"138":{"tf":1.0},"170":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"250":{"tf":1.0},"252":{"tf":1.0},"263":{"tf":1.0},"36":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"112":{"tf":1.0},"126":{"tf":1.0},"169":{"tf":1.0},"244":{"tf":1.0},"266":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":30,"docs":{"127":{"tf":2.6457513110645907},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":2.449489742783178},"133":{"tf":1.0},"134":{"tf":2.449489742783178},"150":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":2.23606797749979},"191":{"tf":2.23606797749979},"196":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"239":{"tf":1.0},"4":{"tf":1.4142135623730951},"42":{"tf":2.6457513110645907},"45":{"tf":2.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":2.449489742783178},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":86,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.23606797749979},"105":{"tf":1.7320508075688772},"106":{"tf":2.6457513110645907},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":2.6457513110645907},"113":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"181":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.7320508075688772},"245":{"tf":2.449489742783178},"246":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":40,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"137":{"tf":1.0},"147":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"32":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":191,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.7320508075688772},"254":{"tf":2.449489742783178},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"81":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"df":3,"docs":{"17":{"tf":1.0},"257":{"tf":1.0},"8":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"2":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"106":{"tf":1.0},"137":{"tf":1.4142135623730951},"16":{"tf":1.0},"209":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"104":{"tf":1.0},"222":{"tf":1.0},"239":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"107":{"tf":1.4142135623730951},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"128":{"tf":1.0},"130":{"tf":1.0},"170":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"239":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":16,"docs":{"2":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"255":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":59,"docs":{"106":{"tf":3.872983346207417},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.0},"113":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":23,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":2.23606797749979},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"118":{"tf":1.4142135623730951},"24":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"255":{"tf":1.0},"256":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"36":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"18":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"243":{"tf":1.0},"82":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"137":{"tf":1.4142135623730951},"209":{"tf":1.0},"226":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"23":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":1,"docs":{"52":{"tf":1.4142135623730951}},"i":{"d":{"df":20,"docs":{"104":{"tf":2.449489742783178},"111":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"245":{"tf":1.0},"259":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"65":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"n":{"df":1,"docs":{"98":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":59,"docs":{"220":{"tf":1.0},"226":{"tf":1.0},"32":{"tf":2.23606797749979},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.23606797749979},"40":{"tf":2.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"212":{"tf":1.0},"239":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"264":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"116":{"tf":1.0},"209":{"tf":3.3166247903554},"233":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":6,"docs":{"105":{"tf":1.0},"19":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":23,"docs":{"105":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"116":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"135":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":2.0},"255":{"tf":1.4142135623730951},"259":{"tf":2.0},"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":6,"docs":{"115":{"tf":1.4142135623730951},"127":{"tf":1.0},"138":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":13,"docs":{"113":{"tf":2.449489742783178},"128":{"tf":1.0},"131":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"183":{"tf":2.23606797749979},"31":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.7320508075688772},"8":{"tf":1.0},"83":{"tf":2.0},"9":{"tf":1.0}},"w":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"126":{"tf":1.0},"68":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"18":{"tf":1.0}}}},"p":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"184":{"tf":1.7320508075688772}}}},".":{"0":{"df":1,"docs":{"60":{"tf":1.0}}},"2":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"184":{"tf":1.0}}},"1":{"1":{"df":1,"docs":{"141":{"tf":1.0}}},"3":{"df":1,"docs":{"141":{"tf":1.0}}},"5":{"df":1,"docs":{"141":{"tf":1.0}}},"df":2,"docs":{"137":{"tf":1.0},"141":{"tf":1.0}}},"2":{"df":1,"docs":{"141":{"tf":1.0}}},"3":{"df":1,"docs":{"141":{"tf":1.0}}},"4":{"df":1,"docs":{"141":{"tf":1.0}}},"5":{"df":2,"docs":{"141":{"tf":1.0},"184":{"tf":1.0}}},"6":{"df":1,"docs":{"141":{"tf":1.0}}},"7":{"df":1,"docs":{"141":{"tf":1.0}}},"9":{"df":1,"docs":{"141":{"tf":1.0}}},"df":6,"docs":{"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"184":{"tf":1.0},"23":{"tf":1.0},"60":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"216":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"184":{"tf":1.0}}},"w":{".":{"0":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"60":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":22,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":2.6457513110645907},"239":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}},"←":{"(":{"a":{"+":{"b":{"+":{"c":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"b":{"+":{"c":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{"1":{",":{"0":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"⌊":{"(":{"a":{"df":0,"docs":{},"⋅":{"b":{")":{"/":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{",":{"d":{"]":{"df":0,"docs":{},"←":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"]":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"+":{"1":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"g":{"df":29,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"111":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"2":{"tf":1.0},"210":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.4142135623730951},"8":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"0":{"df":3,"docs":{"138":{"tf":1.7320508075688772},"143":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772}},"":{"df":0,"docs":{},"−":{"b":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"5":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"4":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"1":{"df":3,"docs":{"138":{"tf":1.7320508075688772},"144":{"tf":1.0},"77":{"tf":1.7320508075688772}},"":{"df":0,"docs":{},"−":{"b":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"5":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"{":{"b":{",":{"a":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"192":{"tf":1.0},"193":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":63,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"127":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.7320508075688772},"2":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.7320508075688772},"221":{"tf":1.7320508075688772},"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"226":{"tf":2.23606797749979},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.7320508075688772},"247":{"tf":1.4142135623730951},"251":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"258":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"137":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.4142135623730951},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"33":{"tf":1.0},"7":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":8,"docs":{"239":{"tf":1.0},"240":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":54,"docs":{"106":{"tf":1.0},"113":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"148":{"tf":1.0},"210":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"47":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":1,"docs":{"184":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":96,"docs":{"10":{"tf":2.0},"100":{"tf":1.7320508075688772},"104":{"tf":3.872983346207417},"109":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951},"111":{"tf":2.449489742783178},"113":{"tf":2.449489742783178},"116":{"tf":1.4142135623730951},"127":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":2.23606797749979},"169":{"tf":1.0},"17":{"tf":2.449489742783178},"170":{"tf":2.6457513110645907},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"190":{"tf":2.449489742783178},"191":{"tf":2.449489742783178},"192":{"tf":2.0},"193":{"tf":2.23606797749979},"197":{"tf":1.4142135623730951},"198":{"tf":2.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"202":{"tf":1.7320508075688772},"203":{"tf":2.0},"204":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":2.0},"208":{"tf":2.23606797749979},"209":{"tf":3.4641016151377544},"210":{"tf":1.0},"232":{"tf":2.0},"233":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":3.605551275463989},"239":{"tf":2.449489742783178},"240":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":2.0},"246":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"34":{"tf":2.8284271247461903},"42":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":1.0},"6":{"tf":2.6457513110645907},"60":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":2.449489742783178},"66":{"tf":3.872983346207417},"68":{"tf":1.4142135623730951},"70":{"tf":3.1622776601683795},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"79":{"tf":3.1622776601683795},"8":{"tf":1.4142135623730951},"80":{"tf":3.1622776601683795},"81":{"tf":1.7320508075688772},"86":{"tf":2.449489742783178},"87":{"tf":2.449489742783178},"97":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}}}}},"i":{"df":1,"docs":{"274":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":17,"docs":{"105":{"tf":2.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0},"267":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.4142135623730951},"75":{"tf":2.0},"77":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"3":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":18,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"123":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"170":{"tf":1.4142135623730951},"234":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}}},"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}},"df":57,"docs":{"100":{"tf":1.0},"101":{"tf":4.242640687119285},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":2.23606797749979},"108":{"tf":1.4142135623730951},"110":{"tf":2.449489742783178},"111":{"tf":2.6457513110645907},"112":{"tf":3.605551275463989},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":2.23606797749979},"120":{"tf":2.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"131":{"tf":1.0},"144":{"tf":1.0},"18":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"233":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"271":{"tf":1.0},"37":{"tf":2.23606797749979},"38":{"tf":2.449489742783178},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":2.23606797749979},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"68":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.4142135623730951},"9":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"138":{"tf":1.0},"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":44,"docs":{"113":{"tf":2.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"129":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"223":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":2.23606797749979},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"250":{"tf":2.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"255":{"tf":1.4142135623730951},"259":{"tf":2.0},"260":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"1":{"tf":1.0},"130":{"tf":1.0},"266":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":43,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"150":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.7320508075688772},"234":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.4142135623730951},"248":{"tf":1.0},"251":{"tf":2.23606797749979},"252":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"23":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.0},"118":{"tf":1.0},"150":{"tf":1.0},"227":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"25":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"112":{"tf":2.8284271247461903},"117":{"tf":2.0},"118":{"tf":1.7320508075688772},"17":{"tf":1.0},"233":{"tf":2.0},"245":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}}}}}}},"q":{".":{"2":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"140":{"tf":1.0},"164":{"tf":2.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":25,"docs":{"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"151":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":2.0},"267":{"tf":1.0},"34":{"tf":1.0},"55":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":2.449489742783178},"87":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":3,"docs":{"170":{"tf":1.0},"243":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":1,"docs":{"53":{"tf":1.0}}},"z":{"df":2,"docs":{"139":{"tf":1.0},"165":{"tf":2.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"110":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"40":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":2.449489742783178},"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"t":{"c":{"df":19,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"212":{"tf":1.0},"232":{"tf":1.4142135623730951},"239":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":1,"docs":{"274":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":6,"docs":{"118":{"tf":1.0},"133":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"19":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":10,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":1.0},"213":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":14,"docs":{"101":{"tf":1.4142135623730951},"121":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"169":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"250":{"tf":1.0},"267":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"86":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":50,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":2.6457513110645907},"190":{"tf":1.0},"191":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"247":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"254":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"272":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":2.23606797749979},"40":{"tf":1.0},"45":{"tf":1.7320508075688772},"49":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"df":11,"docs":{"111":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"230":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"105":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"234":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"42":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":5,"docs":{"113":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"234":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{".":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"37":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":3,"docs":{"23":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951}}}}},"u":{"6":{"4":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"38":{"tf":1.0},"42":{"tf":2.449489742783178},"44":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":121,"docs":{"0":{"tf":2.0},"10":{"tf":1.4142135623730951},"100":{"tf":3.0},"101":{"tf":3.3166247903554},"102":{"tf":1.4142135623730951},"103":{"tf":2.449489742783178},"105":{"tf":3.3166247903554},"106":{"tf":5.385164807134504},"107":{"tf":1.4142135623730951},"108":{"tf":2.6457513110645907},"109":{"tf":2.23606797749979},"11":{"tf":2.0},"110":{"tf":3.872983346207417},"111":{"tf":4.47213595499958},"112":{"tf":3.605551275463989},"113":{"tf":3.0},"114":{"tf":3.1622776601683795},"115":{"tf":2.0},"116":{"tf":2.6457513110645907},"117":{"tf":3.0},"118":{"tf":3.4641016151377544},"120":{"tf":2.6457513110645907},"121":{"tf":1.4142135623730951},"122":{"tf":2.8284271247461903},"123":{"tf":2.8284271247461903},"124":{"tf":2.0},"125":{"tf":1.4142135623730951},"126":{"tf":2.449489742783178},"127":{"tf":1.7320508075688772},"129":{"tf":1.0},"13":{"tf":2.0},"132":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"148":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":3.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"20":{"tf":2.23606797749979},"209":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"211":{"tf":1.4142135623730951},"217":{"tf":2.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":2.0},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":2.0},"232":{"tf":4.242640687119285},"233":{"tf":2.0},"234":{"tf":1.0},"236":{"tf":2.0},"237":{"tf":2.0},"238":{"tf":2.23606797749979},"239":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"240":{"tf":2.6457513110645907},"241":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"260":{"tf":2.0},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":2.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"38":{"tf":2.23606797749979},"41":{"tf":3.605551275463989},"42":{"tf":2.6457513110645907},"43":{"tf":1.4142135623730951},"44":{"tf":2.449489742783178},"45":{"tf":4.898979485566356},"46":{"tf":1.0},"47":{"tf":2.449489742783178},"48":{"tf":1.0},"49":{"tf":2.6457513110645907},"50":{"tf":1.0},"55":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"8":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.23606797749979},"89":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":2.23606797749979},"92":{"tf":1.7320508075688772},"93":{"tf":2.0},"94":{"tf":2.6457513110645907},"95":{"tf":2.6457513110645907},"96":{"tf":2.6457513110645907},"97":{"tf":1.4142135623730951},"98":{"tf":4.358898943540674},"99":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"|":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{":":{":":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}},"t":{"df":12,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"147":{"tf":1.0},"24":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.0}}}},"p":{".":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"c":{"df":2,"docs":{"139":{"tf":1.0},"166":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"33":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"166":{"tf":1.7320508075688772},"28":{"tf":1.0},"52":{"tf":1.7320508075688772}},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"1":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"19":{"tf":2.0},"2":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"221":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"38":{"tf":1.0},"50":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":2.8284271247461903},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"265":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"105":{"tf":1.0},"195":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}},"z":{".":{"2":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"38":{"tf":1.0},"40":{"tf":1.0}}}}},"u":{"6":{"4":{":":{":":{"a":{"d":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"38":{"tf":2.6457513110645907},"43":{"tf":1.0}}}},"s":{"df":7,"docs":{"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"132":{"tf":1.0},"137":{"tf":1.0},"199":{"tf":1.0},"35":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"118":{"tf":1.0},"134":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"33":{"tf":1.0},"46":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951}}}}}}},"t":{"2":{"a":{"d":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"139":{"tf":1.0},"167":{"tf":2.0},"54":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"2":{"tf":1.0},"213":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":6,"docs":{"167":{"tf":1.0},"209":{"tf":1.7320508075688772},"253":{"tf":1.0},"54":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":2.449489742783178}}}},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"1":{"tf":1.0},"2":{"tf":1.4142135623730951},"33":{"tf":1.0},"38":{"tf":1.0},"8":{"tf":1.0}}}}},"r":{"a":{"df":6,"docs":{"138":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"←":{"df":0,"docs":{},"⌊":{"(":{"a":{"+":{"b":{"+":{"c":{")":{"/":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"b":{"+":{"c":{")":{"/":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"0":{"df":1,"docs":{"106":{"tf":1.4142135623730951}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"106":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}},"a":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.4142135623730951}},"":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"=":{"1":{"df":2,"docs":{"244":{"tf":1.0},"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"244":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":13,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"233":{"tf":1.0},"35":{"tf":1.0},"46":{"tf":1.0}}}}}},"t":{"df":8,"docs":{"100":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"271":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"209":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}},"d":{"d":{"3":{"_":{"df":0,"docs":{},"m":{"a":{"d":{"d":{"df":0,"docs":{},"":{"=":{"b":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"5":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"4":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"2":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":33,"docs":{"106":{"tf":2.0},"110":{"tf":1.0},"151":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":2.8284271247461903},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":3.0},"58":{"tf":3.0},"59":{"tf":2.8284271247461903},"61":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":2.0},"68":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"82":{"tf":3.0},"83":{"tf":3.0},"84":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"s":{"df":5,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"118":{"tf":1.0},"49":{"tf":1.0},"99":{"tf":1.0}},"e":{"_":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"⋅":{"(":{"b":{"2":{"df":0,"docs":{},"−":{"b":{")":{"=":{"0":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"7":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"13":{"tf":1.0},"55":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}}},"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"=":{"1":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"113":{"tf":1.0},"148":{"tf":1.0}},"i":{"df":1,"docs":{"116":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"137":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"68":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.7320508075688772},"13":{"tf":1.7320508075688772},"2":{"tf":2.0},"23":{"tf":1.0},"257":{"tf":1.0},"3":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"n":{"d":{",":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"4":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"113":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"g":{"c":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"=":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":8,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"234":{"tf":1.0},"274":{"tf":1.0},"33":{"tf":1.0},"62":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"216":{"tf":1.0},"221":{"tf":1.0},"65":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}}},"g":{"1":{"df":1,"docs":{"126":{"tf":1.4142135623730951}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"2":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"4":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"=":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"c":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"2":{"df":1,"docs":{"126":{"tf":1.4142135623730951}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"c":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"df":1,"docs":{"126":{"tf":1.4142135623730951}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"c":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"c":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}},"":{"=":{"b":{"c":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}},"":{"=":{"1":{"df":3,"docs":{"234":{"tf":1.4142135623730951},"242":{"tf":1.0},"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"b":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"18":{"tf":2.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":55,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"111":{"tf":2.0},"127":{"tf":1.0},"139":{"tf":2.6457513110645907},"140":{"tf":2.23606797749979},"155":{"tf":2.23606797749979},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.7320508075688772},"170":{"tf":2.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.7320508075688772},"209":{"tf":2.0},"210":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"246":{"tf":1.7320508075688772},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"258":{"tf":1.7320508075688772},"266":{"tf":1.7320508075688772},"34":{"tf":2.0},"44":{"tf":1.0},"50":{"tf":2.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"6":{"tf":2.23606797749979},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":2.23606797749979},"72":{"tf":1.0},"77":{"tf":2.0},"87":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"18":{"tf":2.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0}}},"l":{"df":2,"docs":{"116":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":17,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"211":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.7320508075688772},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"272":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0}}}},"d":{"df":2,"docs":{"213":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":11,"docs":{"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"129":{"tf":1.0},"17":{"tf":1.0},"231":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"267":{"tf":1.0},"49":{"tf":1.0},"8":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":71,"docs":{"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":2.8284271247461903},"106":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"111":{"tf":3.605551275463989},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.23606797749979},"120":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"147":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"246":{"tf":1.7320508075688772},"247":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":2.6457513110645907},"65":{"tf":1.7320508075688772},"66":{"tf":3.1622776601683795},"70":{"tf":1.0},"77":{"tf":3.0},"79":{"tf":2.0},"80":{"tf":2.0},"87":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979}}}}},"t":{"df":5,"docs":{"111":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"2":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"212":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":45,"docs":{"103":{"tf":2.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":2.23606797749979},"113":{"tf":3.1622776601683795},"114":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"123":{"tf":2.0},"125":{"tf":3.0},"126":{"tf":2.0},"132":{"tf":2.6457513110645907},"133":{"tf":2.449489742783178},"135":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":4.242640687119285},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":3.0},"143":{"tf":2.0},"144":{"tf":1.7320508075688772},"145":{"tf":2.0},"146":{"tf":2.23606797749979},"147":{"tf":3.1622776601683795},"148":{"tf":2.0},"15":{"tf":1.0},"169":{"tf":1.0},"18":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"224":{"tf":2.23606797749979},"226":{"tf":1.7320508075688772},"234":{"tf":5.196152422706632},"242":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"251":{"tf":1.0},"262":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"234":{"tf":1.0}}},"w":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"113":{"tf":1.0}},"":{"=":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":22,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":1.7320508075688772},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":2.449489742783178},"148":{"tf":2.23606797749979},"2":{"tf":1.7320508075688772},"25":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"46":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"7":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"a":{"d":{"d":{"df":2,"docs":{"139":{"tf":1.0},"152":{"tf":2.0}}},"df":0,"docs":{}},"df":1,"docs":{"234":{"tf":1.4142135623730951}}},"df":5,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"234":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"153":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"":{"=":{"1":{"df":2,"docs":{"244":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"a":{"df":1,"docs":{"234":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"234":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"=":{"1":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":1,"docs":{"234":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"234":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"=":{"1":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"32":{"tf":1.0},"4":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"209":{"tf":3.7416573867739413},"72":{"tf":1.0},"77":{"tf":2.6457513110645907}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":166,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.23606797749979},"105":{"tf":2.23606797749979},"106":{"tf":3.0},"108":{"tf":1.0},"111":{"tf":3.0},"112":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":2.449489742783178},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":2.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"135":{"tf":2.449489742783178},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":2.0},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"233":{"tf":2.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":2.0},"243":{"tf":2.6457513110645907},"244":{"tf":1.7320508075688772},"245":{"tf":3.1622776601683795},"246":{"tf":2.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"252":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"255":{"tf":2.0},"256":{"tf":2.0},"257":{"tf":2.0},"259":{"tf":2.6457513110645907},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"87":{"tf":2.0},"89":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"s":{":":{"[":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"'":{"df":1,"docs":{"45":{"tf":1.0}}},"df":3,"docs":{"23":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":2.8284271247461903}}},"p":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"113":{"tf":1.0},"137":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"df":5,"docs":{"122":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}},"t":{"df":2,"docs":{"63":{"tf":1.0},"87":{"tf":1.0}}}},"df":8,"docs":{"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"65":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"234":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"1":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"260":{"tf":1.0},"265":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":15,"docs":{"170":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"258":{"tf":1.0},"262":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":2.0},"70":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"138":{"tf":1.0},"167":{"tf":1.0},"35":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"":{"=":{"1":{"df":3,"docs":{"234":{"tf":1.4142135623730951},"242":{"tf":1.0},"244":{"tf":1.0}}},"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"i":{"=":{"0":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"′":{"df":0,"docs":{},"":{"=":{"1":{"df":2,"docs":{"234":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{},"k":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":1,"docs":{"133":{"tf":1.0}},"":{"=":{"(":{"b":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"1":{"6":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"135":{"tf":1.0}}},"1":{"df":3,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"113":{"tf":1.0},"123":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":2,"docs":{"113":{"tf":1.0},"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"166":{"tf":2.6457513110645907},"167":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"88":{"tf":1.0},"89":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"h":{"4":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"258":{"tf":1.0},"265":{"tf":1.0},"37":{"tf":1.0},"55":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"123":{"tf":1.4142135623730951}},"":{"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"−":{"8":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":5,"docs":{"209":{"tf":1.7320508075688772},"274":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":2.23606797749979}},"e":{"2":{"df":0,"docs":{},"f":{"4":{"df":2,"docs":{"140":{"tf":1.0},"209":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"g":{"c":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}},"":{"=":{"0":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}},"1":{"df":3,"docs":{"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"132":{"tf":1.0}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"6":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"4":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"3":{"2":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"146":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"132":{"tf":1.0},"135":{"tf":1.7320508075688772}}},"1":{"df":2,"docs":{"134":{"tf":1.0},"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"b":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}},"":{"=":{"1":{"df":3,"docs":{"234":{"tf":1.4142135623730951},"242":{"tf":1.0},"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"3":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"2":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"113":{"tf":1.0},"123":{"tf":1.4142135623730951}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"2":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"4":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"8":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{")":{"=":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"′":{"=":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"2":{"7":{"df":0,"docs":{},"−":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{")":{"=":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"3":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"113":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"=":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"3":{"2":{"a":{"d":{"d":{"3":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"d":{"d":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"":{"=":{"b":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"5":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"4":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"206":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0},"265":{"tf":1.0}},"i":{"df":4,"docs":{"105":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"2":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":28,"docs":{"11":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"221":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.7320508075688772},"35":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"213":{"tf":1.0},"90":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"6":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0}}}}}}},"g":{"0":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"106":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":2,"docs":{"106":{"tf":1.0},"111":{"tf":2.449489742783178}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"g":{"7":{"df":1,"docs":{"111":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"111":{"tf":2.449489742783178}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"g":{"7":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"111":{"tf":1.0}}},"7":{"df":1,"docs":{"111":{"tf":1.0}}},"9":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"g":{"1":{"0":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"g":{"1":{"1":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"0":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"213":{"tf":2.23606797749979},"258":{"tf":1.7320508075688772}}},"r":{"b":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"209":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":1,"docs":{"20":{"tf":2.23606797749979}}},"c":{"=":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"df":0,"docs":{},"g":{"c":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":2.23606797749979},"126":{"tf":1.0}},"⋅":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"b":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"77":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":24,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"19":{"tf":2.449489742783178},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"55":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"t":{"df":4,"docs":{"118":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"252":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"101":{"tf":1.0},"216":{"tf":1.0},"226":{"tf":1.0},"266":{"tf":1.0}},"n":{"df":27,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.4142135623730951},"19":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"24":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":2.0},"259":{"tf":1.0},"272":{"tf":1.0},"44":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"35":{"tf":2.6457513110645907},"69":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":6,"docs":{"1":{"tf":1.0},"138":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"266":{"tf":1.0},"45":{"tf":1.0}},"o":{"d":{"df":3,"docs":{"1":{"tf":1.0},"106":{"tf":1.0},"274":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"15":{"tf":2.23606797749979}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":53,"docs":{"111":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"127":{"tf":1.0},"131":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":2.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":2.8284271247461903},"122":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":29,"docs":{"103":{"tf":2.23606797749979},"105":{"tf":4.358898943540674},"106":{"tf":3.3166247903554},"111":{"tf":8.888194417315589},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"122":{"tf":3.4641016151377544},"123":{"tf":4.242640687119285},"124":{"tf":2.6457513110645907},"125":{"tf":3.1622776601683795},"126":{"tf":6.082762530298219},"138":{"tf":2.8284271247461903},"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":2.23606797749979},"143":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"269":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"87":{"tf":1.0},"97":{"tf":3.605551275463989}}}},"w":{"df":6,"docs":{"127":{"tf":1.0},"20":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"6":{"tf":1.0},"87":{"tf":1.0}}}}},"t":{"df":1,"docs":{"53":{"tf":1.0}},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"103":{"tf":1.0},"130":{"tf":1.0},"138":{"tf":1.0},"177":{"tf":1.0},"211":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.4142135623730951},"270":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"0":{"df":22,"docs":{"111":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":2.449489742783178},"126":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"233":{"tf":1.4142135623730951}},"":{",":{".":{".":{",":{"df":0,"docs":{},"h":{"3":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}},".":{",":{"df":0,"docs":{},"h":{"1":{"1":{"df":2,"docs":{"233":{"tf":1.0},"244":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":10,"docs":{"106":{"tf":2.23606797749979},"169":{"tf":1.0},"171":{"tf":1.7320508075688772},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"233":{"tf":1.0}}},"4":{"df":2,"docs":{"106":{"tf":1.0},"114":{"tf":1.0}}},"7":{"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":2.6457513110645907},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"h":{"2":{"df":2,"docs":{"201":{"tf":1.0},"203":{"tf":1.0}},"":{",":{"df":0,"docs":{},"h":{"3":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"1":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"1":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"−":{"(":{"(":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"1":{")":{"df":0,"docs":{},"∗":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"1":{")":{"=":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"6":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"2":{"7":{"+":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{")":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"df":11,"docs":{"106":{"tf":1.0},"111":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"233":{"tf":1.0}},"":{",":{".":{".":{".":{"df":0,"docs":{},"h":{"3":{"df":1,"docs":{"111":{"tf":1.0}}},"7":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":7,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0}}},"3":{"df":6,"docs":{"125":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0}}},"4":{"df":5,"docs":{"106":{"tf":1.7320508075688772},"114":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"h":{"1":{"1":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":3,"docs":{"125":{"tf":1.0},"233":{"tf":1.0},"244":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"h":{"7":{"df":1,"docs":{"244":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"5":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"147":{"tf":1.0}},"":{"=":{"1":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"df":1,"docs":{"110":{"tf":1.0}}},"8":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"h":{"1":{"1":{"df":1,"docs":{"244":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.4142135623730951}},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"a":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"101":{"tf":1.7320508075688772},"106":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"144":{"tf":1.0},"23":{"tf":1.0},"90":{"tf":1.0}}}},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"n":{"d":{"df":1,"docs":{"255":{"tf":1.0}},"l":{"df":2,"docs":{"111":{"tf":1.0},"116":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":10,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"122":{"tf":1.4142135623730951},"132":{"tf":1.0},"243":{"tf":1.0},"255":{"tf":1.4142135623730951},"258":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}}}}},"r":{"d":{"df":1,"docs":{"62":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"(":{"a":{"1":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"74":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}}}}}},"_":{"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"1":{"df":2,"docs":{"79":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"2":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"1":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"1":{"df":2,"docs":{"79":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"239":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"(":{"a":{",":{"0":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"(":{"a":{",":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":66,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":5.0990195135927845},"105":{"tf":3.872983346207417},"106":{"tf":5.291502622129181},"107":{"tf":3.3166247903554},"108":{"tf":2.0},"109":{"tf":1.7320508075688772},"110":{"tf":2.8284271247461903},"111":{"tf":3.0},"112":{"tf":4.358898943540674},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":3.3166247903554},"116":{"tf":3.605551275463989},"118":{"tf":5.0990195135927845},"119":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"220":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":2.23606797749979},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":3.4641016151377544},"233":{"tf":3.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":2.0},"237":{"tf":2.6457513110645907},"238":{"tf":2.8284271247461903},"239":{"tf":2.449489742783178},"240":{"tf":2.6457513110645907},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.7320508075688772},"244":{"tf":1.7320508075688772},"245":{"tf":3.1622776601683795},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"64":{"tf":1.0},"68":{"tf":3.3166247903554},"72":{"tf":2.0},"74":{"tf":3.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"88":{"tf":2.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"99":{"tf":5.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"224":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":18,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":2.8284271247461903},"106":{"tf":3.0},"111":{"tf":3.872983346207417},"115":{"tf":3.1622776601683795},"116":{"tf":4.0},"206":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":2.23606797749979},"233":{"tf":1.4142135623730951},"236":{"tf":2.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"244":{"tf":2.23606797749979},"245":{"tf":2.8284271247461903},"85":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"(":{"a":{",":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"(":{"a":{",":{"0":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"(":{"a":{",":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"(":{"a":{",":{"0":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"123":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"217":{"tf":1.0},"232":{"tf":1.0},"8":{"tf":1.0}}}}},"df":2,"docs":{"23":{"tf":1.4142135623730951},"64":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":9,"docs":{"103":{"tf":1.0},"16":{"tf":1.7320508075688772},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":2.0},"26":{"tf":1.7320508075688772},"35":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"103":{"tf":1.0},"128":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":29,"docs":{"100":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":1.0},"106":{"tf":2.8284271247461903},"107":{"tf":1.0},"111":{"tf":2.23606797749979},"116":{"tf":1.0},"122":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"233":{"tf":1.0},"247":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"62":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"17":{"tf":2.23606797749979}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"42":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":18,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"19":{"tf":1.0},"209":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.7320508075688772},"4":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"138":{"tf":1.0},"20":{"tf":1.0},"222":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.4142135623730951},"4":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"69":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"233":{"tf":1.0},"254":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"232":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"143":{"tf":1.0},"206":{"tf":2.23606797749979},"68":{"tf":1.0}}}}}},"r":{"df":6,"docs":{"232":{"tf":2.23606797749979},"236":{"tf":2.6457513110645907},"237":{"tf":2.6457513110645907},"238":{"tf":3.7416573867739413},"239":{"tf":3.7416573867739413},"240":{"tf":5.291502622129181}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"a":{"+":{"7":{")":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"←":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"i":{".":{"df":47,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"128":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"211":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":2.0},"245":{"tf":2.6457513110645907},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.7320508075688772}}},"/":{"df":0,"docs":{},"o":{"df":5,"docs":{"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.0}}}},"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"243":{"tf":1.4142135623730951}},"∏":{"8":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{")":{"=":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"+":{"b":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":9,"docs":{"105":{"tf":3.0},"106":{"tf":4.123105625617661},"111":{"tf":2.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"117":{"tf":2.8284271247461903},"258":{"tf":1.7320508075688772},"259":{"tf":1.0}},"e":{"a":{"df":2,"docs":{"113":{"tf":1.0},"213":{"tf":1.0}},"l":{"df":2,"docs":{"255":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":14,"docs":{"103":{"tf":1.0},"120":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"272":{"tf":1.0},"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"213":{"tf":1.0}}},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"101":{"tf":1.0},"112":{"tf":1.0},"47":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"177":{"tf":1.0}}}},"i":{"df":1,"docs":{"274":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":76,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"247":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"207":{"tf":2.0},"208":{"tf":2.23606797749979}}}},"df":0,"docs":{},"m":{"0":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":14,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":3.0},"113":{"tf":1.0},"126":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"208":{"tf":1.0},"245":{"tf":1.0},"39":{"tf":1.4142135623730951},"45":{"tf":1.0},"50":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"69":{"tf":1.0},"97":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"168":{"tf":1.0},"19":{"tf":1.0},"214":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"245":{"tf":1.7320508075688772},"253":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"273":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.4142135623730951},"88":{"tf":1.0},"99":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":5,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"170":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":11,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"210":{"tf":1.0},"240":{"tf":1.0},"266":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":2.449489742783178},"39":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0}}}},"s":{"df":22,"docs":{"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.7320508075688772},"150":{"tf":1.0},"170":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"234":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"259":{"tf":1.4142135623730951},"264":{"tf":1.0},"9":{"tf":1.0}},"s":{"df":1,"docs":{"120":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"2":{"tf":1.0},"270":{"tf":1.0},"33":{"tf":1.0}}}}}}},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"120":{"tf":2.0}}}},"df":0,"docs":{}}}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":27,"docs":{"105":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":2.23606797749979},"217":{"tf":1.7320508075688772},"221":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"245":{"tf":2.6457513110645907},"252":{"tf":1.7320508075688772},"259":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"62":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"124":{"tf":1.0},"211":{"tf":1.0},"6":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":2,"docs":{"139":{"tf":1.0},"160":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":15,"docs":{"130":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"217":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"262":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"222":{"tf":1.0},"254":{"tf":1.0},"261":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"224":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"245":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":20,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":2.0},"17":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":1.0},"239":{"tf":2.23606797749979},"240":{"tf":1.4142135623730951},"243":{"tf":2.0},"245":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":2.23606797749979},"68":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}},"i":{"c":{"df":14,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"118":{"tf":1.7320508075688772},"133":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":12,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"226":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.0},"34":{"tf":1.4142135623730951},"63":{"tf":1.0},"70":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"34":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":3,"docs":{"105":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"266":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951}},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"245":{"tf":1.0}}}}},"df":42,"docs":{"10":{"tf":1.0},"101":{"tf":2.8284271247461903},"104":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":2.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":3.3166247903554},"127":{"tf":1.0},"129":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.0},"232":{"tf":2.0},"233":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"24":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":2.0},"9":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"247":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"62":{"tf":1.0},"65":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"33":{"tf":1.0},"42":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}}}}},"df":59,"docs":{"10":{"tf":2.0},"103":{"tf":1.0},"106":{"tf":2.0},"116":{"tf":1.0},"127":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":2.8284271247461903},"179":{"tf":1.0},"180":{"tf":1.0},"194":{"tf":2.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":2.0},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"250":{"tf":1.7320508075688772},"270":{"tf":2.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":2.0},"66":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":3.1622776601683795},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"86":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":11,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.0},"23":{"tf":1.0},"267":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":2.449489742783178},"9":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"d":{"df":9,"docs":{"103":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":2.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"16":{"tf":1.0},"2":{"tf":1.0},"232":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":5,"docs":{"223":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":57,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"107":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"132":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"232":{"tf":5.0990195135927845},"233":{"tf":1.4142135623730951},"234":{"tf":2.6457513110645907},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.7320508075688772},"240":{"tf":2.23606797749979},"25":{"tf":2.23606797749979},"28":{"tf":1.0},"31":{"tf":2.0},"33":{"tf":2.8284271247461903},"35":{"tf":1.7320508075688772},"36":{"tf":2.0},"37":{"tf":3.4641016151377544},"38":{"tf":3.872983346207417},"39":{"tf":1.4142135623730951},"41":{"tf":2.0},"42":{"tf":3.4641016151377544},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"45":{"tf":3.872983346207417},"47":{"tf":2.6457513110645907},"48":{"tf":2.23606797749979},"49":{"tf":2.23606797749979},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.449489742783178},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":2.8284271247461903},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":2.449489742783178},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":19,"docs":{"168":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.4142135623730951},"220":{"tf":1.0},"258":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":2.23606797749979},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"88":{"tf":1.0}},"r":{"df":1,"docs":{"274":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"224":{"tf":1.0},"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"22":{"tf":1.4142135623730951},"265":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":5,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"23":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"147":{"tf":1.0},"209":{"tf":1.0},"252":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":19,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"14":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":2.0},"230":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.0},"38":{"tf":2.0},"4":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"17":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":6,"docs":{"138":{"tf":1.0},"211":{"tf":1.0},"223":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"87":{"tf":1.0}},"t":{"df":24,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"265":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"139":{"tf":1.0},"159":{"tf":2.0},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"257":{"tf":1.4142135623730951},"258":{"tf":2.0},"54":{"tf":1.0}}}}},"o":{"c":{"df":1,"docs":{"42":{"tf":1.7320508075688772}}},"df":0,"docs":{},"k":{"df":8,"docs":{"264":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"41":{"tf":2.0},"42":{"tf":3.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":8,"docs":{"113":{"tf":1.0},"210":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"255":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"118":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"110":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.7320508075688772}}}}}},"o":{"d":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"2":{"tf":1.0},"270":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"211":{"tf":1.0},"223":{"tf":1.0}}}}},"t":{"'":{"df":3,"docs":{"272":{"tf":1.0},"274":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":17,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"127":{"tf":3.1622776601683795},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"137":{"tf":2.6457513110645907},"140":{"tf":1.0},"141":{"tf":1.0},"42":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"60":{"tf":2.449489742783178},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"r":{"df":4,"docs":{"101":{"tf":1.0},"2":{"tf":1.0},"49":{"tf":1.0},"94":{"tf":1.0}}}},"h":{"df":1,"docs":{"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"129":{"tf":1.0},"207":{"tf":1.0},"37":{"tf":1.0},"8":{"tf":1.0}}}}}}},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":0,"docs":{},"−":{"1":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":2,"docs":{"256":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"255":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"∈":{"2":{",":{"3":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"0":{",":{"1":{"5":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":1,"docs":{"125":{"tf":1.0}}},"4":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"114":{"tf":1.0}}},"7":{"df":2,"docs":{"111":{"tf":1.0},"114":{"tf":1.0}}},"8":{"df":2,"docs":{"189":{"tf":1.4142135623730951},"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"8":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{",":{"8":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"0":{",":{"1":{",":{"2":{",":{"3":{"df":5,"docs":{"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"56":{"tf":1.0}},"}":{"df":0,"docs":{},"∋":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"≥":{"2":{"3":{"2":{"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":{}},"df":0,"docs":{}},"df":2,"docs":{"162":{"tf":1.0},"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"92":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"101":{"tf":2.23606797749979},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":2.23606797749979},"108":{"tf":2.449489742783178},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.23606797749979},"143":{"tf":1.0},"92":{"tf":2.23606797749979},"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.0}}}}},"∈":{"[":{"0":{",":{"4":{"df":1,"docs":{"244":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"0":{"df":5,"docs":{"130":{"tf":1.4142135623730951},"135":{"tf":1.0},"233":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.4142135623730951}},"":{",":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"":{",":{"b":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"244":{"tf":1.0}}},"1":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951}},"":{"=":{"0":{"df":1,"docs":{"252":{"tf":1.0}}},"1":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"(":{"a":{"df":0,"docs":{},"⋅":{"1":{"6":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{")":{")":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"(":{"b":{"df":0,"docs":{},"⋅":{"1":{"6":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{")":{")":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{")":{"=":{"0":{"df":1,"docs":{"249":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"−":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"2":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"245":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"b":{"df":1,"docs":{"20":{"tf":3.4641016151377544}}},"df":2,"docs":{"65":{"tf":3.3166247903554},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":23,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"117":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":21,"docs":{"116":{"tf":2.6457513110645907},"2":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"231":{"tf":2.0},"260":{"tf":2.6457513110645907},"261":{"tf":2.23606797749979},"262":{"tf":2.449489742783178},"263":{"tf":2.8284271247461903},"264":{"tf":3.1622776601683795},"269":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":3.3166247903554},"45":{"tf":1.0},"88":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}}}},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"df":7,"docs":{"10":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":2.449489742783178},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":3.3166247903554}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"1":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"z":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"0":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"207":{"tf":1.0},"264":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":4,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":11,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"246":{"tf":1.0},"55":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"116":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"α":{"6":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"7":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"∣":{"df":0,"docs":{},"∣":{"b":{",":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":20,"docs":{"104":{"tf":2.449489742783178},"116":{"tf":2.6457513110645907},"179":{"tf":1.0},"180":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"224":{"tf":2.23606797749979},"228":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"252":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"210":{"tf":1.0},"212":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"170":{"tf":1.0},"44":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":41,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.7320508075688772},"142":{"tf":1.0},"144":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.0},"223":{"tf":1.7320508075688772},"226":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"242":{"tf":1.0},"245":{"tf":1.7320508075688772},"246":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"262":{"tf":1.0},"264":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"87":{"tf":1.0},"97":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"212":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":1.0},"259":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"11":{"tf":1.0},"118":{"tf":1.0},"129":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"37":{"tf":1.0},"97":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"170":{"tf":1.0},"62":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}}}}},"df":2,"docs":{"209":{"tf":2.8284271247461903},"77":{"tf":2.6457513110645907}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"128":{"tf":1.0},"233":{"tf":1.0},"258":{"tf":1.0},"44":{"tf":2.0}}}}}}},"df":1,"docs":{"68":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"f":{"'":{"df":1,"docs":{"239":{"tf":1.0}}},"df":14,"docs":{"107":{"tf":1.0},"17":{"tf":1.7320508075688772},"207":{"tf":1.0},"233":{"tf":1.4142135623730951},"239":{"tf":2.0},"240":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"74":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"255":{"tf":1.0},"274":{"tf":1.0},"4":{"tf":1.0}}}},"v":{"df":4,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"239":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":35,"docs":{"106":{"tf":1.0},"118":{"tf":1.0},"131":{"tf":2.8284271247461903},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":2.0},"140":{"tf":2.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"147":{"tf":3.0},"151":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.4142135623730951},"31":{"tf":1.0},"58":{"tf":1.4142135623730951},"68":{"tf":1.0},"84":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"112":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"230":{"tf":1.4142135623730951},"266":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"111":{"tf":1.0},"13":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":2.6457513110645907},"234":{"tf":2.449489742783178},"242":{"tf":1.4142135623730951},"245":{"tf":1.0},"259":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":2.0}}}},"t":{"'":{"df":11,"docs":{"101":{"tf":1.0},"112":{"tf":1.4142135623730951},"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"170":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"247":{"tf":1.4142135623730951},"262":{"tf":1.0},"45":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"34":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":18,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"209":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":2.23606797749979},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"86":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":23,"docs":{"2":{"tf":2.0},"32":{"tf":1.4142135623730951},"38":{"tf":2.0},"43":{"tf":1.7320508075688772},"69":{"tf":2.449489742783178},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"5":{"tf":2.0}}}}}},"df":0,"docs":{},"m":{"b":{"df":15,"docs":{"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"66":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":12,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"232":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"253":{"tf":1.0},"35":{"tf":1.4142135623730951},"6":{"tf":1.0},"97":{"tf":1.0}}}},"df":3,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"40":{"tf":1.0}},"r":{"df":1,"docs":{"243":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"113":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"55":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":5,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.7320508075688772},"210":{"tf":1.0},"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"c":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"0":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"37":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.0}},"w":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"37":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.0}}}}}}}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":2,"docs":{"39":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":10,"docs":{"2":{"tf":1.0},"37":{"tf":2.449489742783178},"38":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":2.23606797749979},"62":{"tf":1.7320508075688772},"64":{"tf":1.0},"66":{"tf":3.872983346207417},"88":{"tf":1.0},"89":{"tf":1.0}}},"t":{"df":17,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"233":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.0},"29":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"2":{"(":{"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"6":{"tf":1.0},"74":{"tf":1.0}},"i":{"c":{"df":5,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"113":{"tf":1.0},"2":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"216":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":27,"docs":{"111":{"tf":2.23606797749979},"112":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"150":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"85":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":8,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"265":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772}}}}},"p":{"'":{"df":2,"docs":{"106":{"tf":2.0},"110":{"tf":1.4142135623730951}}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":22,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":3.0},"110":{"tf":4.123105625617661},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.449489742783178},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"2":{"tf":1.4142135623730951},"24":{"tf":1.0},"35":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":2.8284271247461903},"94":{"tf":2.8284271247461903},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"w":{"df":10,"docs":{"106":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"209":{"tf":1.4142135623730951},"274":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"222":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"53":{"tf":1.0}},"e":{"df":1,"docs":{"53":{"tf":1.0}}}}},"m":{"1":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"21":{"tf":1.0}}},"=":{"(":{"2":{"3":{"2":{"df":0,"docs":{},"−":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"k":{"1":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"p":{"df":2,"docs":{"104":{"tf":1.0},"116":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"0":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"35":{"tf":1.0},"6":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"33":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"215":{"tf":1.0},"233":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"272":{"tf":1.0},"38":{"tf":1.7320508075688772},"41":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"230":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":48,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.4142135623730951},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"250":{"tf":2.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"259":{"tf":2.0},"264":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"33":{"tf":2.0},"7":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"101":{"tf":1.0},"127":{"tf":1.4142135623730951},"199":{"tf":1.0},"2":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":15,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.4142135623730951},"24":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"33":{"tf":1.0},"72":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":20,"docs":{"10":{"tf":1.0},"181":{"tf":2.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"42":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"104":{"tf":1.0},"111":{"tf":2.0},"118":{"tf":1.0},"226":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"35":{"tf":1.0},"42":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":12,"docs":{"10":{"tf":2.0},"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"6":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"m":{"df":2,"docs":{"16":{"tf":1.0},"23":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"21":{"tf":1.0}}}}},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"16":{"tf":1.0},"33":{"tf":2.0},"35":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"245":{"tf":1.0},"264":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"111":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"274":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951}}}}},"h":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"212":{"tf":1.0},"228":{"tf":1.0},"271":{"tf":1.0}}}}}},"x":{"(":{"a":{",":{"b":{")":{">":{"1":{"df":1,"docs":{"52":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"≥":{"2":{"3":{"2":{"df":3,"docs":{"57":{"tf":3.605551275463989},"58":{"tf":1.7320508075688772},"59":{"tf":3.7416573867739413}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},",":{"c":{")":{"df":0,"docs":{},"≥":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"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}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"2":{"tf":1.0},"212":{"tf":1.0},"60":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"20":{"tf":2.6457513110645907}},"p":{"df":2,"docs":{"104":{"tf":1.0},"116":{"tf":1.0}}}},"df":7,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0},"245":{"tf":1.0},"68":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":27,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"138":{"tf":1.0},"2":{"tf":1.0},"217":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}},"t":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"240":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"[":{"8":{"7":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"30":{"tf":1.0}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.4142135623730951}},"w":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.4142135623730951}},"e":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"1":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":2,"docs":{"23":{"tf":1.0},"29":{"tf":2.23606797749979}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":47,"docs":{"10":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":3.3166247903554},"2":{"tf":2.0},"200":{"tf":2.8284271247461903},"201":{"tf":2.8284271247461903},"202":{"tf":3.0},"203":{"tf":3.0},"204":{"tf":3.0},"209":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":2.0},"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"253":{"tf":2.6457513110645907},"254":{"tf":2.6457513110645907},"255":{"tf":3.4641016151377544},"256":{"tf":2.0},"257":{"tf":2.0},"258":{"tf":4.0},"259":{"tf":2.8284271247461903},"273":{"tf":1.4142135623730951},"29":{"tf":2.449489742783178},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"41":{"tf":1.0},"44":{"tf":3.605551275463989},"45":{"tf":2.23606797749979},"6":{"tf":2.23606797749979},"62":{"tf":2.6457513110645907},"64":{"tf":1.4142135623730951},"65":{"tf":2.0},"66":{"tf":4.58257569495584},"72":{"tf":1.0},"74":{"tf":2.0},"77":{"tf":1.4142135623730951},"85":{"tf":2.0},"88":{"tf":2.0},"89":{"tf":1.4142135623730951}}},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"255":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"256":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}},"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":15,"docs":{"111":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"130":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"10":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"90":{"tf":1.0}}}},"l":{"df":23,"docs":{"10":{"tf":2.6457513110645907},"104":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":2.23606797749979},"220":{"tf":1.0},"232":{"tf":3.872983346207417},"233":{"tf":2.0},"239":{"tf":2.8284271247461903},"240":{"tf":2.8284271247461903},"243":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":3.3166247903554},"6":{"tf":2.0},"65":{"tf":1.7320508075688772},"68":{"tf":3.1622776601683795},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":2.6457513110645907},"77":{"tf":1.0},"8":{"tf":1.7320508075688772},"88":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"220":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"104":{"tf":1.7320508075688772},"115":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"116":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":113,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"100":{"tf":2.0},"101":{"tf":1.0},"11":{"tf":3.3166247903554},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"127":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":2.449489742783178},"138":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.7320508075688772},"155":{"tf":1.0},"16":{"tf":3.605551275463989},"168":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":3.4641016151377544},"20":{"tf":1.0},"205":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.7320508075688772},"22":{"tf":2.8284271247461903},"220":{"tf":1.0},"23":{"tf":2.23606797749979},"232":{"tf":1.0},"24":{"tf":2.6457513110645907},"25":{"tf":2.0},"253":{"tf":1.0},"258":{"tf":2.0},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"269":{"tf":1.7320508075688772},"27":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.0},"3":{"tf":1.7320508075688772},"31":{"tf":1.0},"32":{"tf":2.8284271247461903},"33":{"tf":4.47213595499958},"34":{"tf":1.0},"35":{"tf":3.4641016151377544},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"4":{"tf":2.449489742783178},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":2.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":2.6457513110645907},"7":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"213":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"118":{"tf":1.0},"206":{"tf":1.0}}}},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"139":{"tf":1.0},"201":{"tf":2.0}},"w":{"df":2,"docs":{"140":{"tf":1.0},"200":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":2.449489742783178}}}}}},"df":1,"docs":{"74":{"tf":3.0}}},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":1,"docs":{"84":{"tf":1.7320508075688772}},"e":{"df":1,"docs":{"13":{"tf":1.0}},"l":{"df":1,"docs":{"255":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"262":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"33":{"tf":1.0}}}},"df":23,"docs":{"177":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":2.23606797749979},"225":{"tf":1.4142135623730951},"262":{"tf":1.0},"273":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":4.898979485566356},"39":{"tf":1.4142135623730951},"43":{"tf":2.449489742783178},"71":{"tf":2.23606797749979},"72":{"tf":2.23606797749979},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"'":{"df":3,"docs":{"221":{"tf":1.0},"226":{"tf":1.0},"262":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"u":{"df":7,"docs":{"127":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"253":{"tf":1.0},"34":{"tf":1.0},"6":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"259":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":40,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":2.0},"122":{"tf":1.0},"137":{"tf":1.4142135623730951},"148":{"tf":1.0},"16":{"tf":1.0},"211":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"248":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":2.0},"4":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"86":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"110":{"tf":1.0},"45":{"tf":1.0},"77":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"v":{"d":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.7320508075688772}}}},"2":{"df":2,"docs":{"139":{"tf":1.0},"191":{"tf":1.0}}},"3":{"df":1,"docs":{"139":{"tf":1.0}}},"4":{"df":1,"docs":{"139":{"tf":1.0}}},"5":{"df":1,"docs":{"139":{"tf":1.0}}},"6":{"df":1,"docs":{"139":{"tf":1.0}}},"7":{"df":1,"docs":{"139":{"tf":1.0}}},"8":{"df":1,"docs":{"139":{"tf":1.0}}},"df":2,"docs":{"191":{"tf":1.0},"60":{"tf":1.0}},"w":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":17,"docs":{"115":{"tf":1.0},"130":{"tf":1.4142135623730951},"190":{"tf":2.0},"191":{"tf":1.7320508075688772},"194":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"254":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"45":{"tf":2.23606797749979},"60":{"tf":2.0},"62":{"tf":2.23606797749979},"65":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.7320508075688772}}}},"2":{"df":2,"docs":{"139":{"tf":1.0},"190":{"tf":1.0}}},"3":{"df":1,"docs":{"139":{"tf":1.0}}},"4":{"df":1,"docs":{"139":{"tf":1.0}}},"5":{"df":1,"docs":{"139":{"tf":1.0}}},"6":{"df":1,"docs":{"139":{"tf":1.0}}},"7":{"df":1,"docs":{"139":{"tf":1.0}}},"8":{"df":1,"docs":{"139":{"tf":1.0}}},"df":2,"docs":{"190":{"tf":1.0},"60":{"tf":1.0}},"w":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"p":{"a":{"df":3,"docs":{"232":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0}}},"df":3,"docs":{"232":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0}},"u":{"df":1,"docs":{"240":{"tf":1.0}}},"v":{"df":1,"docs":{"240":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"143":{"tf":1.0},"207":{"tf":2.23606797749979}}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"208":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":4,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":4.0},"21":{"tf":2.0},"23":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"140":{"tf":1.0},"203":{"tf":2.0}},"w":{"df":2,"docs":{"140":{"tf":1.0},"202":{"tf":2.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"143":{"tf":1.0},"204":{"tf":2.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"68":{"tf":1.0},"8":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"u":{"a":{"df":2,"docs":{"232":{"tf":1.0},"240":{"tf":1.0}}},"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"33":{"tf":1.0},"8":{"tf":1.0}}}},"df":2,"docs":{"232":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772}},"l":{"6":{"4":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":4,"docs":{"140":{"tf":1.0},"158":{"tf":2.0},"38":{"tf":1.0},"52":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.4142135623730951},"222":{"tf":1.0},"246":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":21,"docs":{"104":{"tf":1.4142135623730951},"113":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"217":{"tf":1.0},"232":{"tf":3.3166247903554},"233":{"tf":1.0},"234":{"tf":3.3166247903554},"238":{"tf":1.0},"242":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"25":{"tf":1.0},"271":{"tf":1.0},"41":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}},"i":{"df":19,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"138":{"tf":1.0},"169":{"tf":1.0},"212":{"tf":1.7320508075688772},"226":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":15,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.7320508075688772},"265":{"tf":2.449489742783178},"266":{"tf":2.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"113":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":2,"docs":{"232":{"tf":1.0},"240":{"tf":1.0}}},"df":3,"docs":{"232":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"6":{"tf":1.0}}}},"n":{"+":{"1":{"df":2,"docs":{"190":{"tf":1.0},"191":{"tf":1.0}}},"df":0,"docs":{}},"/":{"8":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"0":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"257":{"tf":1.0},"259":{"tf":1.0}},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"(":{"c":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"c":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{"=":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"257":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"257":{"tf":1.4142135623730951},"259":{"tf":1.0}}},"df":0,"docs":{},"δ":{"c":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"δ":{"a":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":1,"docs":{"259":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"df":2,"docs":{"257":{"tf":1.0},"259":{"tf":1.0}},"":{"=":{"0":{"df":1,"docs":{"257":{"tf":1.0}}},"1":{"df":1,"docs":{"257":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"=":{"0":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{")":{"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"=":{"0":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"<":{"2":{"5":{"6":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"256":{"tf":1.4142135623730951}}},"1":{"4":{"df":1,"docs":{"104":{"tf":1.0}}},"df":1,"docs":{"256":{"tf":1.4142135623730951}}},"df":0,"docs":{}},">":{"2":{"1":{"6":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"148":{"tf":1.0},"212":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"113":{"tf":1.4142135623730951},"137":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":4,"docs":{"71":{"tf":2.0},"73":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"2":{"tf":1.4142135623730951},"232":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":19,"docs":{"104":{"tf":1.7320508075688772},"18":{"tf":1.0},"184":{"tf":1.4142135623730951},"190":{"tf":2.0},"191":{"tf":2.23606797749979},"209":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"216":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":2.23606797749979},"256":{"tf":1.0},"31":{"tf":1.4142135623730951},"60":{"tf":2.8284271247461903},"65":{"tf":2.0},"74":{"tf":2.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":85,"docs":{"0":{"tf":1.0},"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":2.6457513110645907},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":2.6457513110645907},"111":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"120":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":2.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"16":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":2.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"227":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":2.0},"251":{"tf":1.7320508075688772},"253":{"tf":1.0},"254":{"tf":2.6457513110645907},"255":{"tf":3.0},"256":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.7320508075688772},"259":{"tf":2.23606797749979},"264":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":3,"docs":{"139":{"tf":1.0},"157":{"tf":2.0},"52":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"q":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"59":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}},"t":{"df":1,"docs":{"106":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"105":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"75":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}},"df":38,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":2.8284271247461903},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":2.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"141":{"tf":1.0},"208":{"tf":2.6457513110645907},"209":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"240":{"tf":1.7320508075688772},"243":{"tf":2.0},"245":{"tf":3.3166247903554},"255":{"tf":1.7320508075688772},"256":{"tf":1.7320508075688772},"257":{"tf":2.0},"258":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"t":{"df":52,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":3.0},"111":{"tf":3.605551275463989},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"120":{"tf":2.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":2.0},"124":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"166":{"tf":2.0},"167":{"tf":1.4142135623730951},"209":{"tf":2.6457513110645907},"211":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"234":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":2.0},"243":{"tf":1.4142135623730951},"244":{"tf":2.0},"246":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"266":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"g":{"=":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"124":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.7320508075688772}}}}}}},"df":23,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"207":{"tf":2.449489742783178},"208":{"tf":3.3166247903554},"232":{"tf":2.6457513110645907},"233":{"tf":1.7320508075688772},"239":{"tf":2.449489742783178},"240":{"tf":3.0},"243":{"tf":2.23606797749979},"244":{"tf":1.0},"245":{"tf":2.8284271247461903},"65":{"tf":1.0},"68":{"tf":2.0},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.7320508075688772},"17":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":1.7320508075688772},"8":{"tf":1.0}}}}}}}}}}}}},"df":27,"docs":{"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"128":{"tf":1.0},"130":{"tf":1.0},"170":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"222":{"tf":1.0},"239":{"tf":1.0},"256":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"55":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":3,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"'":{"df":1,"docs":{"111":{"tf":1.0}}},"df":9,"docs":{"100":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"122":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"150":{"tf":2.0},"23":{"tf":1.0},"97":{"tf":2.23606797749979},"99":{"tf":2.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":8,"docs":{"113":{"tf":1.0},"241":{"tf":1.0},"252":{"tf":1.0},"263":{"tf":1.0},"34":{"tf":1.7320508075688772},"36":{"tf":1.0},"70":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":51,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"143":{"tf":1.0},"159":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"246":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"87":{"tf":1.0}}},"h":{"df":4,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0}}},"i":{"c":{"df":11,"docs":{"111":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"254":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"w":{"df":8,"docs":{"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"255":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":2.8284271247461903}}}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":3.1622776601683795}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":37,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"111":{"tf":3.1622776601683795},"116":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"14":{"tf":1.0},"169":{"tf":1.4142135623730951},"17":{"tf":2.449489742783178},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":1.0},"258":{"tf":1.0},"37":{"tf":2.23606797749979},"39":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"8":{"tf":2.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"208":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"=":{"0":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"106":{"tf":1.0}}}},"∈":{"[":{"2":{",":{"9":{"df":2,"docs":{"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"0":{",":{".":{".":{".":{",":{"1":{"5":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"7":{",":{"9":{",":{"1":{"1":{",":{"1":{"3":{",":{"1":{"5":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"2":{",":{"3":{"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":{}},"1":{",":{".":{".":{".":{",":{"1":{"5":{"df":1,"docs":{"60":{"tf":1.0}}},"6":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"3":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{".":{".":{".":{",":{"1":{"5":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"−":{"1":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":0,"docs":{},"−":{"1":{")":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"116":{"tf":1.0},"228":{"tf":1.0},"245":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"d":{"d":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"18":{"tf":1.4142135623730951}},"f":{"a":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":5,"docs":{"102":{"tf":1.0},"228":{"tf":1.4142135623730951},"232":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"211":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0}}}}}}},"l":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":10,"docs":{"208":{"tf":2.449489742783178},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"240":{"tf":1.4142135623730951},"245":{"tf":2.0},"255":{"tf":2.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"68":{"tf":1.0},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"137":{"tf":1.0},"169":{"tf":1.0},"244":{"tf":1.0},"254":{"tf":1.0},"37":{"tf":1.0},"63":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":2.0}}}}}},"n":{"c":{"df":16,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":2.23606797749979},"16":{"tf":1.0},"19":{"tf":1.4142135623730951},"209":{"tf":1.0},"219":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"98":{"tf":1.0}}},"df":60,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"111":{"tf":3.0},"113":{"tf":1.7320508075688772},"122":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"130":{"tf":1.0},"138":{"tf":1.4142135623730951},"150":{"tf":1.0},"170":{"tf":2.0},"190":{"tf":1.0},"191":{"tf":1.0},"2":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":2.6457513110645907},"233":{"tf":2.449489742783178},"234":{"tf":1.7320508075688772},"24":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"248":{"tf":1.0},"25":{"tf":2.23606797749979},"250":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":2.6457513110645907},"50":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":2.449489742783178},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":29,"docs":{"10":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.0},"130":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.7320508075688772},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":3.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}},"p":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"1":{"1":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"123":{"tf":1.0}}},"9":{"df":1,"docs":{"123":{"tf":1.7320508075688772}}},"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"6":{"df":0,"docs":{},"":{"(":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"2":{"df":0,"docs":{},"i":{")":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"106":{"tf":1.0},"111":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"252":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":16,"docs":{"100":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.7320508075688772},"116":{"tf":2.0},"123":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"103":{"tf":1.0},"105":{"tf":2.449489742783178},"106":{"tf":2.23606797749979},"111":{"tf":5.656854249492381},"116":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":3.872983346207417},"138":{"tf":3.3166247903554},"139":{"tf":5.656854249492381},"140":{"tf":4.123105625617661},"141":{"tf":4.123105625617661},"142":{"tf":3.0},"143":{"tf":2.8284271247461903},"144":{"tf":2.8284271247461903},"269":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":95,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":2.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"62":{"tf":2.0},"65":{"tf":2.23606797749979},"66":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":2.8284271247461903},"75":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"103":{"tf":1.0}}},"(":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{},"s":{"1":{"df":2,"docs":{"101":{"tf":2.449489742783178},"112":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":167,"docs":{"10":{"tf":1.0},"100":{"tf":2.0},"101":{"tf":2.23606797749979},"102":{"tf":1.0},"103":{"tf":3.4641016151377544},"104":{"tf":1.0},"105":{"tf":3.1622776601683795},"106":{"tf":6.557438524302},"108":{"tf":2.0},"109":{"tf":1.0},"110":{"tf":3.7416573867739413},"111":{"tf":8.12403840463596},"112":{"tf":2.6457513110645907},"113":{"tf":2.8284271247461903},"114":{"tf":3.3166247903554},"115":{"tf":2.6457513110645907},"116":{"tf":4.0},"117":{"tf":3.4641016151377544},"118":{"tf":3.4641016151377544},"120":{"tf":3.1622776601683795},"121":{"tf":2.6457513110645907},"122":{"tf":3.872983346207417},"123":{"tf":4.0},"124":{"tf":3.3166247903554},"125":{"tf":3.4641016151377544},"126":{"tf":3.1622776601683795},"127":{"tf":1.4142135623730951},"130":{"tf":2.0},"131":{"tf":1.7320508075688772},"137":{"tf":4.123105625617661},"138":{"tf":4.898979485566356},"139":{"tf":3.0},"140":{"tf":3.0},"141":{"tf":3.0},"142":{"tf":3.872983346207417},"143":{"tf":3.0},"144":{"tf":2.6457513110645907},"145":{"tf":1.4142135623730951},"146":{"tf":2.449489742783178},"147":{"tf":2.6457513110645907},"148":{"tf":2.0},"149":{"tf":2.0},"150":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"154":{"tf":1.7320508075688772},"155":{"tf":2.23606797749979},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":1.7320508075688772},"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":2.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":1.7320508075688772},"168":{"tf":2.0},"169":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":2.23606797749979},"172":{"tf":2.0},"173":{"tf":2.23606797749979},"174":{"tf":2.23606797749979},"175":{"tf":2.23606797749979},"176":{"tf":2.23606797749979},"177":{"tf":2.449489742783178},"178":{"tf":2.23606797749979},"179":{"tf":3.0},"180":{"tf":3.0},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.7320508075688772},"184":{"tf":2.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772},"190":{"tf":2.0},"191":{"tf":2.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"194":{"tf":2.23606797749979},"195":{"tf":2.23606797749979},"196":{"tf":1.7320508075688772},"197":{"tf":2.0},"198":{"tf":2.0},"199":{"tf":2.23606797749979},"2":{"tf":2.0},"20":{"tf":1.0},"200":{"tf":2.449489742783178},"201":{"tf":2.449489742783178},"202":{"tf":2.6457513110645907},"203":{"tf":2.6457513110645907},"204":{"tf":2.6457513110645907},"205":{"tf":2.449489742783178},"206":{"tf":2.23606797749979},"207":{"tf":2.8284271247461903},"208":{"tf":2.449489742783178},"209":{"tf":2.6457513110645907},"21":{"tf":1.4142135623730951},"210":{"tf":2.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":2.8284271247461903},"228":{"tf":2.8284271247461903},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"245":{"tf":2.0},"246":{"tf":3.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"251":{"tf":2.0},"252":{"tf":2.23606797749979},"254":{"tf":1.0},"255":{"tf":2.23606797749979},"258":{"tf":2.8284271247461903},"259":{"tf":2.449489742783178},"260":{"tf":1.0},"263":{"tf":2.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"50":{"tf":2.449489742783178},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"54":{"tf":2.0},"55":{"tf":2.6457513110645907},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":2.8284271247461903},"82":{"tf":2.449489742783178},"83":{"tf":1.4142135623730951},"84":{"tf":2.8284271247461903},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":4.0},"98":{"tf":2.449489742783178},"99":{"tf":2.23606797749979}}},"x":{"df":1,"docs":{"272":{"tf":1.0}}}},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"116":{"tf":1.0},"263":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"206":{"tf":1.0},"245":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}}}}}}},"df":1,"docs":{"259":{"tf":1.0}}}},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"208":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"207":{"tf":1.0},"208":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":18,"docs":{"13":{"tf":2.23606797749979},"19":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"220":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"258":{"tf":1.4142135623730951},"265":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":1.0},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.0},"65":{"tf":1.0}}}}}},"u":{"3":{"2":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"111":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"204":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":2.449489742783178},"228":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"35":{"tf":2.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":12,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"115":{"tf":1.0},"138":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"71":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"209":{"tf":1.0},"247":{"tf":1.0},"42":{"tf":1.0},"86":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"62":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":30,"docs":{"103":{"tf":1.4142135623730951},"105":{"tf":2.0},"106":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"122":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"207":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"42":{"tf":1.0},"68":{"tf":1.4142135623730951},"77":{"tf":1.0},"83":{"tf":4.242640687119285},"84":{"tf":2.449489742783178},"86":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":20,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"17":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"259":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":57,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":2.449489742783178},"194":{"tf":2.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":2.0},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"233":{"tf":1.7320508075688772},"236":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"25":{"tf":1.0},"251":{"tf":2.449489742783178},"258":{"tf":1.0},"270":{"tf":2.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":2.0},"75":{"tf":1.7320508075688772},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":2.6457513110645907},"80":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"2":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"255":{"tf":1.0}}}},"df":24,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":1.0},"220":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"246":{"tf":1.0},"251":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":13,"docs":{"128":{"tf":1.0},"129":{"tf":2.8284271247461903},"130":{"tf":2.23606797749979},"131":{"tf":1.7320508075688772},"133":{"tf":2.0},"134":{"tf":1.0},"135":{"tf":2.6457513110645907},"17":{"tf":1.4142135623730951},"177":{"tf":1.0},"209":{"tf":1.0},"269":{"tf":1.0},"82":{"tf":2.8284271247461903},"84":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}},"r":{"df":1,"docs":{"84":{"tf":1.0}}}},"u":{"b":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"4":{"tf":1.0},"6":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"198":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772}}}}}}}}},"x":{"df":2,"docs":{"103":{"tf":1.0},"124":{"tf":1.7320508075688772}}}},"p":{"0":{"df":2,"docs":{"211":{"tf":1.7320508075688772},"212":{"tf":2.23606797749979}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"p":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{")":{"=":{"0":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"1":{"df":6,"docs":{"105":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"129":{"tf":2.23606797749979},"233":{"tf":2.0},"240":{"tf":1.7320508075688772},"245":{"tf":2.6457513110645907}},"":{"=":{"1":{"df":2,"docs":{"136":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"p":{"1":{"df":3,"docs":{"117":{"tf":1.0},"135":{"tf":1.4142135623730951},"245":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.0}}}},"v":{"df":2,"docs":{"117":{"tf":1.0},"135":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"=":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"117":{"tf":1.0},"135":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"2":{"df":2,"docs":{"105":{"tf":2.0},"118":{"tf":1.7320508075688772}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"118":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"=":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"3":{"df":2,"docs":{"105":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"=":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"=":{"2":{"6":{"4":{"df":0,"docs":{},"−":{"2":{"3":{"2":{"+":{"1":{"df":3,"docs":{"6":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"74":{"tf":1.0}}}},"d":{"df":15,"docs":{"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"141":{"tf":1.0},"182":{"tf":2.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"262":{"tf":1.0},"266":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.4142135623730951}},"w":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"16":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"105":{"tf":2.6457513110645907},"106":{"tf":2.449489742783178},"117":{"tf":2.0},"43":{"tf":1.0},"88":{"tf":1.0}}}}},"t":{"df":10,"docs":{"102":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"245":{"tf":2.23606797749979},"264":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"71":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"169":{"tf":1.0}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"113":{"tf":1.0},"222":{"tf":1.0},"270":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"69":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"42":{"tf":1.0},"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":15,"docs":{"10":{"tf":1.7320508075688772},"101":{"tf":1.0},"104":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":2.449489742783178},"208":{"tf":2.0},"232":{"tf":3.1622776601683795},"233":{"tf":1.0},"239":{"tf":2.449489742783178},"240":{"tf":2.449489742783178},"243":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"6":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":2.0}}}}}}}},"df":5,"docs":{"23":{"tf":1.7320508075688772},"267":{"tf":2.449489742783178},"268":{"tf":1.4142135623730951},"34":{"tf":1.0},"77":{"tf":2.0}},"e":{"=":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"74":{"tf":2.0}}}},"df":1,"docs":{"209":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}},"r":{"df":10,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"124":{"tf":1.0},"210":{"tf":1.4142135623730951},"217":{"tf":1.0},"23":{"tf":1.0},"254":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":2.23606797749979},"80":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":34,"docs":{"104":{"tf":1.0},"111":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":2.449489742783178},"20":{"tf":1.7320508075688772},"205":{"tf":1.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"215":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.4142135623730951},"255":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":3.7416573867739413},"84":{"tf":3.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"223":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"36":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":18,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"206":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"236":{"tf":2.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"68":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"112":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"143":{"tf":1.0}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":13,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"239":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.7320508075688772},"33":{"tf":1.0},"72":{"tf":1.0}}},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"115":{"tf":1.0},"224":{"tf":1.0}}}},"o":{"df":2,"docs":{"209":{"tf":1.0},"74":{"tf":1.7320508075688772}},"e":{"df":1,"docs":{"209":{"tf":1.7320508075688772}},"′":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"4":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"19":{"tf":1.0},"209":{"tf":2.23606797749979},"24":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"77":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"115":{"tf":1.0},"209":{"tf":1.0},"77":{"tf":2.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"274":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"98":{"tf":1.0}}}},"p":{"df":21,"docs":{"10":{"tf":1.0},"106":{"tf":3.4641016151377544},"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":2.449489742783178},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"98":{"tf":2.6457513110645907}},"u":{"df":0,"docs":{},"l":{"df":11,"docs":{"106":{"tf":2.449489742783178},"111":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"257":{"tf":1.0},"45":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"2":{"tf":1.0},"231":{"tf":1.0},"244":{"tf":1.0},"85":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":60,"docs":{"105":{"tf":2.449489742783178},"111":{"tf":2.23606797749979},"126":{"tf":1.0},"137":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.23606797749979},"230":{"tf":1.0},"239":{"tf":1.0},"60":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":12,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"124":{"tf":1.0},"170":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"272":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"274":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"2":{"df":4,"docs":{"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"52":{"tf":1.0},"84":{"tf":2.449489742783178}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"112":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"260":{"tf":1.0},"48":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":1,"docs":{"2":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":7,"docs":{"138":{"tf":2.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"81":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"105":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":19,"docs":{"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"31":{"tf":1.0},"42":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"s":{"df":30,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"209":{"tf":1.0},"245":{"tf":1.4142135623730951},"258":{"tf":1.0},"37":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"55":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":18,"docs":{"127":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.4142135623730951},"220":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":2.23606797749979},"70":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"170":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"23":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"10":{"tf":1.0},"207":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"106":{"tf":4.123105625617661},"111":{"tf":2.0}}}},"o":{"c":{".":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{">":{".":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"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":{}}},"b":{"a":{"df":0,"docs":{},"r":{".":{"1":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"2":{"df":1,"docs":{"37":{"tf":1.0}}},"3":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"23":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"38":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":44,"docs":{"116":{"tf":2.6457513110645907},"2":{"tf":1.7320508075688772},"220":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"233":{"tf":1.0},"260":{"tf":2.0},"262":{"tf":1.4142135623730951},"263":{"tf":2.0},"264":{"tf":2.23606797749979},"269":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":4.0},"38":{"tf":4.58257569495584},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.6457513110645907},"42":{"tf":3.7416573867739413},"43":{"tf":2.8284271247461903},"44":{"tf":2.449489742783178},"45":{"tf":2.449489742783178},"62":{"tf":1.7320508075688772},"66":{"tf":3.3166247903554},"69":{"tf":2.0},"7":{"tf":1.0},"71":{"tf":2.23606797749979},"72":{"tf":2.8284271247461903},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":2.0},"82":{"tf":2.6457513110645907},"83":{"tf":3.0},"84":{"tf":1.7320508075688772},"85":{"tf":2.0},"86":{"tf":2.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"'":{"df":2,"docs":{"45":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":3,"docs":{"111":{"tf":1.4142135623730951},"45":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":10,"docs":{"100":{"tf":1.0},"101":{"tf":2.6457513110645907},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"224":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"233":{"tf":1.0},"81":{"tf":1.0}},"t":{"df":20,"docs":{"1":{"tf":1.0},"105":{"tf":1.7320508075688772},"129":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"211":{"tf":2.23606797749979},"212":{"tf":2.23606797749979},"217":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":2.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"266":{"tf":4.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":2,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":5,"docs":{"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"42":{"tf":1.0},"62":{"tf":1.0},"99":{"tf":1.0}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"118":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":79,"docs":{"0":{"tf":2.0},"10":{"tf":1.0},"100":{"tf":3.7416573867739413},"101":{"tf":3.1622776601683795},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":3.0},"106":{"tf":1.7320508075688772},"107":{"tf":2.6457513110645907},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":2.6457513110645907},"113":{"tf":2.449489742783178},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.7320508075688772},"129":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":2.8284271247461903},"17":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"23":{"tf":3.0},"263":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":2.23606797749979},"3":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":2.8284271247461903},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":3.1622776601683795},"39":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":2.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"62":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":2.23606797749979},"8":{"tf":2.23606797749979},"88":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":2.6457513110645907},"99":{"tf":3.3166247903554}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":17,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"19":{"tf":2.8284271247461903},"2":{"tf":1.0},"20":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":2.23606797749979},"3":{"tf":2.0},"72":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"119":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"209":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"265":{"tf":1.0},"270":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":17,"docs":{"113":{"tf":1.0},"16":{"tf":1.4142135623730951},"20":{"tf":2.0},"207":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.4142135623730951},"223":{"tf":1.0},"228":{"tf":1.0},"246":{"tf":1.0},"265":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"3":{"tf":1.0},"4":{"tf":1.4142135623730951},"69":{"tf":1.0},"87":{"tf":1.0}},"r":{"df":47,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"106":{"tf":2.8284271247461903},"107":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":2.23606797749979},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"239":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":1.0},"266":{"tf":1.4142135623730951},"268":{"tf":1.7320508075688772},"272":{"tf":1.0},"6":{"tf":1.0},"87":{"tf":1.0}}}},"i":{"d":{"df":54,"docs":{"10":{"tf":2.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"11":{"tf":1.0},"113":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"2":{"tf":2.449489742783178},"207":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"252":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"38":{"tf":1.0},"4":{"tf":2.449489742783178},"46":{"tf":1.0},"50":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"65":{"tf":2.6457513110645907},"66":{"tf":2.23606797749979},"67":{"tf":1.0},"68":{"tf":2.6457513110645907},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":2.0},"8":{"tf":2.8284271247461903},"87":{"tf":1.4142135623730951},"88":{"tf":2.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}}}},"u":{"b":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"17":{"tf":1.7320508075688772},"8":{"tf":2.6457513110645907},"86":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":8,"docs":{"111":{"tf":1.0},"137":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"265":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{".":{"0":{"df":2,"docs":{"49":{"tf":1.0},"60":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"2":{"3":{"4":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"a":{"b":{"c":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"4":{".":{"0":{"df":0,"docs":{},"x":{"a":{"b":{"c":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{".":{"0":{"df":1,"docs":{"38":{"tf":1.0}}},"2":{".":{"3":{".":{"4":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0}}},"2":{".":{"0":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0}}},"3":{"df":3,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0}}},"4":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}},"5":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"1":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"2":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":35,"docs":{"10":{"tf":1.0},"111":{"tf":2.23606797749979},"113":{"tf":1.7320508075688772},"122":{"tf":2.23606797749979},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":2.0},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.7320508075688772},"195":{"tf":2.0},"196":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":2.0},"63":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":3.0},"66":{"tf":1.4142135623730951},"88":{"tf":1.0},"97":{"tf":2.449489742783178}}}},"t":{"df":9,"docs":{"111":{"tf":1.0},"142":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"198":{"tf":1.0},"43":{"tf":1.0},"8":{"tf":1.0}}}},"′":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"p":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"q":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"q":{"3":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"(":{"df":0,"docs":{},"v":{"0":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"":{"=":{"(":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"":{"=":{"(":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"5":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":0,"docs":{},"":{"=":{"(":{"df":0,"docs":{},"v":{"6":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"7":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"23":{"tf":1.0},"82":{"tf":1.4142135623730951}},"u":{"a":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"209":{"tf":1.7320508075688772},"77":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"]":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{")":{".":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"77":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"24":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"178":{"tf":1.0},"65":{"tf":1.0}}}}}}}}}},"r":{"+":{"1":{"5":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"r":{"3":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"r":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"r":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"}":{"df":0,"docs":{},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"a":{"7":{"df":0,"docs":{},"":{",":{"b":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"b":{"7":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"g":{"df":2,"docs":{"239":{"tf":1.0},"240":{"tf":1.0}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":22,"docs":{"105":{"tf":1.7320508075688772},"129":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.4142135623730951},"72":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":39,"docs":{"124":{"tf":1.0},"142":{"tf":1.7320508075688772},"169":{"tf":3.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"210":{"tf":2.6457513110645907},"211":{"tf":2.6457513110645907},"212":{"tf":2.0},"213":{"tf":2.449489742783178},"214":{"tf":1.0},"215":{"tf":1.7320508075688772},"216":{"tf":2.0},"217":{"tf":2.0},"218":{"tf":1.4142135623730951},"219":{"tf":3.0},"221":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.4142135623730951},"34":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":2.0},"84":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"104":{"tf":1.0},"116":{"tf":1.4142135623730951},"206":{"tf":1.0},"233":{"tf":1.7320508075688772},"238":{"tf":1.0},"245":{"tf":1.0},"68":{"tf":1.0},"85":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"4":{"tf":1.0},"87":{"tf":1.0}}}},"df":1,"docs":{"253":{"tf":1.0}}}}}},"w":{"df":2,"docs":{"33":{"tf":2.449489742783178},"50":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"14":{"tf":1.0}}}}}},"c":{"_":{"1":{"6":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":12,"docs":{"104":{"tf":1.4142135623730951},"15":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"23":{"tf":1.0},"240":{"tf":1.0},"261":{"tf":1.0},"65":{"tf":2.449489742783178},"68":{"tf":3.605551275463989},"82":{"tf":1.4142135623730951}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"111":{"tf":2.23606797749979},"112":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"df":26,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":2.449489742783178},"258":{"tf":3.0},"259":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"44":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":2.449489742783178},"8":{"tf":1.0}},"i":{"df":1,"docs":{"1":{"tf":1.0}}},"–":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"–":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"3":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"105":{"tf":1.0},"130":{"tf":1.0},"142":{"tf":1.0},"19":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"142":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":5,"docs":{"107":{"tf":1.0},"15":{"tf":1.0},"3":{"tf":1.4142135623730951},"37":{"tf":1.0},"90":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":29,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"129":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"69":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":4,"docs":{"103":{"tf":1.0},"138":{"tf":1.0},"143":{"tf":1.4142135623730951},"209":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"0":{"tf":1.0},"38":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":2.0},"220":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":1.7320508075688772},"4":{"tf":1.0},"41":{"tf":1.0},"62":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"87":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"101":{"tf":1.0},"133":{"tf":1.0},"221":{"tf":1.0},"245":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"10":{"tf":1.0},"44":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":35,"docs":{"103":{"tf":3.605551275463989},"104":{"tf":1.0},"106":{"tf":4.47213595499958},"111":{"tf":3.7416573867739413},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"123":{"tf":2.23606797749979},"125":{"tf":1.7320508075688772},"138":{"tf":3.0},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"259":{"tf":1.0},"99":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"103":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.7320508075688772},"55":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"232":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0}}}},"df":2,"docs":{"1":{"tf":1.0},"212":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"v":{"df":9,"docs":{"104":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"169":{"tf":1.4142135623730951},"243":{"tf":1.0},"245":{"tf":1.0}}}},"i":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"130":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"220":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.0},"274":{"tf":1.0},"88":{"tf":1.0}}}},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":2.23606797749979}}}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"178":{"tf":1.0},"65":{"tf":1.0},"77":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}},"df":38,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":2.23606797749979},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":2.0},"259":{"tf":1.0},"261":{"tf":1.7320508075688772},"31":{"tf":1.0},"44":{"tf":1.4142135623730951},"8":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":31,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":2.23606797749979},"108":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":3.7416573867739413},"112":{"tf":2.23606797749979},"117":{"tf":2.6457513110645907},"118":{"tf":2.8284271247461903},"123":{"tf":1.4142135623730951},"126":{"tf":3.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"131":{"tf":2.0},"135":{"tf":1.7320508075688772},"140":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"51":{"tf":2.0},"66":{"tf":2.0},"86":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{".":{"1":{"0":{"df":1,"docs":{"48":{"tf":1.0}}},"6":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"101":{"tf":1.0},"106":{"tf":2.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":2.0},"118":{"tf":2.0},"144":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"246":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":7,"docs":{"111":{"tf":1.0},"13":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"240":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"df":10,"docs":{"16":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":3.1622776601683795},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0}}},"o":{"df":1,"docs":{"22":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":41,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":2.0},"118":{"tf":2.6457513110645907},"126":{"tf":2.23606797749979},"128":{"tf":1.0},"129":{"tf":1.0},"17":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"233":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"111":{"tf":1.0},"128":{"tf":1.4142135623730951},"138":{"tf":1.0},"170":{"tf":1.0},"224":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"58":{"tf":2.8284271247461903},"63":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":2.449489742783178},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"215":{"tf":1.0},"219":{"tf":1.7320508075688772},"224":{"tf":1.0},"228":{"tf":2.23606797749979},"229":{"tf":2.0},"252":{"tf":1.0},"259":{"tf":1.4142135623730951},"263":{"tf":1.0},"271":{"tf":2.6457513110645907},"272":{"tf":1.7320508075688772},"41":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":45,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"119":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"170":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"230":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"272":{"tf":1.0},"274":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":12,"docs":{"2":{"tf":1.0},"206":{"tf":1.4142135623730951},"220":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"258":{"tf":1.0},"68":{"tf":2.23606797749979},"88":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"2":{"tf":1.0},"233":{"tf":1.4142135623730951},"44":{"tf":2.0},"45":{"tf":1.0}}}},"t":{"df":2,"docs":{"120":{"tf":1.0},"42":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"207":{"tf":1.0},"223":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"22":{"tf":1.7320508075688772},"274":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":17,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.7320508075688772},"111":{"tf":2.449489742783178},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":2.449489742783178},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"144":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"111":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"226":{"tf":1.0},"245":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":11,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":2.23606797749979},"229":{"tf":1.0},"252":{"tf":1.0},"271":{"tf":2.449489742783178},"272":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}}}}}},"t":{"df":55,"docs":{"111":{"tf":1.0},"137":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"31":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"2":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"50":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":53,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.449489742783178},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":1.7320508075688772},"118":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"246":{"tf":2.23606797749979},"247":{"tf":2.0},"25":{"tf":1.0},"252":{"tf":1.0},"265":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.4142135623730951},"55":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.449489742783178},"9":{"tf":1.0},"97":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"35":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"111":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":19,"docs":{"104":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"66":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}},"e":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"111":{"tf":1.0},"117":{"tf":1.0},"138":{"tf":1.0}}},"t":{"df":2,"docs":{"224":{"tf":1.0},"31":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"a":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":1,"docs":{"268":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":29,"docs":{"106":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.8284271247461903},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":2.0},"137":{"tf":1.7320508075688772},"141":{"tf":2.0},"146":{"tf":2.449489742783178},"147":{"tf":1.0},"154":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"243":{"tf":1.7320508075688772},"39":{"tf":1.0},"45":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"68":{"tf":1.0},"84":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0}}}}},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"0":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"1":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"2":{",":{"df":0,"docs":{},"i":{"df":2,"docs":{"129":{"tf":1.0},"268":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}}},"m":{"'":{"df":2,"docs":{"262":{"tf":1.0},"263":{"tf":1.0}}},"df":14,"docs":{"116":{"tf":1.7320508075688772},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"260":{"tf":2.0},"261":{"tf":2.0},"262":{"tf":2.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.0},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"75":{"tf":1.0}}}}},"df":29,"docs":{"100":{"tf":1.0},"105":{"tf":2.23606797749979},"107":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":1.0},"2":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":2.23606797749979},"232":{"tf":2.23606797749979},"233":{"tf":2.23606797749979},"240":{"tf":2.0},"243":{"tf":1.0},"245":{"tf":3.1622776601683795},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"41":{"tf":2.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"75":{"tf":3.0},"8":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":2.0},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"19":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951}}}}}},"n":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":10,"docs":{"166":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"240":{"tf":2.449489742783178},"244":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"'":{"df":1,"docs":{"251":{"tf":1.0}}},"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"2":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"6":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":67,"docs":{"103":{"tf":1.0},"104":{"tf":2.449489742783178},"105":{"tf":3.0},"106":{"tf":4.0},"110":{"tf":1.7320508075688772},"111":{"tf":4.123105625617661},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":3.3166247903554},"118":{"tf":2.8284271247461903},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":2.449489742783178},"126":{"tf":3.1622776601683795},"128":{"tf":1.0},"129":{"tf":3.872983346207417},"130":{"tf":2.449489742783178},"131":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"211":{"tf":2.23606797749979},"213":{"tf":2.449489742783178},"217":{"tf":2.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"223":{"tf":3.1622776601683795},"226":{"tf":1.0},"227":{"tf":2.0},"231":{"tf":1.4142135623730951},"233":{"tf":2.6457513110645907},"234":{"tf":4.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"244":{"tf":2.23606797749979},"245":{"tf":3.0},"246":{"tf":3.0},"247":{"tf":2.8284271247461903},"250":{"tf":2.449489742783178},"251":{"tf":2.449489742783178},"252":{"tf":2.0},"254":{"tf":2.6457513110645907},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.7320508075688772},"259":{"tf":2.0},"261":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":3.1622776601683795},"268":{"tf":2.23606797749979},"87":{"tf":1.7320508075688772},"97":{"tf":1.0}}}},"p":{"c":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":9,"docs":{"113":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":24,"docs":{"105":{"tf":1.7320508075688772},"112":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":2.449489742783178},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"211":{"tf":2.23606797749979},"212":{"tf":2.23606797749979},"217":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.7320508075688772},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":4.0},"267":{"tf":1.0},"271":{"tf":1.7320508075688772},"32":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"37":{"tf":1.0},"66":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"11":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"r":{")":{"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"3":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{",":{"d":{")":{")":{"df":0,"docs":{},"r":{"df":0,"docs":{},"′":{"df":0,"docs":{},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{",":{"d":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"0":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":9,"docs":{"161":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":23,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"126":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.4142135623730951},"217":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.4142135623730951},"258":{"tf":2.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},",":{".":{".":{".":{",":{"df":0,"docs":{},"s":{"1":{"4":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},".":{".":{".":{"df":0,"docs":{},"s":{"1":{"5":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"0":{"df":3,"docs":{"212":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"263":{"tf":1.0}}},"1":{"df":3,"docs":{"212":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"263":{"tf":1.0}}},"2":{"4":{"8":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"=":{"0":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"1":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"3":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"2":{"4":{"8":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"2":{"4":{"8":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"":{"=":{"0":{"df":2,"docs":{"159":{"tf":1.0},"165":{"tf":1.0}}},"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"′":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"166":{"tf":1.0},"175":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"182":{"tf":1.0}}},"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"2":{"df":4,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"2":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"+":{"1":{")":{"=":{"0":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{")":{"=":{"0":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"=":{"0":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"158":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"184":{"tf":1.0},"190":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"⋅":{"(":{"df":0,"docs":{},"f":{"a":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"1":{"2":{"df":1,"docs":{"204":{"tf":1.0}},"":{"+":{"1":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":3,"docs":{"212":{"tf":1.0},"218":{"tf":1.0},"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"s":{"1":{"2":{"df":0,"docs":{},"":{"+":{"2":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"5":{"df":2,"docs":{"131":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951}}},"df":10,"docs":{"162":{"tf":1.0},"163":{"tf":1.0},"212":{"tf":1.4142135623730951},"217":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.4142135623730951},"258":{"tf":2.0},"259":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"s":{"1":{"5":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"0":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"212":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"⋅":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"′":{"df":0,"docs":{},"":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":7,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"1":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"≤":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}}}}},"2":{"df":5,"docs":{"223":{"tf":1.4142135623730951},"227":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0}},"":{"=":{"1":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{")":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"∗":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"−":{"df":0,"docs":{},"s":{"=":{"0":{"df":1,"docs":{"249":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"3":{"df":1,"docs":{"227":{"tf":1.0}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"∗":{"2":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{"+":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"=":{"0":{"df":1,"docs":{"249":{"tf":1.0}}},"1":{"df":1,"docs":{"249":{"tf":1.0}}},"df":0,"docs":{}},"_":{"1":{"df":1,"docs":{"259":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":46,"docs":{"101":{"tf":1.0},"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"127":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.4142135623730951},"150":{"tf":1.0},"184":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.7320508075688772},"233":{"tf":1.7320508075688772},"240":{"tf":2.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":2.0},"249":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":2.0},"256":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":2.6457513110645907},"259":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"267":{"tf":1.0},"271":{"tf":2.0},"272":{"tf":1.4142135623730951},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"60":{"tf":2.23606797749979},"89":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":37,"docs":{"133":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"243":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"202":{"tf":1.0},"203":{"tf":1.0},"24":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}},"c":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"110":{"tf":1.0},"27":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"138":{"tf":1.0},"274":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"141":{"tf":1.0},"196":{"tf":2.0},"64":{"tf":1.0}}}}}}},"df":3,"docs":{"23":{"tf":1.0},"248":{"tf":1.0},"65":{"tf":2.449489742783178}},"e":{"c":{"df":2,"docs":{"20":{"tf":2.8284271247461903},"21":{"tf":2.0}},"o":{"df":0,"docs":{},"n":{"d":{"df":25,"docs":{"105":{"tf":1.7320508075688772},"108":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"211":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"245":{"tf":1.7320508075688772},"254":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.7320508075688772},"2":{"tf":1.0},"8":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":36,"docs":{"100":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":2.23606797749979},"123":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"217":{"tf":1.0},"219":{"tf":1.0},"232":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"25":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"37":{"tf":1.0},"4":{"tf":1.7320508075688772},"42":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"1":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"266":{"tf":1.4142135623730951},"274":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"17":{"tf":1.0},"209":{"tf":1.0},"62":{"tf":1.0},"71":{"tf":1.0}},"n":{"df":4,"docs":{"138":{"tf":1.0},"20":{"tf":1.0},"223":{"tf":1.0},"89":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"209":{"tf":1.4142135623730951},"221":{"tf":1.0},"273":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"226":{"tf":1.0},"233":{"tf":1.4142135623730951},"245":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0},"47":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"224":{"tf":1.0}}},"df":25,"docs":{"104":{"tf":1.7320508075688772},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"169":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.7320508075688772},"223":{"tf":1.7320508075688772},"224":{"tf":2.0},"226":{"tf":1.7320508075688772},"227":{"tf":4.47213595499958},"230":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":3.4641016151377544},"242":{"tf":1.7320508075688772},"245":{"tf":1.0},"249":{"tf":2.0},"251":{"tf":1.0},"258":{"tf":2.0},"259":{"tf":1.0},"262":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"106":{"tf":1.7320508075688772},"111":{"tf":1.0},"168":{"tf":1.0},"195":{"tf":1.0},"240":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"63":{"tf":1.0},"90":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"d":{"df":7,"docs":{"116":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"245":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.0}}},"t":{"df":9,"docs":{"116":{"tf":1.0},"219":{"tf":1.4142135623730951},"224":{"tf":1.0},"228":{"tf":2.0},"229":{"tf":1.0},"245":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":2.23606797749979},"87":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"2":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"36":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":18,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"18":{"tf":1.0},"246":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"88":{"tf":1.0},"97":{"tf":2.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"104":{"tf":2.0},"106":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.4142135623730951},"220":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"35":{"tf":1.0},"69":{"tf":1.0}}}},"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"v":{"df":4,"docs":{"103":{"tf":1.0},"142":{"tf":1.0},"245":{"tf":1.0},"6":{"tf":1.0}}}},"t":{"df":104,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.23606797749979},"105":{"tf":2.0},"106":{"tf":3.605551275463989},"11":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":2.6457513110645907},"113":{"tf":2.23606797749979},"114":{"tf":1.4142135623730951},"116":{"tf":2.8284271247461903},"117":{"tf":2.0},"118":{"tf":2.0},"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":2.449489742783178},"124":{"tf":2.0},"125":{"tf":2.23606797749979},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":2.449489742783178},"132":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"138":{"tf":2.23606797749979},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"223":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":2.449489742783178},"234":{"tf":4.358898943540674},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"242":{"tf":2.0},"243":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":2.0},"258":{"tf":3.0},"259":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"274":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"100":{"tf":1.0},"246":{"tf":1.4142135623730951}}},"r":{"df":9,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"145":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"33":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"88":{"tf":1.0}}}}}},"h":{"a":{"2":{"5":{"6":{"df":2,"docs":{"72":{"tf":1.0},"80":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.0},"230":{"tf":1.0},"245":{"tf":1.0},"69":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":45,"docs":{"127":{"tf":1.0},"130":{"tf":2.8284271247461903},"131":{"tf":2.6457513110645907},"132":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"135":{"tf":2.6457513110645907},"137":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"140":{"tf":2.0},"141":{"tf":2.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":2.449489742783178},"147":{"tf":3.1622776601683795},"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"81":{"tf":1.0},"84":{"tf":4.123105625617661}}}},"p":{"df":1,"docs":{"2":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":4,"docs":{"100":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"w":{"df":2,"docs":{"138":{"tf":1.0},"169":{"tf":1.0}},"n":{"df":15,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":2.449489742783178},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"138":{"tf":1.0},"246":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"272":{"tf":1.0},"89":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"i":{"+":{"1":{"2":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"8":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"187":{"tf":1.0},"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"162":{"tf":1.0},"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"208":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":2.0},"245":{"tf":3.1622776601683795},"269":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"259":{"tf":1.0},"263":{"tf":1.0}}}},"df":1,"docs":{"238":{"tf":1.0}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"221":{"tf":1.0}}}}}}},"df":13,"docs":{"111":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951},"258":{"tf":1.0},"33":{"tf":1.0},"81":{"tf":1.0}}},"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":2.0},"118":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.4142135623730951},"44":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"115":{"tf":1.0},"147":{"tf":1.0},"184":{"tf":1.0},"210":{"tf":1.0},"257":{"tf":1.0},"43":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"112":{"tf":1.0},"18":{"tf":1.0},"212":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.4142135623730951},"245":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.4142135623730951},"33":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"211":{"tf":1.0},"254":{"tf":1.0}}}}},"i":{"c":{"df":3,"docs":{"170":{"tf":1.0},"222":{"tf":1.0},"247":{"tf":1.0}}},"df":6,"docs":{"111":{"tf":1.4142135623730951},"130":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"35":{"tf":1.0},"87":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":24,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"33":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"240":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":44,"docs":{"103":{"tf":1.4142135623730951},"105":{"tf":2.449489742783178},"11":{"tf":1.0},"111":{"tf":3.1622776601683795},"112":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"134":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"20":{"tf":2.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"219":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":2.23606797749979},"25":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":2.23606797749979},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"271":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.0},"97":{"tf":3.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"257":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":8,"docs":{"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":2.0},"209":{"tf":1.7320508075688772},"70":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"+":{"1":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"187":{"tf":1.0},"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":6,"docs":{"104":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"49":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951}}},"w":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.0},"232":{"tf":1.0},"266":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"246":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"105":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"211":{"tf":1.0},"23":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"19":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":7,"docs":{"2":{"tf":1.0},"209":{"tf":1.4142135623730951},"23":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"3":{"tf":1.0},"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"232":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0}}}}},"p":{"=":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":7,"docs":{"130":{"tf":1.0},"2":{"tf":1.0},"221":{"tf":1.0},"25":{"tf":1.0},"266":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":2.23606797749979}}}},"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":25,"docs":{"101":{"tf":3.1622776601683795},"103":{"tf":2.0},"105":{"tf":2.0},"106":{"tf":2.6457513110645907},"107":{"tf":1.4142135623730951},"111":{"tf":5.385164807134504},"112":{"tf":3.1622776601683795},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":2.23606797749979},"120":{"tf":2.449489742783178},"121":{"tf":1.4142135623730951},"122":{"tf":3.0},"123":{"tf":2.23606797749979},"124":{"tf":2.0},"125":{"tf":1.7320508075688772},"126":{"tf":2.23606797749979},"143":{"tf":1.0},"2":{"tf":1.0},"41":{"tf":1.0},"97":{"tf":2.449489742783178},"99":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"10":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"103":{"tf":1.0},"120":{"tf":2.23606797749979},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"220":{"tf":1.4142135623730951},"228":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"44":{"tf":1.4142135623730951},"68":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":26,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"16":{"tf":1.0},"209":{"tf":1.0},"220":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"232":{"tf":1.0},"233":{"tf":1.0},"244":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.7320508075688772},"36":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":35,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"120":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":2.23606797749979},"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"226":{"tf":1.0},"261":{"tf":1.0},"270":{"tf":1.4142135623730951},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":3.7416573867739413},"88":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"2":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"101":{"tf":2.23606797749979},"103":{"tf":1.0},"106":{"tf":2.23606797749979},"109":{"tf":2.0},"112":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"=":{"0":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"′":{"=":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"δ":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"33":{"tf":1.0}}}},"l":{"df":2,"docs":{"1":{"tf":1.0},"33":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"75":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"4":{")":{",":{"a":{"d":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}}}},"df":158,"docs":{"10":{"tf":2.0},"101":{"tf":1.4142135623730951},"105":{"tf":2.449489742783178},"106":{"tf":3.4641016151377544},"109":{"tf":1.0},"110":{"tf":3.872983346207417},"111":{"tf":2.0},"112":{"tf":3.872983346207417},"113":{"tf":4.123105625617661},"114":{"tf":1.7320508075688772},"117":{"tf":4.123105625617661},"118":{"tf":2.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":4.242640687119285},"128":{"tf":3.3166247903554},"129":{"tf":2.6457513110645907},"130":{"tf":3.3166247903554},"131":{"tf":3.1622776601683795},"132":{"tf":1.4142135623730951},"133":{"tf":2.0},"134":{"tf":3.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":3.605551275463989},"138":{"tf":1.0},"139":{"tf":4.795831523312719},"140":{"tf":2.8284271247461903},"141":{"tf":4.242640687119285},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":2.23606797749979},"151":{"tf":2.0},"152":{"tf":2.23606797749979},"153":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":1.0},"156":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":2.0},"159":{"tf":2.0},"160":{"tf":2.0},"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":2.0},"164":{"tf":2.0},"165":{"tf":2.0},"166":{"tf":2.23606797749979},"167":{"tf":3.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":2.0},"172":{"tf":2.23606797749979},"173":{"tf":2.0},"174":{"tf":2.0},"175":{"tf":2.0},"176":{"tf":2.0},"177":{"tf":2.0},"178":{"tf":2.0},"179":{"tf":2.0},"18":{"tf":1.4142135623730951},"180":{"tf":2.0},"181":{"tf":2.23606797749979},"182":{"tf":2.23606797749979},"183":{"tf":2.23606797749979},"184":{"tf":3.3166247903554},"185":{"tf":2.23606797749979},"186":{"tf":2.23606797749979},"187":{"tf":2.23606797749979},"188":{"tf":2.23606797749979},"189":{"tf":2.23606797749979},"190":{"tf":3.0},"191":{"tf":2.8284271247461903},"192":{"tf":2.449489742783178},"193":{"tf":2.449489742783178},"194":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"196":{"tf":2.449489742783178},"197":{"tf":2.449489742783178},"198":{"tf":2.6457513110645907},"199":{"tf":1.4142135623730951},"200":{"tf":2.23606797749979},"201":{"tf":2.23606797749979},"202":{"tf":2.449489742783178},"203":{"tf":2.23606797749979},"204":{"tf":2.449489742783178},"205":{"tf":1.7320508075688772},"206":{"tf":2.449489742783178},"207":{"tf":2.0},"208":{"tf":2.0},"209":{"tf":3.3166247903554},"215":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.7320508075688772},"222":{"tf":1.0},"223":{"tf":2.0},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":1.7320508075688772},"24":{"tf":1.0},"245":{"tf":1.7320508075688772},"252":{"tf":1.0},"259":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"28":{"tf":2.8284271247461903},"31":{"tf":2.0},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.0},"45":{"tf":2.8284271247461903},"47":{"tf":1.0},"49":{"tf":2.23606797749979},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"6":{"tf":3.0},"60":{"tf":5.291502622129181},"61":{"tf":1.0},"62":{"tf":2.6457513110645907},"63":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":5.0990195135927845},"66":{"tf":4.123105625617661},"68":{"tf":1.0},"74":{"tf":2.8284271247461903},"75":{"tf":2.449489742783178},"79":{"tf":2.0},"8":{"tf":2.449489742783178},"80":{"tf":2.0},"81":{"tf":2.23606797749979},"82":{"tf":3.872983346207417},"83":{"tf":4.69041575982343},"84":{"tf":3.0},"85":{"tf":1.7320508075688772},"86":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"9":{"tf":2.449489742783178},"93":{"tf":2.0},"94":{"tf":2.8284271247461903},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":21,"docs":{"32":{"tf":1.4142135623730951},"38":{"tf":1.0},"69":{"tf":2.449489742783178},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"258":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":9,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"274":{"tf":4.123105625617661},"4":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":95,"docs":{"105":{"tf":2.23606797749979},"107":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":1.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":2.0},"127":{"tf":1.0},"137":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":2.23606797749979},"233":{"tf":1.0},"234":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"245":{"tf":2.0},"261":{"tf":1.0},"271":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"74":{"tf":1.7320508075688772},"8":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}}}},"t":{"df":1,"docs":{"16":{"tf":1.4142135623730951}},"e":{"df":43,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":2.23606797749979},"106":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":2.23606797749979},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"150":{"tf":1.4142135623730951},"172":{"tf":1.0},"18":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":2.23606797749979},"233":{"tf":2.449489742783178},"236":{"tf":2.449489742783178},"237":{"tf":2.0},"238":{"tf":2.6457513110645907},"239":{"tf":2.6457513110645907},"24":{"tf":1.0},"240":{"tf":2.6457513110645907},"243":{"tf":1.4142135623730951},"244":{"tf":2.449489742783178},"245":{"tf":3.3166247903554},"28":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"2":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":3,"docs":{"255":{"tf":1.0},"256":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"y":{"df":6,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"217":{"tf":1.0},"249":{"tf":1.0},"262":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"6":{"4":{"df":2,"docs":{"72":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"f":{"4":{"df":2,"docs":{"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"76":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"3":{"df":2,"docs":{"72":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":2,"docs":{"72":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"u":{"6":{"4":{"df":7,"docs":{"38":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"71":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"72":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"72":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"86":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"255":{"tf":1.0}}}},"p":{"df":16,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":2.449489742783178},"112":{"tf":2.23606797749979},"130":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":2.23606797749979},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"242":{"tf":1.0},"267":{"tf":1.0},"99":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"110":{"tf":1.0},"137":{"tf":1.0},"212":{"tf":1.0},"255":{"tf":1.0},"63":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"6":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"10":{"tf":1.7320508075688772},"114":{"tf":1.0},"128":{"tf":1.0},"17":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"265":{"tf":1.0},"267":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"6":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":2.23606797749979},"79":{"tf":2.0},"80":{"tf":2.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"219":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":2.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":16,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"17":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"233":{"tf":1.0},"255":{"tf":1.0},"4":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"16":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"52":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"34":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":9,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"137":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"262":{"tf":1.0},"37":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"82":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"65":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"h":{"df":21,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"121":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.7320508075688772},"233":{"tf":1.0},"245":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"29":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"170":{"tf":1.0},"199":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":4,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"207":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"17":{"tf":2.23606797749979},"2":{"tf":1.4142135623730951},"55":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"138":{"tf":1.0},"2":{"tf":2.449489742783178},"212":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"270":{"tf":1.0},"3":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"39":{"tf":1.4142135623730951},"7":{"tf":1.0},"88":{"tf":1.0}}}},"s":{"df":2,"docs":{"239":{"tf":1.0},"240":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":26,"docs":{"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"114":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"218":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"250":{"tf":2.0},"254":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":2.0},"264":{"tf":1.0},"9":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"p":{".":{"1":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"w":{"df":3,"docs":{"139":{"tf":1.0},"189":{"tf":2.0},"60":{"tf":1.0}}}},"df":11,"docs":{"139":{"tf":1.0},"185":{"tf":2.23606797749979},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"60":{"tf":2.6457513110645907}},"w":{".":{"1":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":2,"docs":{"139":{"tf":1.0},"187":{"tf":2.0}}},"3":{"df":2,"docs":{"139":{"tf":1.0},"188":{"tf":2.0}}},"df":3,"docs":{"139":{"tf":1.0},"186":{"tf":2.0},"60":{"tf":1.4142135623730951}}}},"y":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"246":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"33":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":2.0},"144":{"tf":1.0},"220":{"tf":1.0},"229":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":2.6457513110645907},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"64":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":3.1622776601683795},"99":{"tf":1.0}},"l":{".":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"245":{"tf":1.0}}},"df":21,"docs":{"111":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"149":{"tf":2.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"169":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"4":{"tf":1.4142135623730951},"72":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"c":{"'":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"⋅":{"(":{"df":0,"docs":{},"z":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"1":{"6":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"2":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{")":{")":{"=":{"0":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"0":{"df":4,"docs":{"105":{"tf":1.7320508075688772},"129":{"tf":1.0},"131":{"tf":1.0},"170":{"tf":1.0}},"":{",":{"df":0,"docs":{},"t":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"df":5,"docs":{"105":{"tf":1.4142135623730951},"129":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"170":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"t":{"4":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":6,"docs":{"105":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"170":{"tf":1.0}}},"3":{"df":1,"docs":{"170":{"tf":1.0}}},"5":{"df":1,"docs":{"105":{"tf":1.0}}},"6":{"df":1,"docs":{"105":{"tf":1.0}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"77":{"tf":2.0}}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":51,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":6.324555320336759},"106":{"tf":5.291502622129181},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":3.0},"111":{"tf":4.898979485566356},"112":{"tf":4.358898943540674},"113":{"tf":2.6457513110645907},"115":{"tf":2.0},"117":{"tf":4.242640687119285},"118":{"tf":4.242640687119285},"119":{"tf":1.4142135623730951},"126":{"tf":4.47213595499958},"128":{"tf":1.0},"129":{"tf":3.605551275463989},"130":{"tf":2.8284271247461903},"131":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":3.0},"17":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.4142135623730951},"221":{"tf":1.0},"230":{"tf":3.1622776601683795},"231":{"tf":2.449489742783178},"233":{"tf":3.0},"244":{"tf":1.0},"245":{"tf":3.3166247903554},"246":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"248":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":3.3166247903554},"265":{"tf":1.7320508075688772},"267":{"tf":3.0},"268":{"tf":2.0},"269":{"tf":3.3166247903554},"50":{"tf":1.0},"55":{"tf":1.4142135623730951},"67":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"268":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"21":{"tf":1.0},"55":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.449489742783178}},"n":{"df":2,"docs":{"101":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"13":{"tf":1.0},"15":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"24":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"35":{"tf":1.4142135623730951},"7":{"tf":1.0},"71":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"101":{"tf":1.0},"13":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0}}}}},"df":5,"docs":{"256":{"tf":1.4142135623730951},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0},"64":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"104":{"tf":1.0},"116":{"tf":1.7320508075688772},"118":{"tf":2.23606797749979},"127":{"tf":1.0},"18":{"tf":1.0},"206":{"tf":1.0},"34":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"37":{"tf":1.0},"45":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"274":{"tf":1.0},"51":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"t":{"'":{"df":3,"docs":{"271":{"tf":1.0},"272":{"tf":1.0},"55":{"tf":1.0}}},":":{"1":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"111":{"tf":1.0},"184":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"230":{"tf":1.0},"71":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"116":{"tf":1.0},"223":{"tf":1.7320508075688772},"262":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}},"g":{"df":3,"docs":{"2":{"tf":1.0},"24":{"tf":1.4142135623730951},"60":{"tf":1.0}}}},"r":{"d":{"df":10,"docs":{"105":{"tf":1.4142135623730951},"112":{"tf":1.0},"138":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"23":{"tf":1.0},"245":{"tf":1.4142135623730951},"35":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"215":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0},"270":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"111":{"tf":1.0},"212":{"tf":1.0}},"t":{"df":6,"docs":{"105":{"tf":1.7320508075688772},"111":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.0},"232":{"tf":1.0},"266":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":9,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"123":{"tf":1.0},"143":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.4142135623730951},"42":{"tf":1.0},"6":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"23":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.0},"249":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}}}}}}}}},"u":{"df":77,"docs":{"100":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":2.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"138":{"tf":2.449489742783178},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"147":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"238":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.7320508075688772},"271":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.7320508075688772},"7":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":2.0},"98":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":1,"docs":{"238":{"tf":1.0}},"e":{"df":2,"docs":{"233":{"tf":1.0},"245":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":25,"docs":{"105":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"129":{"tf":1.0},"19":{"tf":3.0},"20":{"tf":2.449489742783178},"209":{"tf":1.0},"21":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"226":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951},"263":{"tf":1.0},"267":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":6,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"211":{"tf":1.0},"240":{"tf":1.4142135623730951},"245":{"tf":1.0},"65":{"tf":1.0},"87":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"116":{"tf":1.0}}},"l":{"df":12,"docs":{"16":{"tf":1.0},"22":{"tf":2.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0}}}},"p":{"df":71,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":3.3166247903554},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.6457513110645907},"114":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"42":{"tf":1.7320508075688772},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":3.1622776601683795},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":2.449489742783178},"68":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"93":{"tf":2.0},"94":{"tf":2.8284271247461903},"98":{"tf":2.23606797749979}}},"t":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"106":{"tf":1.0},"111":{"tf":2.0},"138":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"258":{"tf":1.0},"37":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":49,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"105":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":2.0},"128":{"tf":1.0},"136":{"tf":1.7320508075688772},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":2.6457513110645907},"218":{"tf":1.4142135623730951},"219":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":4.0},"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"230":{"tf":1.0},"233":{"tf":2.23606797749979},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"258":{"tf":2.23606797749979},"261":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"265":{"tf":2.8284271247461903},"266":{"tf":3.0},"267":{"tf":1.0},"268":{"tf":1.7320508075688772},"271":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":2.0}}},"k":{"df":16,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"117":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.4142135623730951},"260":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"89":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"19":{"tf":1.0},"258":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":58,"docs":{"113":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"223":{"tf":2.6457513110645907},"231":{"tf":1.4142135623730951},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"41":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":24,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"17":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":2.0},"220":{"tf":1.0},"239":{"tf":2.23606797749979},"240":{"tf":2.449489742783178},"33":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":3.3166247903554},"75":{"tf":3.3166247903554},"77":{"tf":1.0},"8":{"tf":2.449489742783178},"88":{"tf":1.0},"90":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"255":{"tf":1.0}}}}},"df":4,"docs":{"213":{"tf":1.0},"35":{"tf":1.0},"66":{"tf":1.0},"98":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"223":{"tf":1.0},"252":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"42":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"106":{"tf":3.605551275463989},"111":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"135":{"tf":1.4142135623730951},"17":{"tf":1.0},"77":{"tf":1.7320508075688772}},"e":{".":{"2":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}},"n":{"df":4,"docs":{"112":{"tf":1.0},"138":{"tf":1.0},"169":{"tf":1.0},"36":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"233":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"'":{"df":1,"docs":{"175":{"tf":1.0}}},"df":64,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"115":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"148":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":2.0},"227":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":2.8284271247461903},"259":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"269":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":3.872983346207417},"83":{"tf":4.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":10,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.0},"234":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"266":{"tf":1.0},"270":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}}}},"←":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"u":{"3":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"2":{"a":{"d":{"d":{"3":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"174":{"tf":2.0}}},"df":2,"docs":{"142":{"tf":1.0},"173":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"140":{"tf":1.0},"179":{"tf":2.0},"248":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"1":{"df":1,"docs":{"56":{"tf":1.0}}},"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":2,"docs":{"142":{"tf":1.0},"172":{"tf":2.0}}},"df":1,"docs":{"56":{"tf":1.0}},"w":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{".":{"b":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"27":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"57":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"28":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"u":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"142":{"tf":1.0},"178":{"tf":2.0}}}}},"df":24,"docs":{"140":{"tf":1.4142135623730951},"142":{"tf":3.3166247903554},"168":{"tf":2.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"2":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.0}},"m":{"a":{"d":{"d":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"177":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"142":{"tf":1.0},"176":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"3":{"df":1,"docs":{"57":{"tf":1.0}}},"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"d":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"171":{"tf":2.0},"56":{"tf":1.0}}}}}},"u":{"b":{"df":2,"docs":{"142":{"tf":1.0},"175":{"tf":2.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}},"w":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"57":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"3":{"df":1,"docs":{"57":{"tf":1.0}}},"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"d":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"140":{"tf":1.0},"180":{"tf":2.0},"248":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0}}}}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"65":{"tf":1.0},"81":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"1":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"+":{"df":0,"docs":{},"α":{"4":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"z":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"d":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"213":{"tf":1.0},"252":{"tf":1.7320508075688772},"263":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"b":{"df":0,"docs":{},"h":{"+":{"df":0,"docs":{},"α":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"5":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":1,"docs":{"252":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"tf":1.4142135623730951}},"":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{",":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{",":{"2":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"4":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"+":{"df":0,"docs":{},"v":{"df":2,"docs":{"200":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"113":{"tf":2.23606797749979},"167":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"238":{"tf":1.0},"259":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"55":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951}},"e":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"82":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"83":{"tf":1.0}},"z":{"df":1,"docs":{"83":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"83":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"242":{"tf":1.0},"244":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"55":{"tf":1.0},"57":{"tf":3.605551275463989},"58":{"tf":2.23606797749979},"59":{"tf":2.449489742783178},"77":{"tf":1.0},"81":{"tf":1.0}}}}},"r":{"df":9,"docs":{"135":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"19":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"38":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"82":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":2,"docs":{"24":{"tf":1.0},"31":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":32,"docs":{"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"252":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"272":{"tf":1.0},"89":{"tf":1.0},"99":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"234":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"87":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":7,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"127":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":8,"docs":{"168":{"tf":1.0},"2":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":2.23606797749979},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"120":{"tf":1.0},"23":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"139":{"tf":1.0},"143":{"tf":2.8284271247461903}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":22,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"232":{"tf":2.23606797749979},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"240":{"tf":2.0},"243":{"tf":1.0},"245":{"tf":2.23606797749979},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":17,"docs":{"105":{"tf":1.4142135623730951},"111":{"tf":2.0},"138":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"238":{"tf":1.0},"258":{"tf":1.7320508075688772},"6":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"77":{"tf":1.0},"97":{"tf":2.0},"98":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"266":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"32":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"df":136,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":1.0},"105":{"tf":2.0},"106":{"tf":2.449489742783178},"107":{"tf":1.0},"11":{"tf":2.0},"111":{"tf":3.0},"113":{"tf":2.0},"115":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":1.0},"118":{"tf":1.7320508075688772},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":3.0},"14":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"147":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"199":{"tf":1.0},"2":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"210":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":1.0},"220":{"tf":2.0},"223":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":2.449489742783178},"233":{"tf":3.4641016151377544},"234":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":2.0},"243":{"tf":1.0},"245":{"tf":3.4641016151377544},"246":{"tf":1.4142135623730951},"247":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.449489742783178},"266":{"tf":1.7320508075688772},"267":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":2.0},"38":{"tf":2.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":2.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"77":{"tf":2.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.872983346207417},"87":{"tf":1.7320508075688772},"88":{"tf":3.0},"89":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.0},"99":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"u":{"6":{"4":{"df":2,"docs":{"38":{"tf":1.4142135623730951},"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"97":{"tf":1.0}}},"df":60,"docs":{"17":{"tf":1.0},"2":{"tf":1.7320508075688772},"23":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"d":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"72":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"52":{"tf":1.0}}}}},"v":{"0":{".":{"7":{"df":2,"docs":{"1":{"tf":1.0},"11":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"258":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"v":{"7":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"3":{"df":3,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"7":{"df":1,"docs":{"130":{"tf":1.0}}},"8":{"df":1,"docs":{"130":{"tf":1.0}}},"df":3,"docs":{"126":{"tf":1.0},"130":{"tf":1.0},"258":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"2":{"df":3,"docs":{"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"258":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"258":{"tf":1.0}}},"8":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"v":{"1":{"5":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":2,"docs":{"200":{"tf":1.0},"202":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"264":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"1":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"1":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":2,"docs":{"201":{"tf":1.0},"203":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"245":{"tf":1.0}},"l":{"df":2,"docs":{"166":{"tf":1.4142135623730951},"255":{"tf":2.6457513110645907}},"i":{"d":{"df":13,"docs":{"107":{"tf":1.0},"170":{"tf":2.6457513110645907},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"25":{"tf":1.0},"60":{"tf":2.8284271247461903},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":157,"docs":{"10":{"tf":2.0},"100":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":3.605551275463989},"105":{"tf":4.0},"106":{"tf":4.795831523312719},"110":{"tf":1.7320508075688772},"111":{"tf":5.477225575051661},"113":{"tf":2.0},"114":{"tf":2.8284271247461903},"116":{"tf":4.123105625617661},"117":{"tf":3.3166247903554},"118":{"tf":3.605551275463989},"120":{"tf":3.0},"121":{"tf":2.0},"122":{"tf":2.0},"123":{"tf":3.0},"124":{"tf":2.23606797749979},"126":{"tf":4.58257569495584},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":3.7416573867739413},"130":{"tf":2.8284271247461903},"131":{"tf":3.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":2.449489742783178},"138":{"tf":2.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.4142135623730951},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":2.0},"17":{"tf":2.0},"170":{"tf":2.23606797749979},"171":{"tf":2.0},"172":{"tf":1.7320508075688772},"173":{"tf":2.0},"174":{"tf":2.0},"175":{"tf":2.0},"176":{"tf":2.23606797749979},"177":{"tf":2.23606797749979},"178":{"tf":1.7320508075688772},"179":{"tf":2.0},"180":{"tf":2.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"199":{"tf":2.0},"200":{"tf":2.23606797749979},"201":{"tf":2.23606797749979},"202":{"tf":2.0},"203":{"tf":2.23606797749979},"204":{"tf":2.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"207":{"tf":2.23606797749979},"208":{"tf":2.8284271247461903},"209":{"tf":3.1622776601683795},"210":{"tf":1.0},"211":{"tf":4.242640687119285},"212":{"tf":3.0},"213":{"tf":2.23606797749979},"216":{"tf":1.4142135623730951},"217":{"tf":2.8284271247461903},"218":{"tf":1.7320508075688772},"219":{"tf":2.23606797749979},"224":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"23":{"tf":2.0},"231":{"tf":2.449489742783178},"232":{"tf":2.0},"233":{"tf":3.1622776601683795},"234":{"tf":2.449489742783178},"238":{"tf":1.4142135623730951},"239":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":2.8284271247461903},"244":{"tf":1.0},"245":{"tf":3.7416573867739413},"246":{"tf":3.4641016151377544},"247":{"tf":2.8284271247461903},"250":{"tf":2.6457513110645907},"251":{"tf":2.23606797749979},"252":{"tf":2.0},"253":{"tf":1.7320508075688772},"254":{"tf":3.605551275463989},"255":{"tf":2.23606797749979},"256":{"tf":2.23606797749979},"257":{"tf":2.23606797749979},"258":{"tf":3.7416573867739413},"259":{"tf":3.4641016151377544},"261":{"tf":2.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":2.23606797749979},"267":{"tf":2.449489742783178},"268":{"tf":2.23606797749979},"271":{"tf":2.0},"272":{"tf":3.0},"29":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.7320508075688772},"49":{"tf":2.449489742783178},"50":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.7320508075688772},"60":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":2.449489742783178},"64":{"tf":1.0},"65":{"tf":2.8284271247461903},"68":{"tf":2.0},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":3.872983346207417},"77":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":2.449489742783178},"80":{"tf":1.0},"81":{"tf":2.23606797749979},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.872983346207417},"85":{"tf":1.0},"87":{"tf":2.0},"89":{"tf":1.4142135623730951},"97":{"tf":2.23606797749979},"98":{"tf":2.8284271247461903},"99":{"tf":2.23606797749979}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":26,"docs":{"103":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"219":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}},"df":1,"docs":{"169":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"135":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"16":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"72":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}},"b":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"c":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"d":{"df":1,"docs":{"245":{"tf":1.0}}},"df":12,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":3.1622776601683795},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"66":{"tf":2.0},"68":{"tf":2.8284271247461903}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"266":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"111":{"tf":1.0},"144":{"tf":1.4142135623730951},"18":{"tf":1.0},"210":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"262":{"tf":1.0},"274":{"tf":1.0},"33":{"tf":1.0},"68":{"tf":1.0}},"f":{"df":10,"docs":{"100":{"tf":1.0},"19":{"tf":1.4142135623730951},"207":{"tf":1.0},"232":{"tf":2.6457513110645907},"233":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"35":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.4142135623730951}},"i":{"df":42,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":2.0},"107":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"22":{"tf":1.0},"239":{"tf":2.0},"240":{"tf":1.7320508075688772},"245":{"tf":1.0},"252":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":2,"docs":{"132":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"11":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}}}},"h":{"df":1,"docs":{"245":{"tf":1.0}},"i":{"df":0,"docs":{},"":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"3":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"t":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"":{"=":{"2":{"3":{"2":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"a":{"df":34,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":2.23606797749979},"126":{"tf":1.4142135623730951},"148":{"tf":1.0},"15":{"tf":1.4142135623730951},"169":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"259":{"tf":1.0},"267":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"42":{"tf":2.449489742783178},"44":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":2.449489742783178},"75":{"tf":1.4142135623730951},"8":{"tf":1.0},"88":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"132":{"tf":1.0},"257":{"tf":1.0}}}},"df":2,"docs":{"252":{"tf":1.4142135623730951},"259":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"111":{"tf":1.0},"19":{"tf":1.0},"258":{"tf":1.0},"35":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":21,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"129":{"tf":1.0},"2":{"tf":1.4142135623730951},"223":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":2.6457513110645907},"231":{"tf":1.7320508075688772},"245":{"tf":1.7320508075688772},"262":{"tf":1.0},"264":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"267":{"tf":2.0},"268":{"tf":1.7320508075688772},"269":{"tf":2.0},"270":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"k":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{")":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"c":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"6":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"h":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"245":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"b":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"":{"+":{"b":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"d":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"c":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"7":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"":{"=":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"'":{"df":9,"docs":{"2":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"77":{"tf":1.0}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":105,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":2.0},"10":{"tf":2.23606797749979},"100":{"tf":2.8284271247461903},"101":{"tf":2.449489742783178},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"105":{"tf":2.449489742783178},"106":{"tf":4.47213595499958},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"11":{"tf":2.8284271247461903},"110":{"tf":2.8284271247461903},"111":{"tf":2.6457513110645907},"112":{"tf":1.0},"113":{"tf":2.8284271247461903},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":2.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"14":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"16":{"tf":2.23606797749979},"168":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":4.123105625617661},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":2.6457513110645907},"220":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.0},"3":{"tf":2.0},"32":{"tf":2.0},"33":{"tf":3.0},"35":{"tf":1.4142135623730951},"4":{"tf":2.23606797749979},"42":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.4142135623730951},"6":{"tf":3.0},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"8":{"tf":2.23606797749979},"87":{"tf":1.7320508075688772},"88":{"tf":2.8284271247461903},"89":{"tf":2.0},"9":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":2.0},"98":{"tf":3.7416573867739413},"99":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"c":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"7":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"b":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"s":{"df":4,"docs":{"137":{"tf":1.0},"212":{"tf":1.0},"274":{"tf":1.0},"43":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"i":{"+":{"b":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"b":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"h":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"230":{"tf":1.0},"264":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"+":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":1,"docs":{"264":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{")":{"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":2,"docs":{"211":{"tf":1.0},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"←":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"i":{"]":{"[":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"]":{"[":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"→":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"i":{"]":{"[":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"]":{"[":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":18,"docs":{"121":{"tf":1.0},"130":{"tf":1.4142135623730951},"170":{"tf":1.0},"18":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.4142135623730951},"246":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.7320508075688772},"262":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0},"8":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}}}},"y":{"df":19,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"42":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.7320508075688772},"86":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":5,"docs":{"211":{"tf":1.0},"213":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":15,"docs":{"128":{"tf":1.0},"129":{"tf":2.449489742783178},"132":{"tf":1.0},"133":{"tf":1.0},"212":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"263":{"tf":1.0},"268":{"tf":1.7320508075688772}}}},"v":{"df":2,"docs":{"110":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"2":{"tf":1.0},"209":{"tf":1.0},"260":{"tf":1.0},"62":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"245":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"133":{"tf":1.0},"170":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"81":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"49":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"222":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"204":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"255":{"tf":1.0},"264":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"265":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":23,"docs":{"10":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"227":{"tf":1.0},"245":{"tf":2.0},"253":{"tf":1.0},"258":{"tf":2.23606797749979},"34":{"tf":2.23606797749979},"37":{"tf":1.0},"44":{"tf":2.449489742783178},"6":{"tf":1.0},"60":{"tf":2.8284271247461903},"62":{"tf":1.0},"65":{"tf":2.8284271247461903},"66":{"tf":3.4641016151377544},"68":{"tf":2.449489742783178},"70":{"tf":2.23606797749979},"75":{"tf":2.0},"85":{"tf":2.23606797749979},"87":{"tf":2.0}},"s":{".":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":18,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"116":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"241":{"tf":1.0},"255":{"tf":1.4142135623730951},"258":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"1":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"258":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"213":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"258":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"85":{"tf":2.8284271247461903}}}}}},"df":19,"docs":{"137":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"22":{"tf":1.0},"25":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":2.6457513110645907},"258":{"tf":3.0},"259":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":2.23606797749979}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"0":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}}}}},"x":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"1":{"df":1,"docs":{"247":{"tf":1.0}}},"2":{"df":1,"docs":{"247":{"tf":1.0}}},"3":{"df":1,"docs":{"247":{"tf":1.0}}},"=":{"1":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"138":{"tf":4.0},"209":{"tf":1.7320508075688772},"211":{"tf":2.449489742783178},"241":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"213":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"(":{"a":{",":{"b":{")":{"=":{"a":{"+":{"b":{"df":0,"docs":{},"−":{"2":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"⋅":{"b":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"180":{"tf":1.7320508075688772},"220":{"tf":1.0},"246":{"tf":2.0},"52":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"x":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"′":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"x":{"+":{"df":0,"docs":{},"y":{")":{"=":{"0":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"1":{"df":1,"docs":{"247":{"tf":1.0}}},"2":{"df":1,"docs":{"247":{"tf":1.0}}},"3":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"z":{"=":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{")":{"4":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"":{"+":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{")":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"":{"+":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"0":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"219":{"tf":1.0},"246":{"tf":1.7320508075688772},"247":{"tf":2.449489742783178},"251":{"tf":1.0},"252":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":20,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"111":{"tf":1.0},"124":{"tf":1.0},"170":{"tf":1.7320508075688772},"2":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":2.23606797749979},"246":{"tf":1.4142135623730951},"259":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"49":{"tf":1.0},"66":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}},"k":{"df":2,"docs":{"274":{"tf":1.0},"3":{"tf":1.0}}},"p":{"df":3,"docs":{"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"251":{"tf":1.0}}}}}},"title":{"root":{"1":{"6":{"df":1,"docs":{"213":{"tf":1.0}}},"df":1,"docs":{"237":{"tf":1.0}}},"2":{"df":2,"docs":{"237":{"tf":1.0},"77":{"tf":1.0}}},"4":{"df":1,"docs":{"77":{"tf":1.0}}},"6":{"4":{"df":2,"docs":{"75":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"211":{"tf":1.0}}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"199":{"tf":1.0},"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"156":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"197":{"tf":1.0}},"w":{"df":1,"docs":{"198":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"113":{"tf":1.0},"132":{"tf":1.0},"241":{"tf":1.0},"259":{"tf":1.0}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"214":{"tf":1.0},"258":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"52":{"tf":1.0},"57":{"tf":1.0},"82":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"25":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"151":{"tf":1.0},"51":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"211":{"tf":1.0},"213":{"tf":1.0},"81":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"246":{"tf":1.0},"58":{"tf":1.0},"84":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"3":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":17,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":7,"docs":{"116":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"252":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"270":{"tf":1.0},"273":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"169":{"tf":1.0},"170":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"245":{"tf":1.0},"265":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":18,"docs":{"116":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"12":{"tf":1.0}}},"k":{"df":1,"docs":{"154":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"36":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":4,"docs":{"120":{"tf":1.0},"242":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"219":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"53":{"tf":1.0},"59":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"115":{"tf":1.0},"235":{"tf":1.0},"268":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"47":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":36,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"257":{"tf":1.0},"41":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"256":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"14":{"tf":1.0},"148":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":3,"docs":{"205":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"192":{"tf":1.0}},"w":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":11,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"123":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"134":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"254":{"tf":1.0},"35":{"tf":1.0},"87":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"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":{"32":{"tf":1.0},"4":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"183":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"170":{"tf":1.0},"238":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}}}}},"q":{"df":1,"docs":{"164":{"tf":1.0}},"z":{"df":1,"docs":{"165":{"tf":1.0}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"112":{"tf":1.0},"18":{"tf":1.0},"235":{"tf":1.0},"247":{"tf":1.0},"45":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"101":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"c":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"2":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"54":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"155":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"125":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"148":{"tf":1.0},"46":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"a":{"d":{"d":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"76":{"tf":1.0},"77":{"tf":1.0}},"e":{"2":{"df":0,"docs":{},"f":{"4":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"15":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":9,"docs":{"104":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"244":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"26":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"271":{"tf":1.0}}}}}}}}}},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"124":{"tf":1.0},"243":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"194":{"tf":1.0},"250":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"234":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"12":{"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":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"159":{"tf":1.0}},"o":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"92":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":3,"docs":{"131":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"110":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"94":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"181":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"29":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"199":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":5,"docs":{"239":{"tf":1.0},"240":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":15,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"258":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"33":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"201":{"tf":1.0}},"w":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"221":{"tf":1.0},"225":{"tf":1.0},"38":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"v":{"d":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"203":{"tf":1.0}},"w":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"245":{"tf":1.0},"265":{"tf":1.0}}}}}}}}}},"n":{"df":1,"docs":{"238":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"157":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"243":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"65":{"tf":1.0}}}}}}}}}}}}},"df":1,"docs":{"256":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"150":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}},"df":30,"docs":{"106":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"224":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"36":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"194":{"tf":1.0},"251":{"tf":1.0},"62":{"tf":1.0},"8":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"129":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}}},"p":{"a":{"d":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"264":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":10,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"27":{"tf":1.0},"7":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":5,"docs":{"169":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"215":{"tf":1.0},"223":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"130":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"260":{"tf":1.0},"261":{"tf":1.0}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"266":{"tf":1.0}}}}},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"227":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":7,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.0},"236":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"111":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"75":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"93":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":14,"docs":{"117":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"181":{"tf":1.0},"223":{"tf":1.0},"28":{"tf":1.0},"60":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"244":{"tf":1.0}}},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"102":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"w":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":1,"docs":{"185":{"tf":1.0}},"w":{"2":{"df":1,"docs":{"187":{"tf":1.0}}},"3":{"df":1,"docs":{"188":{"tf":1.0}}},"df":1,"docs":{"186":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"149":{"tf":1.0},"86":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"105":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"135":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"34":{"tf":1.0},"70":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":1.0},"56":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":9,"docs":{"103":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"233":{"tf":1.0},"261":{"tf":1.0},"268":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"68":{"tf":1.0},"75":{"tf":1.0}}}}}},"u":{"3":{"2":{"a":{"d":{"d":{"3":{"df":1,"docs":{"174":{"tf":1.0}}},"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":3,"docs":{"142":{"tf":1.0},"168":{"tf":1.0},"55":{"tf":1.0}},"m":{"a":{"d":{"d":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"u":{"b":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"11":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}},"f":{"df":1,"docs":{"76":{"tf":1.0}},"i":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0}}}},"df":0,"docs":{}}}}},"m":{"df":10,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"6":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"255":{"tf":1.0},"7":{"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":["intro/main.html#introduction","intro/main.html#status-and-features","intro/main.html#feature-highlights","intro/main.html#planned-features","intro/main.html#structure-of-this-document","intro/main.html#license","intro/overview.html#miden-vm-overview","intro/overview.html#writing-programs","intro/overview.html#inputs-and-outputs","intro/overview.html#stack-depth-restrictions","intro/overview.html#nondeterministic-inputs","intro/usage.html#usage","intro/usage.html#cli-interface","intro/usage.html#compiling-miden-vm","intro/usage.html#controlling-parallelism","intro/usage.html#gpu-acceleration","intro/usage.html#running-miden-vm","intro/usage.html#inputs","intro/usage.html#fibonacci-example","intro/performance.html#performance","intro/performance.html#single-core-prover-performance","intro/performance.html#multi-core-prover-performance","tools/main.html#development-tools-and-resources","tools/debugger.html#miden-debugger","tools/repl.html#miden-repl","tools/repl.html#miden-assembly-instruction","tools/repl.html#help","tools/repl.html#program","tools/repl.html#stack","tools/repl.html#mem","tools/repl.html#memaddr","tools/repl.html#undo","user_docs/main.html#user-documentation","user_docs/assembly/main.html#miden-assembly","user_docs/assembly/main.html#terms-and-notations","user_docs/assembly/main.html#design-goals","user_docs/assembly/code_organization.html#code-organization","user_docs/assembly/code_organization.html#procedures","user_docs/assembly/code_organization.html#modules","user_docs/assembly/code_organization.html#constants","user_docs/assembly/code_organization.html#comments","user_docs/assembly/execution_contexts.html#execution-contexts","user_docs/assembly/execution_contexts.html#procedure-invocation-semantics","user_docs/assembly/execution_contexts.html#kernels","user_docs/assembly/execution_contexts.html#memory-layout","user_docs/assembly/execution_contexts.html#example","user_docs/assembly/flow_control.html#flow-control","user_docs/assembly/flow_control.html#conditional-execution","user_docs/assembly/flow_control.html#counter-controlled-loops","user_docs/assembly/flow_control.html#condition-controlled-loops","user_docs/assembly/field_operations.html#field-operations","user_docs/assembly/field_operations.html#assertions-and-tests","user_docs/assembly/field_operations.html#arithmetic-and-boolean-operations","user_docs/assembly/field_operations.html#comparison-operations","user_docs/assembly/field_operations.html#extension-field-operations","user_docs/assembly/u32_operations.html#u32-operations","user_docs/assembly/u32_operations.html#conversions-and-tests","user_docs/assembly/u32_operations.html#arithmetic-operations","user_docs/assembly/u32_operations.html#bitwise-operations","user_docs/assembly/u32_operations.html#comparison-operations","user_docs/assembly/stack_manipulation.html#stack-manipulation","user_docs/assembly/stack_manipulation.html#conditional-manipulation","user_docs/assembly/io_operations.html#input--output-operations","user_docs/assembly/io_operations.html#constant-inputs","user_docs/assembly/io_operations.html#environment-inputs","user_docs/assembly/io_operations.html#nondeterministic-inputs","user_docs/assembly/io_operations.html#random-access-memory","user_docs/assembly/cryptographic_operations.html#cryptographic-operations","user_docs/assembly/cryptographic_operations.html#hashing-and-merkle-trees","user_docs/stdlib/main.html#miden-standard-library","user_docs/stdlib/main.html#terms-and-notations","user_docs/stdlib/main.html#organization-and-usage","user_docs/stdlib/main.html#available-modules","user_docs/stdlib/collections.html#collections","user_docs/stdlib/collections.html#merkle-mountain-range","user_docs/stdlib/collections.html#sparse-merkle-tree-64","user_docs/stdlib/crypto/fri.html#fri-verification-procedures","user_docs/stdlib/crypto/fri.html#fri-extension-2-fold-4","user_docs/stdlib/crypto/hashes.html#cryptographic-hashes","user_docs/stdlib/crypto/hashes.html#blake3","user_docs/stdlib/crypto/hashes.html#sha256","user_docs/stdlib/math/u64.html#unsigned-64-bit-integer-operations","user_docs/stdlib/math/u64.html#arithmetic-operations","user_docs/stdlib/math/u64.html#comparison-operations","user_docs/stdlib/math/u64.html#bitwise-operations","user_docs/stdlib/mem.html#memory-procedures","user_docs/stdlib/sys.html#system-procedures","design/main.html#design","design/main.html#vm-components","design/main.html#vm-execution-trace","design/programs.html#programs-in-miden-vm","design/programs.html#code-blocks","design/programs.html#join-block","design/programs.html#split-block","design/programs.html#loop-block","design/programs.html#call-block","design/programs.html#syscall-block","design/programs.html#span-block","design/programs.html#program-example","design/programs.html#program-hash-computation","design/decoder/main.html#miden-vm-program-decoder","design/decoder/main.html#program-execution","design/decoder/main.html#decoder-structure","design/decoder/main.html#decoder-trace","design/decoder/main.html#program-block-hashing","design/decoder/main.html#control-flow-tables","design/decoder/main.html#control-flow-operation-semantics","design/decoder/main.html#program-decoding","design/decoder/main.html#join-block-decoding","design/decoder/main.html#split-block-decoding","design/decoder/main.html#loop-block-decoding","design/decoder/main.html#span-block-decoding","design/decoder/main.html#program-decoding-example","design/decoder/constraints.html#miden-vm-decoder-air-constraints","design/decoder/constraints.html#general-constraints","design/decoder/constraints.html#block-hash-computation-constraints","design/decoder/constraints.html#chiplets-bus-constraints","design/decoder/constraints.html#block-stack-table-constraints","design/decoder/constraints.html#block-hash-table-constraints","design/decoder/constraints.html#span-block","design/decoder/constraints.html#in-span-column-constraints","design/decoder/constraints.html#block-address-constraints","design/decoder/constraints.html#group-count-constraints","design/decoder/constraints.html#op-group-decoding-constraints","design/decoder/constraints.html#op-index-constraints","design/decoder/constraints.html#op-batch-flags-constraints","design/decoder/constraints.html#op-group-table-constraints","design/stack/main.html#operand-stack","design/stack/main.html#stack-representation","design/stack/main.html#overflow-table","design/stack/main.html#right-shift","design/stack/main.html#left-shift","design/stack/main.html#air-constraints","design/stack/main.html#stack-overflow-flag","design/stack/main.html#stack-depth-constraints","design/stack/main.html#overflow-table-constraints","design/stack/main.html#boundary-constraints","design/stack/op_constraints.html#stack-operation-constraints","design/stack/op_constraints.html#operation-flags","design/stack/op_constraints.html#no-stack-shift-operations","design/stack/op_constraints.html#left-stack-shift-operations","design/stack/op_constraints.html#right-stack-shift-operations","design/stack/op_constraints.html#u32-operations","design/stack/op_constraints.html#high-degree-operations","design/stack/op_constraints.html#very-high-degree-operations","design/stack/op_constraints.html#composite-flags","design/stack/op_constraints.html#shift-right-flag","design/stack/op_constraints.html#shift-left-flag","design/stack/op_constraints.html#control-flow-flag","design/stack/system_ops.html#system-operations","design/stack/system_ops.html#noop","design/stack/system_ops.html#assert","design/stack/system_ops.html#fmpadd","design/stack/system_ops.html#fmpupdate","design/stack/system_ops.html#clk","design/stack/field_ops.html#field-operations","design/stack/field_ops.html#add","design/stack/field_ops.html#neg","design/stack/field_ops.html#mul","design/stack/field_ops.html#inv","design/stack/field_ops.html#incr","design/stack/field_ops.html#not","design/stack/field_ops.html#and","design/stack/field_ops.html#or","design/stack/field_ops.html#eq","design/stack/field_ops.html#eqz","design/stack/field_ops.html#expacc","design/stack/field_ops.html#ext2mul","design/stack/u32_ops.html#u32-operations","design/stack/u32_ops.html#range-checks","design/stack/u32_ops.html#checking-element-validity","design/stack/u32_ops.html#u32split","design/stack/u32_ops.html#u32assert2","design/stack/u32_ops.html#u32add","design/stack/u32_ops.html#u32add3","design/stack/u32_ops.html#u32sub","design/stack/u32_ops.html#u32mul","design/stack/u32_ops.html#u32madd","design/stack/u32_ops.html#u32div","design/stack/u32_ops.html#u32and","design/stack/u32_ops.html#u32xor","design/stack/stack_ops.html#stack-manipulation","design/stack/stack_ops.html#pad","design/stack/stack_ops.html#drop","design/stack/stack_ops.html#dupn","design/stack/stack_ops.html#swap","design/stack/stack_ops.html#swapw","design/stack/stack_ops.html#swapw2","design/stack/stack_ops.html#swapw3","design/stack/stack_ops.html#swapdw","design/stack/stack_ops.html#movupn","design/stack/stack_ops.html#movdnn","design/stack/stack_ops.html#cswap","design/stack/stack_ops.html#cswapw","design/stack/io_ops.html#input--output-operations","design/stack/io_ops.html#push","design/stack/io_ops.html#sdepth","design/stack/io_ops.html#advpop","design/stack/io_ops.html#advpopw","design/stack/io_ops.html#memory-access-operations","design/stack/io_ops.html#mloadw","design/stack/io_ops.html#mload","design/stack/io_ops.html#mstorew","design/stack/io_ops.html#mstore","design/stack/io_ops.html#mstream","design/stack/crypto_ops.html#cryptographic-operations","design/stack/crypto_ops.html#hperm","design/stack/crypto_ops.html#mpverify","design/stack/crypto_ops.html#mrupdate","design/stack/crypto_ops.html#frie2f4","design/range.html#range-checker","design/range.html#8-bit-range-checks","design/range.html#a-better-construction","design/range.html#16-bit-range-checks","design/range.html#miden-approach","design/range.html#requirements","design/range.html#capabilities","design/range.html#execution-trace","design/range.html#execution-trace-constraints","design/range.html#communication-bus","design/chiplets/main.html#chiplets","design/chiplets/main.html#chiplets-module-trace","design/chiplets/main.html#chiplets-order","design/chiplets/main.html#additional-requirements-for-stacking-execution-traces","design/chiplets/main.html#operation-labels","design/chiplets/main.html#chiplets-module-constraints","design/chiplets/main.html#chiplet-constraints","design/chiplets/main.html#chiplet-selector-constraints","design/chiplets/main.html#chiplets-bus","design/chiplets/main.html#chiplets-bus-constraints","design/chiplets/main.html#chiplets-virtual-table","design/chiplets/main.html#chiplets-virtual-table-constraints","design/chiplets/hasher.html#hash-chiplet","design/chiplets/hasher.html#chiplet-trace","design/chiplets/hasher.html#instruction-flags","design/chiplets/hasher.html#computation-examples","design/chiplets/hasher.html#single-permutation","design/chiplets/hasher.html#simple-2-to-1-hash","design/chiplets/hasher.html#linear-hash-of-n-elements","design/chiplets/hasher.html#verify-merkle-path","design/chiplets/hasher.html#update-merkle-root","design/chiplets/hasher.html#air-constraints","design/chiplets/hasher.html#selector-columns-constraints","design/chiplets/hasher.html#node-index-constraints","design/chiplets/hasher.html#hasher-state-constraints","design/chiplets/hasher.html#multiset-check-constraints","design/chiplets/bitwise.html#bitwise-chiplet","design/chiplets/bitwise.html#example","design/chiplets/bitwise.html#constraints","design/chiplets/bitwise.html#selectors","design/chiplets/bitwise.html#input-decomposition","design/chiplets/bitwise.html#output-aggregation","design/chiplets/bitwise.html#chiplets-bus-constraints","design/chiplets/memory.html#memory-chiplet","design/chiplets/memory.html#alternative-designs","design/chiplets/memory.html#read-write-memory","design/chiplets/memory.html#non-contiguous-memory","design/chiplets/memory.html#context-separation","design/chiplets/memory.html#miden-approach","design/chiplets/memory.html#air-constraints","design/chiplets/kernel_rom.html#kernel-rom-chiplet","design/chiplets/kernel_rom.html#kernel-rom-trace","design/chiplets/kernel_rom.html#constraints","design/chiplets/kernel_rom.html#chiplets-bus-constraints","design/chiplets/kernel_rom.html#kernel-procedure-table-constraints","design/multiset.html#multiset-checks","design/multiset.html#running-product-columns","design/multiset.html#virtual-tables","design/multiset.html#computing-a-virtual-tables-trace-column","design/multiset.html#virtual-tables-in-miden-vm","design/multiset.html#communication-buses","design/multiset.html#implementation","design/multiset.html#communication-bus-constraints","design/multiset.html#communication-buses-in-miden-vm","background.html#background-material"],"index":{"documentStore":{"docInfo":{"0":{"body":34,"breadcrumbs":2,"title":1},"1":{"body":53,"breadcrumbs":3,"title":2},"10":{"body":115,"breadcrumbs":4,"title":2},"100":{"body":131,"breadcrumbs":7,"title":4},"101":{"body":209,"breadcrumbs":5,"title":2},"102":{"body":45,"breadcrumbs":5,"title":2},"103":{"body":183,"breadcrumbs":5,"title":2},"104":{"body":298,"breadcrumbs":6,"title":3},"105":{"body":516,"breadcrumbs":6,"title":3},"106":{"body":814,"breadcrumbs":7,"title":4},"107":{"body":91,"breadcrumbs":5,"title":2},"108":{"body":59,"breadcrumbs":6,"title":3},"109":{"body":54,"breadcrumbs":6,"title":3},"11":{"body":72,"breadcrumbs":3,"title":1},"110":{"body":227,"breadcrumbs":6,"title":3},"111":{"body":1070,"breadcrumbs":6,"title":3},"112":{"body":292,"breadcrumbs":6,"title":3},"113":{"body":302,"breadcrumbs":10,"title":5},"114":{"body":137,"breadcrumbs":7,"title":2},"115":{"body":144,"breadcrumbs":9,"title":4},"116":{"body":447,"breadcrumbs":8,"title":3},"117":{"body":306,"breadcrumbs":9,"title":4},"118":{"body":403,"breadcrumbs":9,"title":4},"119":{"body":26,"breadcrumbs":7,"title":2},"12":{"body":0,"breadcrumbs":4,"title":2},"120":{"body":135,"breadcrumbs":8,"title":3},"121":{"body":70,"breadcrumbs":8,"title":3},"122":{"body":184,"breadcrumbs":8,"title":3},"123":{"body":225,"breadcrumbs":9,"title":4},"124":{"body":132,"breadcrumbs":8,"title":3},"125":{"body":141,"breadcrumbs":9,"title":4},"126":{"body":349,"breadcrumbs":9,"title":4},"127":{"body":120,"breadcrumbs":5,"title":2},"128":{"body":80,"breadcrumbs":5,"title":2},"129":{"body":172,"breadcrumbs":5,"title":2},"13":{"body":62,"breadcrumbs":5,"title":3},"130":{"body":172,"breadcrumbs":5,"title":2},"131":{"body":114,"breadcrumbs":5,"title":2},"132":{"body":59,"breadcrumbs":5,"title":2},"133":{"body":58,"breadcrumbs":6,"title":3},"134":{"body":51,"breadcrumbs":6,"title":3},"135":{"body":132,"breadcrumbs":6,"title":3},"136":{"body":27,"breadcrumbs":5,"title":2},"137":{"body":181,"breadcrumbs":8,"title":3},"138":{"body":312,"breadcrumbs":7,"title":2},"139":{"body":216,"breadcrumbs":8,"title":3},"14":{"body":18,"breadcrumbs":4,"title":2},"140":{"body":129,"breadcrumbs":9,"title":4},"141":{"body":133,"breadcrumbs":9,"title":4},"142":{"body":167,"breadcrumbs":7,"title":2},"143":{"body":159,"breadcrumbs":8,"title":3},"144":{"body":113,"breadcrumbs":9,"title":4},"145":{"body":13,"breadcrumbs":7,"title":2},"146":{"body":41,"breadcrumbs":8,"title":3},"147":{"body":93,"breadcrumbs":8,"title":3},"148":{"body":37,"breadcrumbs":8,"title":3},"149":{"body":8,"breadcrumbs":7,"title":2},"15":{"body":48,"breadcrumbs":4,"title":2},"150":{"body":34,"breadcrumbs":6,"title":1},"151":{"body":33,"breadcrumbs":6,"title":1},"152":{"body":35,"breadcrumbs":6,"title":1},"153":{"body":31,"breadcrumbs":6,"title":1},"154":{"body":30,"breadcrumbs":6,"title":1},"155":{"body":14,"breadcrumbs":7,"title":2},"156":{"body":30,"breadcrumbs":6,"title":1},"157":{"body":28,"breadcrumbs":6,"title":1},"158":{"body":30,"breadcrumbs":6,"title":1},"159":{"body":34,"breadcrumbs":6,"title":1},"16":{"body":118,"breadcrumbs":5,"title":3},"160":{"body":28,"breadcrumbs":6,"title":1},"161":{"body":41,"breadcrumbs":5,"title":0},"162":{"body":46,"breadcrumbs":5,"title":0},"163":{"body":46,"breadcrumbs":5,"title":0},"164":{"body":56,"breadcrumbs":6,"title":1},"165":{"body":54,"breadcrumbs":6,"title":1},"166":{"body":85,"breadcrumbs":6,"title":1},"167":{"body":71,"breadcrumbs":6,"title":1},"168":{"body":17,"breadcrumbs":7,"title":2},"169":{"body":86,"breadcrumbs":7,"title":2},"17":{"body":151,"breadcrumbs":3,"title":1},"170":{"body":113,"breadcrumbs":8,"title":3},"171":{"body":95,"breadcrumbs":6,"title":1},"172":{"body":76,"breadcrumbs":6,"title":1},"173":{"body":83,"breadcrumbs":6,"title":1},"174":{"body":85,"breadcrumbs":6,"title":1},"175":{"body":83,"breadcrumbs":6,"title":1},"176":{"body":98,"breadcrumbs":6,"title":1},"177":{"body":114,"breadcrumbs":6,"title":1},"178":{"body":70,"breadcrumbs":6,"title":1},"179":{"body":74,"breadcrumbs":6,"title":1},"18":{"body":63,"breadcrumbs":4,"title":2},"180":{"body":77,"breadcrumbs":6,"title":1},"181":{"body":9,"breadcrumbs":7,"title":2},"182":{"body":28,"breadcrumbs":6,"title":1},"183":{"body":35,"breadcrumbs":6,"title":1},"184":{"body":62,"breadcrumbs":6,"title":1},"185":{"body":30,"breadcrumbs":6,"title":1},"186":{"body":33,"breadcrumbs":6,"title":1},"187":{"body":36,"breadcrumbs":6,"title":1},"188":{"body":36,"breadcrumbs":6,"title":1},"189":{"body":33,"breadcrumbs":6,"title":1},"19":{"body":124,"breadcrumbs":3,"title":1},"190":{"body":71,"breadcrumbs":6,"title":1},"191":{"body":70,"breadcrumbs":6,"title":1},"192":{"body":60,"breadcrumbs":6,"title":1},"193":{"body":62,"breadcrumbs":6,"title":1},"194":{"body":24,"breadcrumbs":9,"title":3},"195":{"body":34,"breadcrumbs":7,"title":1},"196":{"body":37,"breadcrumbs":7,"title":1},"197":{"body":38,"breadcrumbs":7,"title":1},"198":{"body":49,"breadcrumbs":7,"title":1},"199":{"body":73,"breadcrumbs":9,"title":3},"2":{"body":253,"breadcrumbs":3,"title":2},"20":{"body":207,"breadcrumbs":6,"title":4},"200":{"body":90,"breadcrumbs":7,"title":1},"201":{"body":95,"breadcrumbs":7,"title":1},"202":{"body":90,"breadcrumbs":7,"title":1},"203":{"body":102,"breadcrumbs":7,"title":1},"204":{"body":100,"breadcrumbs":7,"title":1},"205":{"body":54,"breadcrumbs":7,"title":2},"206":{"body":118,"breadcrumbs":6,"title":1},"207":{"body":169,"breadcrumbs":6,"title":1},"208":{"body":204,"breadcrumbs":6,"title":1},"209":{"body":281,"breadcrumbs":6,"title":1},"21":{"body":106,"breadcrumbs":6,"title":4},"210":{"body":64,"breadcrumbs":5,"title":2},"211":{"body":201,"breadcrumbs":7,"title":4},"212":{"body":183,"breadcrumbs":5,"title":2},"213":{"body":130,"breadcrumbs":7,"title":4},"214":{"body":7,"breadcrumbs":5,"title":2},"215":{"body":22,"breadcrumbs":4,"title":1},"216":{"body":31,"breadcrumbs":4,"title":1},"217":{"body":90,"breadcrumbs":5,"title":2},"218":{"body":49,"breadcrumbs":6,"title":3},"219":{"body":117,"breadcrumbs":5,"title":2},"22":{"body":59,"breadcrumbs":5,"title":3},"220":{"body":98,"breadcrumbs":3,"title":1},"221":{"body":121,"breadcrumbs":5,"title":3},"222":{"body":101,"breadcrumbs":4,"title":2},"223":{"body":137,"breadcrumbs":7,"title":5},"224":{"body":121,"breadcrumbs":4,"title":2},"225":{"body":0,"breadcrumbs":5,"title":3},"226":{"body":75,"breadcrumbs":4,"title":2},"227":{"body":116,"breadcrumbs":5,"title":3},"228":{"body":123,"breadcrumbs":4,"title":2},"229":{"body":52,"breadcrumbs":5,"title":3},"23":{"body":212,"breadcrumbs":5,"title":2},"230":{"body":65,"breadcrumbs":5,"title":3},"231":{"body":86,"breadcrumbs":6,"title":4},"232":{"body":313,"breadcrumbs":6,"title":2},"233":{"body":331,"breadcrumbs":6,"title":2},"234":{"body":266,"breadcrumbs":6,"title":2},"235":{"body":0,"breadcrumbs":6,"title":2},"236":{"body":73,"breadcrumbs":6,"title":2},"237":{"body":84,"breadcrumbs":8,"title":4},"238":{"body":143,"breadcrumbs":8,"title":4},"239":{"body":197,"breadcrumbs":7,"title":3},"24":{"body":55,"breadcrumbs":5,"title":2},"240":{"body":215,"breadcrumbs":7,"title":3},"241":{"body":30,"breadcrumbs":6,"title":2},"242":{"body":98,"breadcrumbs":7,"title":3},"243":{"body":148,"breadcrumbs":7,"title":3},"244":{"body":105,"breadcrumbs":7,"title":3},"245":{"body":559,"breadcrumbs":7,"title":3},"246":{"body":227,"breadcrumbs":6,"title":2},"247":{"body":180,"breadcrumbs":5,"title":1},"248":{"body":24,"breadcrumbs":5,"title":1},"249":{"body":24,"breadcrumbs":5,"title":1},"25":{"body":55,"breadcrumbs":6,"title":3},"250":{"body":117,"breadcrumbs":6,"title":2},"251":{"body":86,"breadcrumbs":6,"title":2},"252":{"body":114,"breadcrumbs":7,"title":3},"253":{"body":66,"breadcrumbs":6,"title":2},"254":{"body":155,"breadcrumbs":6,"title":2},"255":{"body":228,"breadcrumbs":7,"title":3},"256":{"body":147,"breadcrumbs":7,"title":3},"257":{"body":230,"breadcrumbs":6,"title":2},"258":{"body":418,"breadcrumbs":6,"title":2},"259":{"body":255,"breadcrumbs":6,"title":2},"26":{"body":8,"breadcrumbs":4,"title":1},"260":{"body":38,"breadcrumbs":8,"title":3},"261":{"body":54,"breadcrumbs":8,"title":3},"262":{"body":103,"breadcrumbs":6,"title":1},"263":{"body":85,"breadcrumbs":8,"title":3},"264":{"body":101,"breadcrumbs":9,"title":4},"265":{"body":123,"breadcrumbs":5,"title":2},"266":{"body":173,"breadcrumbs":6,"title":3},"267":{"body":105,"breadcrumbs":5,"title":2},"268":{"body":58,"breadcrumbs":8,"title":5},"269":{"body":41,"breadcrumbs":7,"title":4},"27":{"body":25,"breadcrumbs":4,"title":1},"270":{"body":81,"breadcrumbs":5,"title":2},"271":{"body":111,"breadcrumbs":4,"title":1},"272":{"body":105,"breadcrumbs":6,"title":3},"273":{"body":42,"breadcrumbs":7,"title":4},"274":{"body":117,"breadcrumbs":4,"title":2},"28":{"body":57,"breadcrumbs":4,"title":1},"29":{"body":48,"breadcrumbs":4,"title":1},"3":{"body":69,"breadcrumbs":3,"title":2},"30":{"body":24,"breadcrumbs":4,"title":1},"31":{"body":110,"breadcrumbs":4,"title":1},"32":{"body":57,"breadcrumbs":4,"title":2},"33":{"body":165,"breadcrumbs":6,"title":2},"34":{"body":79,"breadcrumbs":6,"title":2},"35":{"body":160,"breadcrumbs":6,"title":2},"36":{"body":53,"breadcrumbs":8,"title":2},"37":{"body":128,"breadcrumbs":7,"title":1},"38":{"body":225,"breadcrumbs":7,"title":1},"39":{"body":98,"breadcrumbs":7,"title":1},"4":{"body":78,"breadcrumbs":3,"title":2},"40":{"body":37,"breadcrumbs":7,"title":1},"41":{"body":96,"breadcrumbs":8,"title":2},"42":{"body":205,"breadcrumbs":9,"title":3},"43":{"body":90,"breadcrumbs":7,"title":1},"44":{"body":138,"breadcrumbs":8,"title":2},"45":{"body":274,"breadcrumbs":7,"title":1},"46":{"body":26,"breadcrumbs":8,"title":2},"47":{"body":69,"breadcrumbs":8,"title":2},"48":{"body":49,"breadcrumbs":9,"title":3},"49":{"body":93,"breadcrumbs":9,"title":3},"5":{"body":4,"breadcrumbs":2,"title":1},"50":{"body":53,"breadcrumbs":8,"title":2},"51":{"body":38,"breadcrumbs":8,"title":2},"52":{"body":118,"breadcrumbs":9,"title":3},"53":{"body":70,"breadcrumbs":8,"title":2},"54":{"body":75,"breadcrumbs":9,"title":3},"55":{"body":112,"breadcrumbs":8,"title":2},"56":{"body":50,"breadcrumbs":8,"title":2},"57":{"body":263,"breadcrumbs":8,"title":2},"58":{"body":221,"breadcrumbs":8,"title":2},"59":{"body":156,"breadcrumbs":8,"title":2},"6":{"body":148,"breadcrumbs":5,"title":3},"60":{"body":235,"breadcrumbs":8,"title":2},"61":{"body":56,"breadcrumbs":8,"title":2},"62":{"body":120,"breadcrumbs":10,"title":3},"63":{"body":68,"breadcrumbs":9,"title":2},"64":{"body":64,"breadcrumbs":9,"title":2},"65":{"body":391,"breadcrumbs":9,"title":2},"66":{"body":348,"breadcrumbs":10,"title":3},"67":{"body":13,"breadcrumbs":8,"title":2},"68":{"body":243,"breadcrumbs":9,"title":3},"69":{"body":59,"breadcrumbs":8,"title":3},"7":{"body":58,"breadcrumbs":4,"title":2},"70":{"body":79,"breadcrumbs":7,"title":2},"71":{"body":47,"breadcrumbs":7,"title":2},"72":{"body":100,"breadcrumbs":7,"title":2},"73":{"body":8,"breadcrumbs":7,"title":1},"74":{"body":148,"breadcrumbs":9,"title":3},"75":{"body":188,"breadcrumbs":10,"title":4},"76":{"body":7,"breadcrumbs":9,"title":3},"77":{"body":210,"breadcrumbs":11,"title":5},"78":{"body":9,"breadcrumbs":8,"title":2},"79":{"body":83,"breadcrumbs":7,"title":1},"8":{"body":150,"breadcrumbs":4,"title":2},"80":{"body":83,"breadcrumbs":7,"title":1},"81":{"body":125,"breadcrumbs":11,"title":5},"82":{"body":493,"breadcrumbs":8,"title":2},"83":{"body":595,"breadcrumbs":8,"title":2},"84":{"body":373,"breadcrumbs":8,"title":2},"85":{"body":124,"breadcrumbs":8,"title":2},"86":{"body":58,"breadcrumbs":8,"title":2},"87":{"body":187,"breadcrumbs":2,"title":1},"88":{"body":150,"breadcrumbs":3,"title":2},"89":{"body":103,"breadcrumbs":4,"title":3},"9":{"body":44,"breadcrumbs":5,"title":3},"90":{"body":48,"breadcrumbs":5,"title":3},"91":{"body":0,"breadcrumbs":4,"title":2},"92":{"body":27,"breadcrumbs":4,"title":2},"93":{"body":41,"breadcrumbs":4,"title":2},"94":{"body":67,"breadcrumbs":4,"title":2},"95":{"body":82,"breadcrumbs":4,"title":2},"96":{"body":85,"breadcrumbs":4,"title":2},"97":{"body":196,"breadcrumbs":4,"title":2},"98":{"body":200,"breadcrumbs":4,"title":2},"99":{"body":207,"breadcrumbs":5,"title":3}},"docs":{"0":{"body":"Miden VM is a zero-knowledge virtual machine written in Rust. For any program executed on Miden VM, a STARK-based proof of execution is automatically generated. This proof can then be used by anyone to verify that the program was executed correctly without the need for re-executing the program or even knowing the contents of the program.","breadcrumbs":"Introduction » Introduction","id":"0","title":"Introduction"},"1":{"body":"Miden VM is currently on release v0.7. In this release, most of the core features of the VM have been stabilized, and most of the STARK proof generation has been implemented. While we expect to keep making changes to the VM internals, the external interfaces should remain relatively stable, and we will do our best to minimize the amount of breaking changes going forward. At this point, Miden VM is good enough for experimentation, and even for real-world applications, but it is not yet ready for production use. The codebase has not been audited and contains known and unknown bugs and security flaws.","breadcrumbs":"Introduction » Status and features","id":"1","title":"Status and features"},"10":{"body":"The advice provider component is responsible for supplying nondeterministic inputs to the VM. These inputs only need to be known to the prover (i.e., they do not need to be shared with the verifier). The advice provider consists of three components: Advice stack which is a one-dimensional array of field elements. Being a stack, the VM can either push new elements onto the advice stack, or pop the elements from its top. Advice map which is a key-value map where keys are words and values are vectors of field elements. The VM can copy values from the advice map onto the advice stack as well as insert new values into the advice map (e.g., from a region of memory). Merkle store which contain structured data reducible to Merkle paths. Some examples of such structures are: Merkle tree, Sparse Merkle Tree, and a collection of Merkle paths. The VM can request Merkle paths from the Merkle store, as well as mutate it by updating or merging nodes contained in the store. The prover initializes the advice provider prior to executing a program, and from that point on the advice provider is manipulated solely by executing operations on the VM.","breadcrumbs":"Introduction » Overview » Nondeterministic inputs","id":"10","title":"Nondeterministic inputs"},"100":{"body":"Miden VM program decoder is responsible for ensuring that a program with a given MAST root is executed by the VM. As the VM executes a program, the decoder does the following: Decodes a sequence of field elements supplied by the prover into individual operation codes (or opcodes for short). Organizes the sequence of field elements into code blocks, and computes the hash of the program according to the methodology described here . At the end of program execution, the decoder outputs the computed program hash. This hash binds the sequence of opcodes executed by the VM to a program the prover claims to have executed. The verifier uses this hash during the STARK proof verification process to verify that the proof attests to a correct execution of a specific program (i.e., the prover didn't claim to execute program A while in fact executing a different program B). The sections below describe how Miden VM decoder works. Throughout these sections we make the following assumptions: An opcode requires 7 bits to represent. An immediate value requires one full field element to represent. A NOOP operation has a numeric value of 0, and thus, can be encoded as seven zeros. Executing a NOOP operation does not change the state of the VM, but it does advance operation counter, and may affect program hash.","breadcrumbs":"Design » Program decoder » Miden VM Program decoder","id":"100","title":"Miden VM Program decoder"},"101":{"body":"Miden VM programs consist of a set of code blocks organized into a binary tree. The leaves of the tree contain linear sequences of instructions, and control flow is defined by the internal nodes of the tree. Managing control flow in the VM is accomplished by executing control flow operations listed in the table below. Each of these operations require exactly one VM cycle to execute. Operation Description JOIN Initiates processing of a new Join block . SPLIT Initiates processing of a new Split block . LOOP Initiates processing of a new Loop block . REPEAT Initiates a new iteration of an executing loop. SPAN Initiates processing of a new Span block . RESPAN Initiates processing of a new operation batch within a span block. CALL Initiates processing of a new Call block . SYSCALL Initiates processing ofa new Syscall block . END Marks the end of a program block. HALT Marks the end of the entire program. Let's consider a simple program below: begin if.true else end\nend Block structure of this program is shown below. JOIN SPAN END SPLIT SPAN END SPAN END END\nEND Executing this program on the VM can result in one of two possible instruction sequences. First, if after operations in are executed the top of the stack is 1, the VM will execute the following: JOIN\nSPAN\n\nEND\nSPLIT\nSPAN\n\nEND\nEND\nEND\nHALT However, if after are executed, the top of the stack is 0, the VM will execute the following: JOIN\nSPAN\n\nEND\nSPLIT\nSPAN\n\nEND\nEND\nEND\nHALT The main task of the decoder is to output exactly the same program hash, regardless of which one of the two possible execution paths was taken. However, before we can describe how this is achieved, we need to give an overview of the overall decoder structure.","breadcrumbs":"Design » Program decoder » Program execution","id":"101","title":"Program execution"},"102":{"body":"The decoder is one of the more complex parts of the VM. It consists of the following components: Main execution trace consisting of 24 trace columns which contain the state of the decoder at a given cycle of a computation. Connection to the hash chiplet, which is used to offload hash computations from the decoder. 3 virtual tables (implemented via multi-set checks), which keep track of code blocks and operations executing on the VM.","breadcrumbs":"Design » Program decoder » Decoder structure","id":"102","title":"Decoder structure"},"103":{"body":"Decoder trace columns can be grouped into several logical sets of registers as illustrated below. decoder_trace.png These registers have the following meanings: Block address register a. This register contains address of the hasher for the current block (row index from the auxiliary hashing table). It also serves the role of unique block identifiers. This is convenient, because hasher addresses are guaranteed to be unique. Registers b0,...,b6, which encode opcodes for operation to be executed by the VM. Each of these registers can contain a single binary value (either 1 or 0). And together these values describe a single opcode. Hasher registers h0,...,h7. When control flow operations are executed, these registers are used to provide inputs for the current block's hash computation (e.g., for JOIN, SPLIT, LOOP, SPAN, CALL, SYSCALL operations) or to record the result of the hash computation (i.e., for END operation). However, when regular operations are executed, 2 of these registers are used to help with op group decoding, and the remaining 6 can be used to hold operation-specific helper variables. Register sp which contains a binary flag indicating whether the VM is currently executing instructions inside a span block. The flag is set to 1 when the VM executes non-control flow instructions, and is set to 0 otherwise. Register gc which keep track of the number of unprocessed operation groups in a given span block. Register ox which keeps track of a currently executing operation's index within its operation group. Operation batch flags c0,c1,c2 which indicate how many operation groups a given operation batch contains. These flags are set only for SPAN and RESPAN operations, and are set to 0's otherwise. Two additional registers (not shown) used primarily for constraint degree reduction.","breadcrumbs":"Design » Program decoder » Decoder trace","id":"103","title":"Decoder trace"},"104":{"body":"To compute hashes of program blocks, the decoder relies on the hash chiplet . Specifically, the decoder needs to perform two types of hashing operations: A simple 2-to-1 hash, where we provide a sequence of 8 field elements, and get back 4 field elements representing the result. Computing such a hash requires 8 rows in the hash chiplet. A sequential hash of n elements. Computing such a hash requires multiple absorption steps, and at each step 8 field elements are absorbed into the hasher. Thus, computing a sequential hash of n elements requires ⌈n/8⌉ rows in the hash chiplet. At the end, we also get 4 field elements representing the result. To make hashing requests to the hash chiplet and to read the results from it, we will need to divide out relevant values from the chiplets bus column bchip as described below. Simple 2-to-1 hash To initiate a 2-to-1 hash of 8 elements (v0,...,v7) we need to divide bchip by the following value: α0+α1⋅mbp+α2⋅r+i=0∑7(αi+8⋅vi) where: mbp is a label indicating beginning of a new permutation. Value of this label is computed based on hash chiplet selector flags according to the methodology described here . r is the address of the row at which the hashing begins. Some α values are skipped in the above (e.g., α3) because of the specifics of how auxiliary hasher table rows are reduced to field elements (described here ). For example, α3 is used as a coefficient for node index values during Merkle path computations in the hasher, and thus, is not relevant in this case. The α4 term is omitted when the number of items being hashed is a multiple of the rate width (8) because it is multiplied by 0 - the value of the first capacity register as determined by the hasher chiplet logic . To read the 4-element result (u0,...,u3), we need to divide bchip by the following value: α0+α1⋅mhout+α2⋅(r+7)+i=0∑3(αi+8⋅ui) where: mhout is a label indicating return of the hash value. Value of this label is computed based on hash chiplet selector flags according to the methodology described here . r is the address of the row at which the hashing began. Sequential hash To initiate a sequential hash of n elements (v0,...,vn−1), we need to divide bchip by the following value: α0+α1⋅mbp+α2⋅r+α4⋅n+i=0∑7(αi+8⋅vi) This also absorbs the first 8 elements of the sequence into the hasher state. Then, to absorb the next sequence of 8 elements (e.g., v8,...,v15), we need to divide bchip by the following value: α0+α1⋅mabp+α2⋅(r+7)+i=0∑7(αi+8⋅vi+8) Where mabp is a label indicating absorption of more elements into the hasher state. Value of this label is computed based on hash chiplet selector flags according to the methodology described here . We can keep absorbing elements into the hasher in the similar manner until all elements have been absorbed. Then, to read the result (e.g., u0,...,u3), we need to divide bchip by the following value: α0+α1⋅mhout+α2⋅(r+⌈n/8⌉⋅8−1)+i=0∑3(αi+8⋅ui) Thus, for example, if n=14, the result will of the hash will be available at hasher row r+15.","breadcrumbs":"Design » Program decoder » Program block hashing","id":"104","title":"Program block hashing"},"105":{"body":"In addition to the hash chiplet, control flow operations rely on 3 virtual tables: block stack table, block hash table, and op group table. These tables are virtual in that they don't require separate trace columns. Their state is described solely by running product columns: p1, p2, and p3. The tables are described in the following sections. Block stack table When the VM starts executing a new program block, it adds its block ID together with the ID of its parent block (and some additional info) to the block stack table. When a program block is fully executed, it is removed from the table. In this way, the table represents a stack of blocks which are currently executing on the VM. By the time program execution completes, block stack table must be empty. The table can be thought of as consisting of 3 columns as shown below: decoder_block_stack_table where: The first column (t0) contains the ID of the block. The second column (t1) contains the ID of the parent block. If the block has no parent (i.e., it is a root block of the program), parent ID is 0. The third column (t2) contains a binary value which is set to 1 is the block is a loop block, and to 0 otherwise. Running product column p1 is used to keep track of the state of the table. At any step of the computation, the current value of p1 defines which rows are present in the table. To reduce a row in the block stack table to a single value, we compute the following. row=α0+i=0∑3(αi+1⋅ti) Where α0,...,α3 are the random values provided by the verifier. Block hash table When the VM starts executing a new program block, it adds hashes of the block's children to the block hash table. And when the VM finishes executing a block, it removes its hash from the block hash table. Thus, by the time program execution completes, block hash table must be empty. The table can be thought of as consisting of 7 columns as shown below: block_hash_table where: The first column (t0) contains the ID of the block's parent. For program root, parent ID is 0. The next 4 columns (t1,...,t4) contain the hash of the block. The next column (t5) contains a binary value which is set to 1 if the block is the first child of a join block, and to 0 otherwise. The last column (t6) contains a binary value which is set to 1 if the block is a body of a loop, and to 0 otherwise. Running product column p2 is used to keep track of the state of the table. At any step of the computation, the current value of p2 defines which rows are present in the table. To reduce a row in the block hash table to a single value, we compute the following. row=α0+i=0∑6(αi+1⋅ti) Where α0,...,α7 are the random values provided by the verifier. Unlike other virtual tables, block hash table does not start out in an empty state. Specifically, it is initialized with a single row containing the hash of the program's root block. This needs to be done because the root block does not have a parent and, thus, otherwise it would never be added to the block hash table. Initialization of the block hash table is done by setting the initial value of p2 to the value of the row containing the hash of a program's root block. Op group table Op group table is used in decoding of span blocks, which are leaves in a program's MAST. As described here , a span block can contain one or more operation batches, each batch containing up to 8 operation groups. When the VM starts executing a new batch of operations, it adds all operation groups within a batch, except for the first one, to the op group table. Then, as the VM starts executing an operation group, it removes the group from the table. Thus, by the time all operation groups in a batch have been executed, the op group table must be empty. The table can be thought of as consisting of 3 columns as shown below: decoder_op_group_table The meaning of the columns is as follows: The first column (t0) contains operation batch ID. During the execution of the program, each operation batch is assigned a unique ID. The second column (t1) contains the position of the group in the span block (not just in the current batch). The position is 1-based and is counted from the end. Thus, for example, if a span block consists of a single batch with 4 groups, the position of the first group would be 4, the position of the second group would be 3 etc. (the reason for this is explained in this section). Note that the group with position 4 is not added to the table, because it is the first group in the batch, so the first row of the table will be for the group with position 3. The third column (t2) contains the actual values of operation groups (this could include up to 9 opcodes or a single immediate value). Permutation column p3 is used to keep track of the state of the table. At any step of the computation, the current value of p3 defines which rows are present in the table. To reduce a row in the op group table to a single value, we compute the following. row=α0+i=0∑2(αi+1⋅ti) Where α0,...,α3 are the random values provided by the verifier.","breadcrumbs":"Design » Program decoder » Control flow tables","id":"105","title":"Control flow tables"},"106":{"body":"In this section we describe high-level semantics of executing all control flow operations. The descriptions are not meant to be complete and omit some low-level details. However, they provide good intuition on how these operations work. JOIN operation Before a JOIN operation is executed by the VM, the prover populates h0,...,h7 registers with hashes of left and right children of the join program block as shown in the diagram below. decoder_join_operation In the above diagram, blk is the ID of the join block which is about to be executed. blk is also the address of the hasher row in the auxiliary hasher table. prnt is the ID of the block's parent. When the VM executes a JOIN operation, it does the following: Adds a tuple (blk, prnt, 0) to the block stack table. Adds tuples (blk, left_child_hash, 1, 0) and (blk, right_child_hash, 0, 0) to the block hash table. Initiates a 2-to-1 hash computation in the hash chiplet (as described here ) using blk as row address in the auxiliary hashing table and h0,...,h7 as input values. SPLIT operation Before a SPLIT operation is executed by the VM, the prover populates h0,...,h7 registers with hashes of true and false branches of the split program block as shown in the diagram below. decoder_split_operation In the above diagram, blk is the ID of the split block which is about to be executed. blk is also the address of the hasher row in the auxiliary hasher table. prnt is the ID of the block's parent. When the VM executes a SPLIT operation, it does the following: Adds a tuple (blk, prnt, 0) to the block stack table. Pops the stack and: a. If the popped value is 1, adds a tuple (blk, true_branch_hash, 0, 0) to the block hash table. b. If the popped value is 0, adds a tuple (blk, false_branch_hash, 0, 0) to the block hash table. c. If the popped value is neither 1 nor 0, the execution fails. Initiates a 2-to-1 hash computation in the hash chiplet (as described here ) using blk as row address in the auxiliary hashing table and h0,...,h7 as input values. LOOP operation Before a LOOP operation is executed by the VM, the prover populates h0,...,h3 registers with hash of the loop's body as shown in the diagram below. decoder_loop_operation In the above diagram, blk is the ID of the loop block which is about to be executed. blk is also the address of the hasher row in the auxiliary hasher table. prnt is the ID of the block's parent. When the VM executes a LOOP operation, it does the following: Pops the stack and: a. If the popped value is 1 adds a tuple (blk, prnt, 1) to the block stack table (the 1 indicates that the loop's body is expected to be executed). Then, adds a tuple (blk, loop_body_hash, 0, 1) to the block hash table. b. If the popped value is 0, adds (blk, prnt, 0) to the block stack table. In this case, nothing is added to the block hash table. c. If the popped value is neither 1 nor 0, the execution fails. Initiates a 2-to-1 hash computation in the hash chiplet (as described here ) using blk as row address in the auxiliary hashing table and h0,...,h3 as input values. SPAN operation Before a SPAN operation is executed by the VM, the prover populates h0,...,h7 registers with contents of the first operation batch of the span block as shown in the diagram below. The prover also sets the group count register gc to the total number of operation groups in the span block. decoder_span_block In the above diagram, blk is the ID of the span block which is about to be executed. blk is also the address of the hasher row in the auxiliary hasher table. prnt is the ID of the block's parent. g0_op0 is the first operation of the batch, and g_0' is the first operation group of the batch with the first operation removed. When the VM executes a SPAN operation, it does the following: Adds a tuple (blk, prnt, 0) to the block stack table. Adds groups of the operation batch, as specified by op batch flags (see here ) to the op group table. Initiates a sequential hash computation in the hash chiplet (as described here ) using blk as row address in the auxiliary hashing table and h0,...,h7 as input values. Sets the in_span register to 1. Decrements group_count register by 1. Sets the op_index register to 0. END operation Before an END operation is executed by the VM, the prover populates h0,...,h3 registers with the hash of the block which is about to end. The prover also sets values in h4 and h5 registers as follows: h4 is set to 1 if the block is a body of a loop block. We denote this value as f0. h5 is set to 1 if the block is a loop block. We denote this value as f1. decoder_end_operation In the above diagram, blk is the ID of the block which is about to finish executing. prnt is the ID of the block's parent. When the VM executes an END operation, it does the following: Removes a tuple (blk, prnt, f1) from the block stack table. Removes a tuple (prnt, current_block_hash, nxt, f0) from the block hash table, where nxt=0 if the next operation is either END or REPEAT, and 1 otherwise. Reads the hash result from the hash chiplet (as described here ) using blk + 7 as row address in the auxiliary hashing table. If h5=1 (i.e., we are exiting a loop block), pops the value off the top of the stack and verifies that the value is 0. Verifies that group_count register is set to 0. HALT operation Before a HALT operation is executed by the VM, the VM copies values in h0,...,h3 registers to the next row as illustrated in the diagram below: decoder_halt_operation In the above diagram, blk is the ID of the block which is about to finish executing. When the VM executes a HALT operation, it does the following: Verifies that block address register is set to 0. If we are not at the last row of the trace, verifies that the next operation is HALT. Copies values of h0,...,h3 registers to the next row. Populates all other decoder registers with 0's in the next row. REPEAT operation Before a REPEAT operation is executed by the VM, the VM copies values in registers h0,...,h4 to the next row as shown in the diagram below. decoder_repeat_operation In the above diagram, blk is the ID of the loop's body and prnt is the ID of the loop. When the VM executes a REPEAT operation, it does the following: Checks whether register h4 is set to 1. If it isn't (i.e., we are not in a loop), the execution fails. Pops the stack and if the popped value is 1, adds a tuple (prnt, loop_body_loop 0, 1) to the block hash table. If the popped value is not 1, the execution fails. The effect of the above is that the VM needs to execute the loop's body again to clear the block hash table. RESPAN operation Before a RESPAN operation is executed by the VM, the VM copies the ID of the current block blk and the number of remaining operation groups in the span to the next row, and sets the value of in_span column to 0. The prover also sets the value of h1 register for the next row to the ID of the current block's parent prnt as shown in the diagram below: decoder_respan_operation In the above diagram, g0_op0 is the first operation of the new operation batch, and g0' is the first operation group of the batch with g0_op0 operation removed. When the VM executes a RESPAN operation, it does the following: Increments block address by 8. Removes the tuple (blk, prnt, 0) from the block stack table. Adds the tuple (blk+8, prnt, 0) to the block stack table. Absorbs values in registers h0,...,h7 into the hasher state of the hash chiplet (as described here ). Sets the in_span register to 1. Adds groups of the operation batch, as specified by op batch flags (see here ) to the op group table using blk+8 as batch ID. The net result of the above is that we incremented the ID of the current block by 8 and added the next set of operation groups to the op group table.","breadcrumbs":"Design » Program decoder » Control flow operation semantics","id":"106","title":"Control flow operation semantics"},"107":{"body":"When decoding a program, we start at the root block of the program. We can compute the hash of the root block directly from hashes of its children. The prover provides hashes of the child blocks non-deterministically, and we use them to compute the program's hash (here we rely on the hash chiplet). We then verify the program hash via boundary constraints. Thus, if the prover provided valid hashes for the child blocks, we will get the expected program hash. Now, we need to verify that the VM executed the child blocks correctly. We do this recursively similar to what is described above: for each of the blocks, the prover provides hashes of its children non-deterministically and we verify that the hash has been computed correctly. We do this until we get to the leaf nodes (i.e., span blocks). Hashes of span blocks are computed sequentially from the instructions executed by the VM. The sections below illustrate how different types of code blocks are decoded by the VM.","breadcrumbs":"Design » Program decoder » Program decoding","id":"107","title":"Program decoding"},"108":{"body":"When decoding a join bock, the VM first executes a JOIN operation, then executes the first child block, followed by the second child block. Once the children of the join block are executed, the VM executes an END operation. This is illustrated in the diagram below. decoder_join_block_decoding As described previously, when the VM executes a JOIN operation, hashes of both children are added to the block hash table. These hashes are removed only when the END operations for the child blocks are executed. Thus, until both child blocks are executed, the block hash table is not cleared.","breadcrumbs":"Design » Program decoder » JOIN block decoding","id":"108","title":"JOIN block decoding"},"109":{"body":"When decoding a split block, the decoder pops an element off the top of the stack, and if the popped element is 1, executes the block corresponding to the true branch. If the popped element is 0, the decoder executes the block corresponding to the false branch. This is illustrated on the diagram below. decoder_split_block_decoding As described previously, when the VM executes a SPLIT operation, only the hash of the branch to be executed is added to the block hash table. Thus, until the child block corresponding to the required branch is executed, the block hash table is not cleared.","breadcrumbs":"Design » Program decoder » SPLIT block decoding","id":"109","title":"SPLIT block decoding"},"11":{"body":"Before you can use Miden VM, you'll need to make sure you have Rust installed . Miden VM v0.7 requires Rust version 1.67 or later. Miden VM consists of several crates, each of which exposes a small set of functionality. The most notable of these crates are: miden-processor , which can be used to execute Miden VM programs. miden-prover , which can be used to execute Miden VM programs and generate proofs of their execution. miden-verifier , which can be used to verify proofs of program execution generated by Miden VM prover. The above functionality is also exposed via the single miden-vm crate, which also provides a CLI interface for interacting with Miden VM.","breadcrumbs":"Introduction » Usage » Usage","id":"11","title":"Usage"},"110":{"body":"When decoding a loop bock, we need to consider two possible scenarios: When the top of the stack is 1, we need to enter the loop and execute loop body at least once. When the top of the stack is, 0 we need to skip the loop. In both cases, we need to pop an element off the top of the stack. Executing the loop If the top of the stack is 1, the VM executes a LOOP operation. This removes the top element from the stack and adds the hash of the loop's body to the block hash table. It also adds a row to the block stack table setting the is_loop value to 1. To clear the block hash table, the VM needs to execute the loop body (executing the END operation for the loop body block will remove the corresponding row from the block hash table). After loop body is executed, if the top of the stack is 1, the VM executes a REPEAT operation (executing REPEAT operation when the top of the stack is 0 will result in an error). This operation again adds the hash of the loop's body to the block hash table. Thus, the VM needs to execute the loop body again to clear the block hash table. This process is illustrated on the diagram below. decoder_loop_execution The above steps are repeated until the top of the stack becomes 0, at which point the VM executes the END operation. Since in the beginning we set is_loop column in the block stack table to 1, h6 column will be set to 1 when the END operation is executed. Thus, executing the END operation will also remove the top value from the stack. If the removed value is not 0, the operation will fail. Thus, the VM can exit the loop block only when the top of the stack is 0. Skipping the loop If the top of the stack is 0, the VM still executes the LOOP operation. But unlike in the case when we need to enter the loop, the VM sets is_loop flag to 0 in the block stack table, and does not add any rows to the block hash table. The last point means that the only possible operation to be executed after the LOOP operation is the END operation. This is illustrated in the diagram below. decoder_loop_skipping Moreover, since we've set the is_loop flag to 0, executing the END operation does not remove any items from the stack.","breadcrumbs":"Design » Program decoder » LOOP block decoding","id":"110","title":"LOOP block decoding"},"111":{"body":"As described here , a span block can contain one or more operation batches, each batch containing up to 8 operation groups. At the high level, decoding of a span block is done as follows: At the beginning of the block, we make a request to the hash chiplet which initiates the hasher, absorbs the first operation batch (8 field elements) into the hasher, and returns the row address of the hasher, which we use as the unique ID for the span block (see here ). We then add groups of the operation batch, as specified by op batch flags (but always skipping the first one) to the op group table. We then remove operation groups from the op group table in the FIFO order one by one, and decode them in the manner similar to the one described here . Once all operation groups in a batch have been decoded, we absorb the next batch into the hasher and repeat the process described above. Once all batches have been decoded, we return the hash of the span block from the hasher. Overall, three control flow operations are used when decoding a span block: SPAN operation is used to initialize a hasher and absorbs the first operation batch into it. RESPAN operation is used to absorb any additional batches in the span block. END operation is used to end the decoding of a span block and retrieve its hash from the hash chiplet. Operation group decoding As described here , an operation group is a sequence of operations which can be encoded into a single field element. For a field element of 64 bits, we can fit up to 9 operations into a group. We do this by concatenating binary representations of opcodes together with the first operation located in the least significant position. We can read opcodes from the group by simply subtracting them from the op group value and then dividing the result by 27. Once the value of the op group reaches 0, we know that all opcodes have been read. Graphically, this can be illustrated like so: decoder_operation_group_decoding Notice that despite their appearance, op bits is actually 7 separate registers, while op group is just a single register. We also need to make sure that at most 9 operations are executed as a part of a single group. For this purpose we use the op_index column. Values in this column start out at 0 for each operation group, and are incremented by 1 for each executed operation. To make sure that at most 9 operations can be executed in a group, the value of the op_index column is not allowed to exceed 8. Operation batch flags Operation batch flags are used to specify how many operation groups comprise in a given operation batch. For most batches, the number of groups will be equal to 8. However, for the last batch in a block (or for the first batch, if the block consists of only a single batch), the number of groups may be less than 8. Since processing of new batches starts only on SPAN and RESPAN operations, only for these operations the flags can be set to non-zero values. To simplify the constraint system, number of groups in a batch can be only one of the following values: 1, 2, 4, and 8. If number of groups in a batch does not match one of these values, the batch is simply padded with NOOP's (one NOOP per added group). Consider the diagram below. decoder_OPERATION_batch_flags In the above, the batch contains 3 operation groups. To bring the count up to 4, we consider the 4-th group (i.e., 0) to be a part of the batch. Since a numeric value for NOOP operation is 0, op group value of 0 can be interpreted as a single NOOP. Operation batch flags (denoted as c0,c1,c2), encode the number of groups and define how many groups are added to the op group table as follows: (1, 0, 0) - 8 groups. Groups in h1,...h7 are added to the op group table. (0, 1, 0) - 4 groups. Groups in h1,...h3 are added to the op group table (0, 0, 1) - 2 groups. Groups in h1 is added to the op group table. (0, 1, 1) - 1 group. Nothing is added to the op group table (0, 0, 0) - not a SPAN or RESPAN operation. Single-batch span The simplest example of a span block is a block with a single batch. This batch may contain up to 8 operation groups (e.g., g0,...,g7). Decoding of such a block is illustrated in the diagram below. decoder_single_batch_span Before the VM starts processing this span block, the prover populates registers h0,...,h7 with operation groups g0,...,g7. The prover also puts the total number of groups into the group count register gc. In this case, the total number of groups is 8. When the VM executes a SPAN operation, it does the following: Initiates hashing of elements g0,...,g7 using hash chiplet. The hasher address is used as the block ID blk, and it is inserted into addr register in the next row. Adds a tuple (blk, prnt, 0) to the block stack table. Sets the is_span register to 1 in the next row. Sets the op_index register to 0 in the next row. Decrements group_count register by 1. Sets op bits registers at the next step to the first operation of g0, and also copies g0 with the first operation removed (denoted as g0′) to the next row. Adds groups g1,...,g7 to the op group table. Thus, after the SPAN operation is executed, op group table looks as shown below. decoder_op_group_table_after_span_op Then, with every step the next operation is removed from g0, and by step 9, value of g0 is 0. Once this happens, the VM does the following: Decrements group_count register by 1. Sets op bits registers at the next step to the first operation of g1. Sets hasher register h0 to the value of g1 with the first operation removed (denoted as g1′). Removes row (blk, 7, g1) from the op group table. This row can be obtained by taking values from registers: addr, group_count, and h0′+i=0∑6(2i⋅bi′) for i∈[0,7), where h0′ and bi′ refer to values in the next row for the first hasher column and op_bits columns respectively. Note that we rely on the group_count column to construct the row to be removed from the op group table. Since group count is decremented from the total number of groups to 0, to remove groups from the op group table in correct order, we need to assign group position to groups in the op group table in the reverse order. For example, the first group to be removed should have position 7, the second group to be removed should have position 6 etc. Decoding of g1 is performed in the same manner as decoding of g0: with every subsequent step the next operation is removed from g1 until its value reaches 0, at which point, decoding of group g2 begins. The above steps are executed until value of group_count reaches 0. Once group_count reaches 0 and the last operation group g7 is executed, the VM executed the END operation. Semantics of the END operation are described here . Notice that by the time we get to the END operation, all rows are removed from the op group table. Multi-batch span A span block may contain an unlimited number of operation batches. As mentioned previously, to absorb a new batch into the hasher, the VM executes a RESPAN operation. The diagram below illustrates decoding of a span block consisting of two operation batches. decoder_multi_batch_span Decoding of such a block will look very similar to decoding of the single-span block described previously, but there also will be some differences. First, after the SPAN operation is executed, the op group table will look as follows: decoder_op_group_table_multi_span Notice that while the same groups (g1,...,g7) are added to the table, their positions now reflect the total number of groups in the span block. Second, executing a RESPAN operation increments hasher address by 8. This is done because absorbing additional 8 elements into the hasher state requires 8 more rows in the auxiliary hasher table. Incrementing value of addr register actually changes the ID of the span block (though, for a span block, it may be more appropriate to view values in this column as IDs of individual operation batches). This means that we also need to update the block stack table. Specifically, we need to remove row (blk, prnt, 0) from it, and replace it with row (blk + 8, prnt, 0). To perform this operation, the prover sets the value of h1 in the next row to prnt. Executing a RESPAN operation also adds groups g9,g10,g11 to the op group table, which now would look as follows: decoder_op_group_table_post_respan Then, the execution of the second batch proceeds in the manner similar to the first batch: we remove operations from the current op group, execute them, and when the value of the op group reaches 0, we start executing the next group in the batch. Thus, by the time we get to the END operation, the op group table should be empty. When executing the END operation, the hash of the span block will be read from hasher row at address addr + 7, which, in our example, will be equal to blk + 15. Handling immediate values Miden VM operations can carry immediate values. Currently, the only such operation is a PUSH operation. Since immediate values can be thought of as constants embedded into program code, we need to make sure that changing immediate values affects program hash. To achieve this, we treat immediate values in a manner similar to how we treat operation groups. Specifically, when computing hash of a span block, immediate values are absorbed into the hasher state in the same way as operation groups are. As mentioned previously, an immediate value is represented by a single field element, and thus, an immediate value takes place of a single operation group. The diagram below illustrates decoding of a span block with 9 operations one of which is a PUSH operation. decoder_decoding_span_block_with_push In the above, when the SPAN operation is executed, immediate value imm0 will be added to the op group table, which will look as follows: decoder_imm_vale_op_group_table Then, when the PUSH operation is executed, the VM will do the following: Decrement group_count by 1. Remove a row from the op group table equal to (addr, group_count, s0'), where s0′ is the value of the top of the stack at the next row (i.e., it is the value that is pushed onto the stack). Thus, after the PUSH operation is executed, the op group table is cleared, and group count decreases to 0 (which means that there are no more op groups to execute). Decoding of the rest of the op group proceeds as described in the previous sections.","breadcrumbs":"Design » Program decoder » SPAN block decoding","id":"111","title":"SPAN block decoding"},"112":{"body":"Let's run through an example of decoding a simple program shown previously: begin if.true else end\nend Translating this into code blocks with IDs assigned, we get the following: b0: JOIN b1: SPAN b1: END b2: SPLIT b3: SPAN b3: END b4: SPAN b4: END b2: END\nb0: END The root of the program is a join block b0. This block contains two children: a span bock b1 and a split block b2. In turn, the split block b2 contains two children: a span block b3 and a span block b4. When this program is executed on the VM, the following happens: Before the program starts executing, block hash table is initialized with a single row containing the hash of b0. Then, JOIN operation for b0 is executed. It adds hashes of b1 and b2 to the block hash table. It also adds an entry for b0 to the block stack table. States of both tables after this step are illustrated below. Then, span b1 is executed and a sequential hash of its operations is computed. Also, when SPAN operation for b1 is executed, an entry for b1 is added to the block stack table. At the end of b1 (when END is executed), entries for b1 are removed from both the block hash and block stack tables. Then, SPLIT operation for b2 is executed. It adds an entry for b2 to the block stack table. Also, depending on whether the top of the stack is 1 or 0, either hash of b3 or hash of b4 is added to the block hash table. Let's say the top of the stack is 1. Then, at this point, the block hash and block stack tables will look like in the second picture below. Then, span b3 is executed and a sequential hash of its instructions is computed. Also, when SPAN operation for b3 is executed, an entry for b3 is added to the block stack table. At the end of b3 (when END is executed), entries for b3 are removed from both the block hash and block stack tables. Then, END operation for b2 is executed. It removes the hash of b2 from the block hash table, and also removes the entry for b2 from the block stack table. The third picture below illustrates the states of block stack and block hash tables after this step. Then, END for b0 is executed, which removes entries for b0 from the block stack and block hash tables. At this point both tables are empty. Finally, a sequence of HALT operations is executed until the length of the trace reaches a power of two. States of block hash and block stack tables after step 2: decoder_state_block_hash_2 States of block hash and block stack tables after step 4: decoder_state_block_hash_4 States of block hash and block stack tables after step 6: decoder_state_block_hash_6","breadcrumbs":"Design » Program decoder » Program decoding example","id":"112","title":"Program decoding example"},"113":{"body":"In this section we describe AIR constraint for Miden VM program decoder. These constraints enforce that the execution trace generated by the prover when executing a particular program complies with the rules described in the previous section . To refer to decoder execution trace columns, we use the names shown on the diagram below (these are the same names as in the previous section). Additionally, we denote the register containing the value at the top of the stack as s0. air_decoder_columns We assume that the VM exposes a flag per operation which is set to 1 when the operation is executed, and to 0 otherwise. The notation for such flags is fopname. For example, when the VM executes a PUSH operation, flag fpush=1. All flags are mutually exclusive - i.e., when one flag is set to 1 all other flags are set to 0. The flags are computed based on values in op_bits columns. AIR constraints for the decoder involve operations listed in the table below. For each operation we also provide the degree of the corresponding flag and the effect that the operation has on the operand stack (however, in this section we do not cover the constraints needed to enforce the correct transition of the operand stack). Operation Flag Degree Effect on stack JOIN fjoin 5 Stack remains unchanged. SPLIT fsplit 5 Top stack element is dropped. LOOP floop 5 Top stack element is dropped. REPEAT frepeat 4 Top stack element is dropped. SPAN fspan 5 Stack remains unchanged. RESPAN frespan 4 Stack remains unchanged. CALL fcall 4 Top stack element is dropped. SYSCALL fsyscall 4 Top stack element is dropped. END fend 4 When exiting a loop block, top stack element is dropped; otherwise, the stack remains unchanged. HALT fhalt 4 Stack remains unchanged. PUSH fpush 4 An immediate value is pushed onto the stack. We also use the control flow flag fctrl exposed by the VM, which is set when any one of the above control flow operations is being executed. It has degree 3. As described previously , the general idea of the decoder is that the prove provides the program to the VM by populating some of cells in the trace non-deterministically. Values in these are then used to update virtual tables (represented via multiset checks) such as block hash table, block stack table etc. Transition constraints are used to enforce that the tables are updates correctly, and we also apply boundary constraints to enforce the correct initial and final states of these tables. One of these boundary constraints binds the execution trace to the hash of the program being executed. Thus, if the virtual tables were updated correctly and boundary constraints hold, we can be convinced that the prover executed the claimed program on the VM. In the sections below, we describe constraints according to their logical grouping. However, we start out with a set of general constraints which are applicable to multiple parts of the decoder.","breadcrumbs":"Design » Program decoder » Decoder constraints » Miden VM decoder AIR constraints","id":"113","title":"Miden VM decoder AIR constraints"},"114":{"body":"When SPLIT or LOOP operation is executed, the top of the operand stack must contain a binary value: (fsplit+floop)⋅(s02−s0)=0 | degree=7 When REPEAT operation is executed, the value at the top of the operand stack must be 1: frepeat⋅(1−s0)=0 | degree=5 Also, when REPEAT operation is executed, the value in h4 column (the is_loop_body flag), must be set to 1. This ensures that REPEAT operation can be executed only inside a loop: frepeat⋅(1−h4)=0 | degree=5 When RESPAN operation is executed, we need to make sure that the block ID is incremented by 8: frespan⋅(a′−a−8)=0 | degree=5 When END operation is executed and we are exiting a loop block (i.e., is_loop, value which is stored in h5, is 1), the value at the top of the operand stack must be 0: fend⋅h5⋅s0=0 | degree=6 Also, when END operation is executed and the next operation is REPEAT, values in h0,...,h4 (the hash of the current block and the is_loop_body flag) must be copied to the next row: fend⋅frepeat′⋅(hi′−hi)=0 for i∈[0,5) | degree=9 A HALT instruction can be followed only by another HALT instruction: fhalt⋅(1−fhalt′)=0 | degree=8 When a HALT operation is executed, block address column must be 0: fhalt⋅a=0 | degree=5 Values in op_bits columns must be binary (i.e., either 1 or 0): bi2−bi=0 for i∈[0,7) | degree=2 When the value in in_span column is set to 1, control flow operations cannot be executed on the VM, but when in_span flag is 0, only control flow operations can be executed on the VM: 1−sp−fctrl=0 | degree=3","breadcrumbs":"Design » Program decoder » Decoder constraints » General constraints","id":"114","title":"General constraints"},"115":{"body":"As described previously , when the VM starts executing a new block, it also initiates computation of the block's hash. There are two separate methodologies for computing block hashes. For join , split , and loop blocks, the hash is computed directly from the hashes of the block's children. The prover provides these child hashes non-deterministically by populating registers h0,...,h7. The hasher is initialized using the hash chiplet, and we use the address of the hasher as the block's ID. The result of the hash is available 7 rows down in the hasher table (i.e., at row with index equal to block ID plus 7). We read the result from the hasher table at the time the END operation is executed for a given block. For span blocks, the hash is computed by absorbing a linear sequence of instructions (organized into operation groups and batches) into the hasher and then returning the result. The prover provides operation batches non-deterministically by populating registers h0,...,h7. Similarly to other blocks, the hasher is initialized using the hash chiplet at the start of the block, and we use the address of the hasher as the ID of the first operation batch in the block. As we absorb additional operation batches into the hasher (by executing RESPAN operation), the batch address is incremented by 8. This moves the \"pointer\" into the hasher table 8 rows down with every new batch. We read the result from the hasher table at the time the END operation is executed for a given block.","breadcrumbs":"Design » Program decoder » Decoder constraints » Block hash computation constraints","id":"115","title":"Block hash computation constraints"},"116":{"body":"The decoder communicates with the hash chiplet via the chiplets bus . This works by dividing values of the multiset check column bchip by the values of operations providing inputs to or reading outputs from the hash chiplet. A constraint to enforce this would look as bchip′⋅u=bchip, where u is the value which defines the operation. In constructing value of u for decoder AIR constraints, we will use the following labels (see here for an explanation of how values for these labels are computed): mbp this label specifies that we are starting a new hash computation. mabp this label specifies that we are absorbing the next sequence of 8 elements into an ongoing hash computation. mhout this label specifies that we are reading the result of a hash computation. To simplify constraint description, we define the following variables: hinit=α0+α1⋅mbp+α2⋅a′+i=0∑7(αi+8⋅hi) In the above, hinit can be thought of as initiating a hasher with address a′ and absorbing 8 elements from the hasher state (h0,...,h7) into it. Control blocks are always padded to fill the hasher rate and as such the α4 (first capacity register) term is set to 0. habp=α0+α1⋅mabp+α2⋅a′+i=0∑7(αi+8⋅hi) It should be noted that a refers to a column in the decoder, as depicted. The addresses in this column are set using the address from the hasher chiplet for the corresponding hash initialization / absorption / return. In the case of habp the value of the address in column a in the current row of the decoder is set to equal the value of the address of the row in the hasher chiplet where the previous absorption (or initialization) occurred. a′ is the address of the next row of the decoder, which is set to equal the address in the hasher chiplet where the absorption referred to by the habp label is happening. hres=α0+α1⋅mhout+α2⋅(a+7)+i=0∑3(αi+8⋅hi) In the above, a represents the address value in the decoder which corresponds to the hasher chiplet address at which the hasher was initialized (or the last absorption took place). As such, a+7 corresponds to the hasher chiplet address at which the result is returned. fctrli=fjoin+fsplit+floop+fcall | degree=5 In the above, fctrli is set to 1 when a control flow operation that signifies the initialization of a control block is being executed on the VM. Otherwise, it is set to 0. An exception is made for the SYSCALL operation. Although it also signifies the initialization of a control block, it must additionally send a procedure access request to the kernel ROM chiplet via the chiplets bus. Therefore, it is excluded from this flag and its communication with the chiplets bus is handled separately. d=b=0∑6(bi⋅2i) In the above, d represents the opcode value of the opcode being executed on the virtual machine. It is calculated via a bitwise combination of the op bits. We leverage the opcode value to achieve domain separation when hashing control blocks. This is done by populating the second capacity register of the hasher with the value d via the α5 term when initializing the hasher. Using the above variables, we define operation values as described below. When a control block initializer operation (JOIN, SPLIT, LOOP, CALL, SYSCALL) is executed, a new hasher is initialized and the contents of h0,...,h7 are absorbed into the hasher. As mentioned above, the opcode value d is populated in the second capacity resister via the α5 term. uctrli=fctrli⋅(hinit+α5⋅d) | degree=6 As mentioned previously, the value sent by the SYSCALL operation is defined separately, since in addition to communicating with the hash chiplet it must also send a kernel procedure access request to the kernel ROM chiplet. This value of this kernel procedure request is described by kproc. kproc=α6+α7⋅opkrom+i=0∑3(αi+8⋅hi) In the above, opkrom is the unique operation label of the kernel procedure call operation. The values h0,h1,h2,h3 contain the root hash of the procedure being called, which is the procedure that must be requested from the kernel ROM chiplet. usyscall=fsyscall⋅(hinit+α5⋅d)⋅kproc | degree=7 The above value sends both the hash initialization request and the kernel procedure access request to the chiplets bus when the SYSCALL operation is executed. When SPAN operation is executed, a new hasher is initialized and contents of h0,...,h7 are absorbed into the hasher. The number of operation groups to be hashed is padded to a multiple of the rate width (8) and so the α4 is set to 0: uspan=fspan⋅hinit | degree=6 When RESPAN operation is executed, contents of h0,...,h7 (which contain the new operation batch) are absorbed into the hasher: urespan=frespan⋅habp | degree=5 When END operation is executed, the hash result is copied into registers h0,..,h3: uend=fend⋅hres | degree=5 Using the above definitions, we can describe the constraint for computing block hashes as follows: bchip′⋅(uctrli+usyscall+uspan+urespan+uend+1−(fctrli+fsyscall+fspan+frespan+fend))=bchip We need to add 1 and subtract the sum of the relevant operation flags to ensure that when none of the flags is set to 1, the above constraint reduces to bchip′=bchip. The degree of this constraint is 8.","breadcrumbs":"Design » Program decoder » Decoder constraints » Chiplets bus constraints","id":"116","title":"Chiplets bus constraints"},"117":{"body":"As described previously , block stack table keeps track of program blocks currently executing on the VM. Thus, whenever the VM starts executing a new block, an entry for this block is added to the block stack table. And when execution of a block completes, it is removed from the block stack table. Adding and removing entries to/from the block stack table is accomplished as follows: To add an entry, we multiply the value in column p1 by a value representing a tuple (blk_id, prnt_id, is_loop). A constraint to enforce this would look as p1′=p1⋅v, where v is the value representing the row to be added. To remove an entry, we divide the value in column p1 by a value representing a tuple (blk_id, prnt_id, is_loop). A constraint to enforce this would look as p1′⋅u=p1, where u is the value representing the row to be removed. Before describing the constraints for the block stack table, we first describe how we compute the values to be added and removed from the table for each operation. In the below, for block start operations (JOIN, SPLIT, LOOP, SPAN) a refers to the ID of the parent block, and a′ refers to the ID of the starting block. For END operation, the situation is reversed: a is the ID of the ending block, and a′ is the ID of the parent block. For RESPAN operation, a refers to the ID of the current operation batch, a′ refers to the ID of the next batch, and the parent ID for both batches is set by the prover non-deterministically in register h1. When JOIN operation is executed, row (a′,a,0) is added to the block stack table: vjoin=fjoin⋅(α0+α1⋅a′+α2⋅a) | degree=6 When SPLIT operation is executed, row (a′,a,0) added to the block stack table: vsplit=fsplit⋅(α0+α1⋅a′+α2⋅a) | degree=6 When LOOP operation is executed, row (a′,a,1) is added to the block stack table if the value at the top of the operand stack is 1, and row (a′,a,0) is added to the block stack table if the value at the top of the operand stack is 0: vloop=floop⋅(α0+α1⋅a′+α2⋅a+α3⋅s0) | degree=6 When SPAN operation is executed, row (a′,a,0) is added to the block stack table: vspan=fspan⋅(α0+α1⋅a′+α2⋅a) | degree=6 When RESPAN operation is executed, row (a,h1′,0) is removed from the block stack table, and row (a′,h1′,0) is added to the table. The prover sets the value of register h1 at the next row to the ID of the parent block: urespan=frespan⋅(α0+α1⋅a+α2⋅h1′) | degree=5vrespan=frespan⋅(α0+α1⋅a′+α2⋅h1′) | degree=5 When END operation is executed, row (a,a′,h5) is removed from the block span table. Register h5 contains the is_loop flag: uend=fend⋅(α0+α1⋅a+α2⋅a′+α3⋅h5) | degree=5 Using the above definitions, we can describe the constraint for updating the block stack table as follows: p1′⋅(uend+urespan+1−(fend+frespan))=p1⋅(vjoin+vsplit+vloop+vspan+vrespan+1−(fjoin+fsplit+floop+fspan+frespan)) We need to add 1 and subtract the sum of the relevant operation flags from each side to ensure that when none of the flags is set to 1, the above constraint reduces to p1′=p1. The degree of this constraint is 7. In addition to the above transition constraint, we also need to impose boundary constraints against the p1 column to make sure the first and the last value in the column is set to 1. This enforces that the block stack table starts and ends in an empty state.","breadcrumbs":"Design » Program decoder » Decoder constraints » Block stack table constraints","id":"117","title":"Block stack table constraints"},"118":{"body":"As described previously , when the VM starts executing a new program block, it adds hashes of the block's children to the block hash table. And when the VM finishes executing a block, it removes the block's hash from the block hash table. This means that the block hash tables gets updated when we execute JOIN, SPLIT, LOOP, REPEAT, and END operations (executing SPAN operation does not affect the block hash table because a span block has no children). Adding and removing entries to/from the block hash table is accomplished as follows: To add an entry, we multiply the value in column p2 by a value representing a tuple (prnt_id, block_hash, is_first_child, is_loop_body). A constraint to enforce this would look as p2′=p2⋅v, where v is the value representing the row to be added. To remove an entry, we divide the value in column p2 by a value representing a tuple (prnt_id, block_hash, is_first_child, is_loop_body). A constraint to enforce this would look as p2′⋅u=p2, where u is the value representing the row to be removed. To simplify constraint descriptions, we define values representing left and right children of a block as follows: ch1=α0+α1⋅a′+i=0∑3(αi+2⋅hi) | degree=1ch2=α0+α1⋅a′+i=0∑3(αi+2⋅hi+4) | degree=1 Graphically, this looks like so: air_decoder_left_right_child In a similar manner, we define a value representing the result of hash computation as follows: bh=α0+α1⋅a+i=0∑3(αi+2⋅hi)+α7⋅h4 | degree=1 Note that in the above we use a (block address from the current row) rather than a′ (block address from the next row) as we did for for values of ch1 and ch2. Also, note that we are not adding a flag indicating whether the block is the first child of a join block (i.e., α6 term is missing). It will be added later on. Using the above variables, we define row values to be added to and removed from the block hash table as follows. When JOIN operation is executed, hashes of both child nodes are added to the block hash table. We add α6 term to the first child value to differentiate it from the second child (i.e., this sets is_first_child to 1): vjoin=fjoin⋅(ch1+α6)⋅ch2 | degree=7 When SPLIT operation is executed and the top of the stack is 1, hash of the true branch is added to the block hash table, but when the top of the stack is 0, hash of the false branch is added to the block hash table: vsplit=fsplit⋅(s0⋅ch1+(1−s0)⋅ch2) | degree=7 When LOOP operation is executed and the top of the stack is 1, hash of loop body is added to the block hash table. We add α7 term to indicate that the child is a body of a loop. The below also means that if the top of the stack is 0, nothing is added to the block hash table as the expression evaluates to 0: vloop=floop⋅s0⋅(ch1+α7) | degree=7 When REPEAT operation is executed, hash of loop body is added to the block hash table. We add α7 term to indicate that the child is a body of a loop: vrepeat=frepeat⋅(ch1+α7) | degree=5 When END operation is executed, hash of the completed block is removed from the block hash table. However, we also need to differentiate between removing the first and the second child of a join block. We do this by looking at the next operation. Specifically, if the next operation is neither END nor REPEAT we know that another block is about to be executed, and thus, we have just finished executing the first child of a join block. Thus, if the next operation is neither END nor REPEAT we need to set the term for α6 coefficient to 1 as shown below: uend=fend⋅(bh+α6⋅(1−(fend′+frepeat′))) | degree=8 Using the above definitions, we can describe the constraint for updating the block hash table as follows: p2′⋅(uend+1−fend)=p2⋅(vjoin+vsplit+vloop+vrepeat+1−(fjoin+fsplit+floop+frepeat)) We need to add 1 and subtract the sum of the relevant operation flags from each side to ensure that when none of the flags is set to 1, the above constraint reduces to p2′=p2. The degree of this constraint is 9. In addition to the above transition constraint, we also need to set the following boundary constraints against the p2 column: The first value in the column represents a row for the entire program. Specifically, the row tuple would be (0, program_hash, 0, 0). This row should be removed from the table when the last END operation is executed. The last value in the column is 1 - i.e., the block hash table is empty.","breadcrumbs":"Design » Program decoder » Decoder constraints » Block hash table constraints","id":"118","title":"Block hash table constraints"},"119":{"body":"Span block constraints ensure proper decoding of span blocks. In addition to the block stack table constraints and block hash table constraints described previously, decoding of span blocks requires constraints described below.","breadcrumbs":"Design » Program decoder » Decoder constraints » Span block","id":"119","title":"Span block"},"12":{"body":"","breadcrumbs":"Introduction » Usage » CLI interface","id":"12","title":"CLI interface"},"120":{"body":"The in_span column (denoted as sp) is used to identify rows which execute non-control flow operations. The values in this column are set as follows: Executing a SPAN operation sets the value of in_span column to 1. The value remains 1 until the END operation is executed. If RESPAN operation is executed between SPAN and END operations, in the row at which RESPAN operation is executed in_span is set to 0. It is then reset to 1 in the following row. In all other cases, value in the in_span column should be 0. The picture below illustrates the above rules. air_decoder_in_spans_column_constraint To enforce the above rules we need the following constraints. When executing SPAN or RESPAN operation, the next value in sp column must be set to 1: (fspan+frespan)⋅(1−sp′)=0 | degree=6 When the next operation is END or RESPAN, the next value in sp column must be set 0. (fend′+frespan′)⋅sp′=0 | degree=5 In all other cases, the value in sp column must be copied over to the next row: (1−fspan−frespan−fend′−frespan′)⋅(sp′−sp)=0 | degree=6 Additionally, we will need to impose a boundary constraint which specifies that the first value in sp=0. Note, however, that we do not need to impose a constraint ensuring that values in sp are binary - this will follow naturally from the above constraints. Also, note that the combination of the above constraints makes it impossible to execute END or RESPAN operations right after SPAN or RESPAN operations.","breadcrumbs":"Design » Program decoder » Decoder constraints » In-span column constraints","id":"120","title":"In-span column constraints"},"121":{"body":"When we are inside a span block, values in block address columns (denoted as a) must remain the same. This can be enforced with the following constraint: sp⋅(a′−a)=0 | degree=2 Notice that this constraint does not apply when we execute any of the control flow operations. For such operations, the prover sets the value of the a column non-deterministically, except for the RESPAN operation. For the RESPAN operation the value in the a column is incremented by 8, which is enforced by a constraint described previously. Notice also that this constraint implies that when the next operation is the END operation, the value in the a column must also be copied over to the next row. This is exactly the behavior we want to enforce so that when the END operation is executed, the block address is set to the address of the current span batch.","breadcrumbs":"Design » Program decoder » Decoder constraints » Block address constraints","id":"121","title":"Block address constraints"},"122":{"body":"The group_count column (denoted as gc) is used to keep track of the number of operation groups which remains to be executed in a span block. In the beginning of a span block (i.e., when SPAN operation is executed), the prover sets the value of gc non-deterministically. This value is subsequently decremented according to the rules described below. By the time we exit the span block (i.e., when END operation is executed), the value in gc must be 0. The rules for decrementing values in the gc column are as follows: The count cannot be decremented by more than 1 in a single row. When an operation group is fully executed (which happens when h0=0 inside a span block), the count is decremented by 1. When SPAN, RESPAN, or PUSH operations are executed, the count is decremented by 1. Note that these rules imply that PUSH operation cannot be the last operation in an operation group (otherwise the count would have to be decremented by 2). To simplify the description of the constraints, we will define the following variable: Δgc=gc−gc′ Using this variable, we can describe the constraints against the gc column as follows: Inside a span block, group count can either stay the same or decrease by one: sp⋅Δgc⋅(Δgc−1)=0 | degree=3 When group count is decremented inside a span block, either h0 must be 0 (we consumed all operations in a group) or we must be executing PUSH operation: sp⋅Δgc⋅(1−fpush)⋅h0=0 | degree=7 Notice that the above constraint does not preclude fpush=1 and h0=0 from being true at the same time. If this happens, op group decoding constraints (described here ) will force that the operation following the PUSH operation is a NOOP. When executing a SPAN, a RESPAN, or a PUSH operation, group count must be decremented by 1: (fspan+frespan+fpush)⋅(Δgc−1)=0 | degree=6 If the next operation is either an END or a RESPAN, group count must remain the same: Δgc⋅(fend′+frespan′)=0 | degree=5 When an END operation is executed, group count must be 0: fend⋅gc=0 | degree=5","breadcrumbs":"Design » Program decoder » Decoder constraints » Group count constraints","id":"122","title":"Group count constraints"},"123":{"body":"Inside a span block, register h0 is used to keep track of operations to be executed in the current operation group. The value of this register is set by the prover non-deterministically at the time when the prover executes a SPAN or a RESPAN operation, or when processing of a new operation group within a batch starts. The picture below illustrates this. air_decoder_op_group_constraint In the above: The prover sets the value of h0 non-deterministically at row 0. The value is set to an operation group containing operations op0 through op8. As we start executing the group, at every row we \"remove\" the least significant operation from the group. This can be done by subtracting opcode of the operation from the group, and then dividing the result by 27. By row 9 the group is fully executed. This decrements the group count and set op_index to 0 (constraints against op_index column are described in the next section). At row 10 we start executing the next group with operations op9 through op11. In this case, the prover populates h0 with the group having its first operation (op9) already removed, and sets the op_bits registers to the value encoding op9. By row 12 this group is also fully executed. To simplify the description of the constraints, we define the following variables: op=i=0∑6(bi⋅2i)fsgc=sp⋅sp′⋅(1−Δgc) op is just an opcode value implied by the values in op_bits registers. fsgc is a flag which is set to 1 when the group count within a span block does not change. We multiply it by sp′ to make sure the flag is 0 when we are about to end decoding of an operation batch. Note that fsgc flag is mutually exclusive with fspan, frespan, and fpush flags as these three operations decrement the group count. Using these variables, we can describe operation group decoding constraints as follows: When a SPAN, a RESPAN, or a PUSH operation is executed or when the group count does not change, the value in h0 should be decremented by the value of the opcode in the next row. (fspan+frespan+fpush+fsgc)⋅(h0−h0′⋅27−op′)=0 | degree=6 Notice that when the group count does change, and we are not executing fspan, frespan, or fpush operations, no constraints are placed against h0, and thus, the prover can populate this register non-deterministically. When we are in a span block and the next operation is END or RESPAN, the current value in h0 column must be 0. sp⋅(fend′+frespan′)⋅h0=0 | degree=6","breadcrumbs":"Design » Program decoder » Decoder constraints » Op group decoding constraints","id":"123","title":"Op group decoding constraints"},"124":{"body":"The op_index column (denoted as ox) tracks index of an operation within its operation group. It is used to ensure that the number of operations executed per group never exceeds 9. The index is zero-based, and thus, the possible set of values for ox is between 0 and 8 (both inclusive). To simplify the description of the constraints, we will define the following variables: ng=Δgc−fpushΔox=ox′−ox The value of ng is set to 1 when we are about to start executing a new operation group (i.e., group count is decremented but we did not execute a PUSH operation). Using these variables, we can describe the constraints against the ox column as follows. When executing SPAN or RESPAN operations the next value of op_index must be set to 0: (fspan+frespan)⋅ox′=0 | degree=6 When starting a new operation group inside a span block, the next value of op_index must be set to 0. Note that we multiply by sp to exclude the cases when the group count is decremented because of SPAN or RESPAN operations: sp⋅ng⋅ox′=0 | degree=6 When inside a span block but not starting a new operation group, op_index must be incremented by 1. Note that we multiply by sp′ to exclude the cases when we are about to exit processing of an operation batch (i.e., the next operation is either END or RESPAN): sp⋅sp′⋅(1−ng)⋅(Δox−1)=0 | degree=7 Values of op_index must be in the range [0,8]. i=0∏8(ox−i)=0 | degree=9","breadcrumbs":"Design » Program decoder » Decoder constraints » Op index constraints","id":"124","title":"Op index constraints"},"125":{"body":"Operation batch flag columns (denoted bc0, bc1, and bc2) are used to specify how many operation groups are present in an operation batch. This is relevant for the last batch in a span block (or the first batch if there is only one batch in a block) as all other batches should be completely full (i.e., contain 8 operation groups). These columns are used to define the following 4 flags: fg8=bc0: there are 8 operation groups in the batch. fg4=(1−bc0)⋅bc1⋅bc2: there are 4 operation groups in the batch. fg2=(1−bc0)⋅(1−bc1)⋅bc2: there are 2 operation groups in the batch. fg1=(1−bc0)⋅bc1⋅(1−bc2): there is only 1 operation groups in the batch. Notice that the degree of fg8 is 1, while the degree of the remaining flags is 3. These flags can be set to 1 only when we are executing SPAN or RESPAN operations as this is when the VM starts processing new operation batches. Also, for a given flag we need to ensure that only the specified number of operations groups are present in a batch. This can be done with the following constraints. All batch flags must be binary: bci2−bci=0 for i∈[0,3) | degree=2 When SPAN or RESPAN operations is executed, one of the batch flags must be set to 1. (fspan+frespan)−(fg1+fg2+fg4+fg8)=0 | degree=5 When we have at most 4 groups in a batch, registers h4,...,h7 should be set to 0's. (fg1+fg2+fg4)⋅hi=0 for i∈[4,8) | degree=4 When we have at most 2 groups in a batch, registers h2 and h3 should also be set to 0's. (fg1+fg2)⋅hi=0 for i∈2,3 | degree=4 When we have at most 1 groups in a batch, register h1 should also be set to 0. fg1⋅h1=0 | degree=4","breadcrumbs":"Design » Program decoder » Decoder constraints » Op batch flags constraints","id":"125","title":"Op batch flags constraints"},"126":{"body":"Op group table is used to ensure that all operation groups in a given batch are consumed before a new batch is started (i.e., via a RESPAN operation) or the execution of a span block is complete (i.e., via an END operation). The op group table is updated according to the following rules: When a new operation batch is started, we add groups from this batch to the table. To add a group to the table, we multiply the value in column p3 by a value representing a tuple (batch_id, group_pos, group). A constraint to enforce this would look as p3′=p3⋅v, where v is the value representing the row to be added. Depending on the batch, we may need to add multiple groups to the table (i.e., p3′=p3⋅v1⋅v2⋅v3...). Flags fg1, fg2, fg4, and fg8 are used to define how many groups to add. When a new operation group starts executing or when an immediate value is consumed, we remove the corresponding group from the table. To do this, we divide the value in column p3 by a value representing a tuple (batch_id, group_pos, group). A constraint to enforce this would look as p3′⋅u=p3, where u is the value representing the row to be removed. To simplify constraint descriptions, we first define variables representing the rows to be added to and removed from the op group table. When a SPAN or a RESPAN operation is executed, we compute the values of the rows to be added to the op group table as follows: vi=α0+α1⋅a′+α2⋅(gc−i)+α3⋅hi | degree=1 Where i∈[1,8). Thus, v1 defines row value for group in h1, v2 defines row value for group h2 etc. Note that batch address column comes from the next row of the block address column (a′). We compute the value of the row to be removed from the op group table as follows: u=α0+α1⋅a+α2⋅gc+α3⋅((h0′⋅27+op′)⋅(1−fpush)+s0′⋅fpush) | degree=5 In the above, the value of the group is computed as (h0′⋅27+op′)⋅(1−fpush)+s0′⋅fpush. This basically says that when we execute a PUSH operation we need to remove the immediate value from the table. This value is at the top of the stack (column s0) in the next row. However, when we are not executing a PUSH operation, the value to be removed is an op group value which is a combination of values in h0 and op_bits columns (also in the next row). Note also that value for batch address comes from the current value in the block address column (a), and the group position comes from the current value of the group count column (gc). We also define a flag which is set to 1 when a group needs to be removed from the op group table. fdg=sp⋅Δgc The above says that we remove groups from the op group table whenever group count is decremented. We multiply by sp to exclude the cases when the group count is decremented due to SPAN or RESPAN operations. Using the above variables together with flags fg2, fg4, fg8 defined in the previous section, we describe the constraint for updating op group table as follows (note that we do not use fg1 flag as when a batch consists of a single group, nothing is added to the op group table): p3′⋅(fdg⋅u+1−fdg)=p3⋅(fg2⋅v1+fg4⋅i=1∏3vi+fg8⋅i=1∏7vi−1+(fspan+frespan)) The above constraint specifies that: When SPAN or RESPAN operations are executed, we add between 1 and 7 groups to the op group table. When group count is decremented inside a span block, we remove a group from the op group table. The degree of this constraint is 9. In addition to the above transition constraint, we also need to impose boundary constraints against the p3 column to make sure the first and the last value in the column is set to 1. This enforces that the op group table table starts and ends in an empty state.","breadcrumbs":"Design » Program decoder » Decoder constraints » Op group table constraints","id":"126","title":"Op group table constraints"},"127":{"body":"Miden VM is a stack machine. The stack is a push-down stack of practically unlimited depth (in practical terms, the depth will never exceed 232), but only the top 16 items are directly accessible to the VM. Items on the stack are elements in a prime field with modulus 264−232+1. To keep the constraint system for the stack manageable, we impose the following rules: All operations executed on the VM can shift the stack by at most one item. That is, the end result of an operation must be that the stack shrinks by one item, grows by one item, or the number of items on the stack stays the same. Stack depth must always be greater than or equal to 16. At the start of program execution, the stack is initialized with exactly 16 input values, all of which could be 0's. By the end of program execution, exactly 16 items must remain on the stack (again, all of them could be 0's). These items comprise the output of the program. To ensure that managing stack depth does not impose significant burden, we adopt the following rule: When the stack depth is 16, removing additional items from the stack does not change its depth. To keep the depth at 16, 0's are inserted into the deep end of the stack for each removed item.","breadcrumbs":"Design » Operand stack » Operand stack","id":"127","title":"Operand stack"},"128":{"body":"The VM allocates 19 trace columns for the stack. The layout of the columns is illustrated below. The meaning of the above columns is as follows: s0...s15 are the columns representing the top 16 slots of the stack. Column b0 contains the number of items on the stack (i.e., the stack depth). In the above picture, there are 16 items on the stacks, so b0=16. Column b1 contains an address of a row in the \"overflow table\" in which we'll store the data that doesn't fit into the top 16 slots. When b1=0, it means that all stack data fits into the top 16 slots of the stack. Helper column h0 is used to ensure that stack depth does not drop below 16. Values in this column are set by the prover non-deterministically to b0−161 when b0=16, and to any other value otherwise.","breadcrumbs":"Design » Operand stack » Stack representation","id":"128","title":"Stack representation"},"129":{"body":"To keep track of the data which doesn't fit into the top 16 stack slots, we'll use an overflow table. This will be a virtual table . To represent this table, we'll use a single auxiliary column p1. The table itself can be thought of as having 3 columns as illustrated below. The meaning of the columns is as follows: Column t0 contains row address. Every address in the table must be unique. Column t1 contains the value that overflowed the stack. Column t2 contains the address of the row containing the value that overflowed the stack right before the value in the current row. For example, in the picture above, first value a overflowed the stack, then b overflowed the stack, and then value c overflowed the stack. Thus, row with value b points back to the row with value a, and row with value c points back to the row with value b. To reduce a table row to a single value, we'll compute a randomized product of column values as follows: ri=α0+α1⋅t0,i+α2⋅t1,i+α3⋅t2,i Then, when row i is added to the table, we'll update the value in the p1 column like so: p1′=p1⋅ri Analogously, when row i is removed from the table, we'll update the value in column p1 like so: p1′=rip1 The initial value of p1 is set to 1. Thus, if by the time Miden VM finishes executing a program the table is empty (we added and then removed exactly the same set of rows), p1 will also be equal to 1. There are a couple of other rules we'll need to enforce: We can delete a row only after the row has been inserted into the table. We can't insert a row with the same address twice into the table (even if the row was inserted and then deleted). How these are enforced will be described a bit later.","breadcrumbs":"Design » Operand stack » Overflow table","id":"129","title":"Overflow table"},"13":{"body":"To compile Miden VM into a binary, we have a Makefile with the following tasks: make exec This will place an optimized, multi-threaded miden executable into the ./target/optimized directory. It is equivalent to executing: cargo build --profile optimized --features concurrent,executable If you would like to enable single-threaded mode, you can compile Miden VM using the following command: cargo build --profile optimized --features executable For a faster build, you can compile with less optimizations, replacing --profile optimized by --release. Example: cargo build --release --features concurrent,executable In this case, the miden executable will be placed in the ./target/release directory.","breadcrumbs":"Introduction » Usage » Compiling Miden VM","id":"13","title":"Compiling Miden VM"},"130":{"body":"If an operation adds data to the stack, we say that the operation caused a right shift. For example, PUSH and DUP operations cause a right shift. Graphically, this looks like so: Here, we pushed value v17 onto the stack. All other values on the stack are shifted by one slot to the right and the stack depth increases by 1. There is not enough space at the top of the stack for all 17 values, thus, v1 needs to be moved to the overflow table. To do this, we need to rely on another column: k0. This is a system column which keeps track of the current VM cycle. The value in this column is simply incremented by 1 with every step. The row we want to add to the overflow table is defined by tuple (clk,v1,0), and after it is added, the table would look like so: The reason we use VM clock cycle as row address is that the clock cycle is guaranteed to be unique, and thus, the same row can not be added to the table twice. Let's push another item onto the stack: Again, as we push v18 onto the stack, all items on the stack are shifted to the right, and now v2 needs to be moved to the overflow table. The tuple we want to insert into the table now is (clk+1,v2,clk). After the operation, the overflow table will look like so: Notice that t2 for row which contains value v2 points back to the row with address clk. Overall, during a right shift we do the following: Increment stack depth by 1. Shift stack columns s0,...,s14 right by 1 slot. Add a row to the overflow table described by tuple (k0,s15,b0). Set the next value of b1 to the current value of k0. Also, as mentioned previously, the prover sets values in h0 non-deterministically to b0−161.","breadcrumbs":"Design » Operand stack » Right shift","id":"130","title":"Right shift"},"131":{"body":"If an operation removes an item from the stack, we say that the operation caused a left shift. For example, a DROP operation causes a left shift. Assuming the stack is in the state we left it at the end of the previous section, graphically, this looks like so: Overall, during the left shift we do the following: When stack depth is greater than 16: Decrement stack depth by 1. Shift stack columns s1,...,s15 left by 1 slot. Remove a row from the overflow table with t0 equal to the current value of b1. Set the next value of s15 to the value in t1 of the removed overflow table row. Set the next value of b1 to the value in t2 of the removed overflow table row. When the stack depth is equal to 16: Keep the stack depth the same. Shift stack columns s1,...,s15 left by 1 slot. Set the value of s15 to 0. Set the value to h0 to 0 (or any other value). If the stack depth becomes (or remains) 16, the prover can set h0 to any value (e.g., 0). But if the depth is greater than 16 the prover sets h0 to b0−161.","breadcrumbs":"Design » Operand stack » Left shift","id":"131","title":"Left shift"},"132":{"body":"To simplify constraint descriptions, we'll assume that the VM exposes two binary flag values described below. Flag Degree Description fshr 6 When this flag is set to 1, the instruction executing on the VM is performing a \"right shift\". fshl 5 When this flag is set to 1, the instruction executing on the VM is performing a \"left shift\". These flags are mutually exclusive. That is, if fshl=1, then fshr=0 and vice versa. However, both flags can be set to 0 simultaneously. This happens when the executed instruction does not shift the stack. How these flags are computed is described here .","breadcrumbs":"Design » Operand stack » AIR Constraints","id":"132","title":"AIR Constraints"},"133":{"body":"Additionally, we'll define a flag to indicate whether the overflow table contains values. This flag will be set to 0 when the overflow table is empty, and to 1 otherwise (i.e., when stack depth >16). This flag can be computed as follows: fov=(b0−16)⋅h0 | degree=2 To ensure that this flag is set correctly, we need to impose the following constraint: (1−fov)⋅(b0−16)=0 | degree=3 The above constraint can be satisfied only when either of the following holds: b0=16, in which case fov evaluates to 0, regardless of the value of h0. fov=1, in which case b0 cannot be equal to 16 (and h0 must be set to b0−161).","breadcrumbs":"Design » Operand stack » Stack overflow flag","id":"133","title":"Stack overflow flag"},"134":{"body":"To make sure stack depth column b0 is updated correctly, we need to impose the following constraints: Condition Constraint__ Description fshr=1 b0′=b0+1 When the stack is shifted to the right, stack depth should be incremented by 1. fshl=1 fov=1 b0′=b0−1 When the stack is shifted to the left and the overflow table is not empty, stack depth should be decremented by 1. otherwise b0′=b0 In all other cases, stack depth should not change. We can combine the above constraints into a single expression as follows: b0′−b0+fshl⋅fov−fshr=0 | degree=7","breadcrumbs":"Design » Operand stack » Stack depth constraints","id":"134","title":"Stack depth constraints"},"135":{"body":"When the stack is shifted to the right, a tuple (k0,s15,b1) should be added to the overflow table. We will denote value of the row to be added to the table as follows: v=α0+α1⋅k0+α2⋅s15+α3⋅b1 When the stack is shifted to the left, a tuple (b1,s15′,b1′) should be removed from the overflow table. We will denote value of the row to be removed from the table as follows. u=α0+α1⋅b1+α2⋅s15′+α3⋅b1′ Using the above variables, we can ensure that right and left shifts update the overflow table correctly by enforcing the following constraint: p1′⋅(u⋅fshl⋅fov+1−fshl⋅fov)=p1⋅(v⋅fshr+1−fshr) | degree=9 The above constraint reduces to the following under various flag conditions: Condition Applied constraint fshl=1, fshr=0, fov=0 p1′=p1 fshl=1, fshr=0, fov=1 p1′⋅u=p1 fshl=0, fshr=1, fov=1 or 0 p1′=p1⋅v fshl=0, fshr=0, fov=1 or 0 p1′=p1 Notice that in the case of the left shift, the constraint forces the prover to set the next values of s15 and b1 to values t1 and t2 of the row removed from the overflow table. In case of a right shift, we also need to make sure that the next value of b1 is set to the current value of k0. This can be done with the following constraint: fshr⋅(b1′−k0)=0 | degree=7 In case of a left shift, when the overflow table is empty, we need to make sure that a 0 is \"shifted in\" from the right (i.e., s15 is set to 0). This can be done with the following constraint: fshl⋅(1−fov)⋅s15′=0 | degree=8","breadcrumbs":"Design » Operand stack » Overflow table constraints","id":"135","title":"Overflow table constraints"},"136":{"body":"In addition to the constraints described above, we also need to enforce the following boundary constraints: b0=16 at the first and at the last row of execution trace. b1=0 at the first and at the last row of execution trace. p1=1 at the first and at the last row of execution trace.","breadcrumbs":"Design » Operand stack » Boundary constraints","id":"136","title":"Boundary constraints"},"137":{"body":"In addition to the constraints described in the previous section, we need to impose constraints to check that each VM operation is executed correctly. For this purpose the VM exposes a set of operation-specific flags. These flags are set to 1 when a given operation is executed, and to 0 otherwise. The naming convention for these flags is fopname. For example, fdup would be set to 1 when DUP operation is executed, and to 0 otherwise. Operation flags are discussed in detail in the section below . To describe how operation-specific constraints work, let's use an example with DUP operation. This operation pushes a copy of the top stack item onto the stack. The constraints we need to impose for this operation are as follows: fdup⋅(s0′−s0)=0fdup⋅(si+1′−si)=0 for i∈[0,15) The first constraint enforces that the top stack item in the next row is the same as the top stack item in the current row. The second constraint enforces that all stack items (starting from item 0) are shifted to the right by 1. We also need to impose all the constraints discussed in the previous section, be we omit them here. Let's write similar constraints for DUP1 operation, which pushes a copy of the second stack item onto the stack: fdup1⋅(s0′−s1)=0fdup1⋅(si+1′−si)=0 for i∈[0,15) It is easy to notice that while the first constraint changed, the second constraint remained the same - i.e., we are still just shifting the stack to the right. In fact, for most operations it makes sense to make a distinction between constraints unique to the operation vs. more general constraints which enforce correct behavior for the stack items not affected by the operation. In the subsequent sections we describe in detail only the former constraints, and provide high-level descriptions of the more general constraints. Specifically, we indicate how the operation affects the rest of the stack (e.g., shifts right starting from position 0).","breadcrumbs":"Design » Operand stack » Operation constraints » Stack operation constraints","id":"137","title":"Stack operation constraints"},"138":{"body":"As mentioned above, operation flags are used as selectors to enforce operation-specific constraints. That is, they turn on relevant constraints for a given operation. In total, the VM provides 88 unique operations, and thus, there are 88 operation flags (not all of them currently used). Operation flags are mutually exclusive. That is, if one flag is set to 1, all other flags are set to 0. Also, one of the flags is always guaranteed to be set to 1. To compute values of operation flags we use op bits registers located in the decoder . These registers contain binary representations of operation codes (opcodes). Each opcode consists of 7 bits, and thus, there are 7 op bits registers. We denote these registers as b0,...,b6. The values are computed by multiplying the op bit registers in various combinations. Notice that binary encoding down below is showed in big-endian order, so the flag bits correspond to the reverse order of the op bits registers, from b6 to b0. For example, the value of the flag for NOOP, which is encoded as 0000000, is computed as follows: fnoop=(1−b6)⋅(1−b5)⋅(1−b4)⋅(1−b3)⋅(1−b2)⋅(1−b1)⋅(1−b0) While the value of the DROP operation, which is encoded as 0101001 is computed as follows: fdrop=(1−b6)⋅b5⋅(1−b4)⋅b3⋅(1−b2)⋅(1−b1)⋅b0 As can be seen from above, the degree for both of these flags is 7. Since degree of constraints in Miden VM can go up to 9, this means that operation-specific constraints cannot exceed degree 2. However, there are some operations which require constraints of higher degree (e.g., 3 or even 5). To support such constraints, we adopt the following scheme. We organize the operations into 4 groups as shown below and also introduce two extra registers e0 and e1 for degree reduction: b6 b5 b4 b3 b2 b1 b0 e0 e1 # of ops degree 0 x x x x x x 0 0 64 7 1 0 0 x x x - 0 0 8 6 1 0 1 x x x x 1 0 16 5 1 1 x x x - - 0 1 8 4 In the above: Operation flags for operations in the first group (with prefix 0), are computed using all 7 op bits, and thus their degree is 7. Operation flags for operations in the second group (with prefix 100), are computed using only the first 6 op bits, and thus their degree is 6. Operation flags for operations in the third group (with prefix 101), are computed using all 7 op bits. We use the extra register e0 (which is set to b6⋅(1−b5)⋅b4) to reduce the degree by 2. Thus, the degree of op flags in this group is 5. Operation flags for operations in the fourth group (with prefix 11), are computed using only the first 5 op bits. We use the extra register e1 (which is set to b6⋅b5) to reduce the degree by 1. Thus, the degree of op flags in this group is 4. How operations are distributed between these 4 groups is described in the sections below.","breadcrumbs":"Design » Operand stack » Operation constraints » Operation flags","id":"138","title":"Operation flags"},"139":{"body":"This group contains 32 operations which do not shift the stack (this is almost all such operations). Since the op flag degree for these operations is 7, constraints for these operations cannot exceed degree 2. Operation Opcode value Binary encoding Operation group Flag degree NOOP 0 000_0000 System ops 7 EQZ 1 000_0001 Field ops 7 NEG 2 000_0010 Field ops 7 INV 3 000_0011 Field ops 7 INCR 4 000_0100 Field ops 7 NOT 5 000_0101 Field ops 7 FMPADD 6 000_0110 System ops 7 MLOAD 7 000_0111 I/O ops 7 SWAP 8 000_1000 Stack ops 7 CALLER 9 000_1001 System ops 7 MOVUP2 10 000_1010 Stack ops 7 MOVDN2 11 000_1011 Stack ops 7 MOVUP3 12 000_1100 Stack ops 7 MOVDN3 13 000_1101 Stack ops 7 ADVPOPW 14 000_1110 I/O ops 7 EXPACC 15 000_1111 Field ops 7 MOVUP4 16 001_0000 Stack ops 7 MOVDN4 17 001_0001 Stack ops 7 MOVUP5 18 001_0010 Stack ops 7 MOVDN5 19 001_0011 Stack ops 7 MOVUP6 20 001_0100 Stack ops 7 MOVDN6 21 001_0101 Stack ops 7 MOVUP7 22 001_0110 Stack ops 7 MOVDN7 23 001_0111 Stack ops 7 SWAPW 24 001_1000 Stack ops 7 EXT2MUL 25 001_1001 Field ops 7 MOVUP8 26 001_1010 Stack ops 7 MOVDN8 27 001_1011 Stack ops 7 SWAPW2 28 001_1100 Stack ops 7 SWAPW3 29 001_1101 Stack ops 7 SWAPDW 30 001_1110 Stack ops 7 31 001_1111 7","breadcrumbs":"Design » Operand stack » Operation constraints » No stack shift operations","id":"139","title":"No stack shift operations"},"14":{"body":"Internally, Miden VM uses rayon for parallel computations. To control the number of threads used to generate a STARK proof, you can use RAYON_NUM_THREADS environment variable.","breadcrumbs":"Introduction » Usage » Controlling parallelism","id":"14","title":"Controlling parallelism"},"140":{"body":"This group contains 16 operations which shift the stack to the left (i.e., remove an item from the stack). Most of left-shift operations are contained in this group. Since the op flag degree for these operations is 7, constraints for these operations cannot exceed degree 2. Operation Opcode value Binary encoding Operation group Flag degree ASSERT 32 010_0000 System ops 7 EQ 33 010_0001 Field ops 7 ADD 34 010_0010 Field ops 7 MUL 35 010_0011 Field ops 7 AND 36 010_0100 Field ops 7 OR 37 010_0101 Field ops 7 U32AND 38 010_0110 u32 ops 7 U32XOR 39 010_0111 u32 ops 7 FRIE2F4 40 010_1000 Crypto ops 7 DROP 41 010_1001 Stack ops 7 CSWAP 42 010_1010 Stack ops 7 CSWAPW 43 010_1011 Stack ops 7 MLOADW 44 010_1100 I/O ops 7 MSTORE 45 010_1101 I/O ops 7 MSTOREW 46 010_1110 I/O ops 7 FMPUPDATE 47 010_1111 System ops 7","breadcrumbs":"Design » Operand stack » Operation constraints » Left stack shift operations","id":"140","title":"Left stack shift operations"},"141":{"body":"This group contains 16 operations which shift the stack to the right (i.e., push a new item onto the stack). Most of right-shift operations are contained in this group. Since the op flag degree for these operations is 7, constraints for these operations cannot exceed degree 2. Operation Opcode value Binary encoding Operation group Flag degree PAD 48 011_0000 Stack ops 7 DUP 49 011_0001 Stack ops 7 DUP1 50 011_0010 Stack ops 7 DUP2 51 011_0011 Stack ops 7 DUP3 52 011_0100 Stack ops 7 DUP4 53 011_0101 Stack ops 7 DUP5 54 011_0110 Stack ops 7 DUP6 55 011_0111 Stack ops 7 DUP7 56 011_1000 Stack ops 7 DUP9 57 011_1001 Stack ops 7 DUP11 58 011_1010 Stack ops 7 DUP13 59 011_1011 Stack ops 7 DUP15 60 011_1100 Stack ops 7 ADVPOP 61 011_1101 I/O ops 7 SDEPTH 62 011_1110 I/O ops 7 CLK 63 011_1111 System ops 7","breadcrumbs":"Design » Operand stack » Operation constraints » Right stack shift operations","id":"141","title":"Right stack shift operations"},"142":{"body":"This group contains 8 u32 operations. These operations are grouped together because all of them require range checks. The constraints for range checks are of degree 5, however, since all these operations require them, we can define a flag with common prefix 100 to serve as a selector for the range check constraints. The value of this flag is computed as follows: fu32rc=b6⋅(1−b5)⋅(1−b4) The degree of this flag is 3, which is acceptable for a selector for degree 5 constraints. Operation Opcode value Binary encoding Operation group Flag degree U32ADD 64 100_0000 u32 ops 6 U32SUB 66 100_0010 u32 ops 6 U32MUL 68 100_0100 u32 ops 6 U32DIV 70 100_0110 u32 ops 6 U32SPLIT 72 100_1000 u32 ops 6 U32ASSERT2 74 100_1010 u32 ops 6 U32ADD3 76 100_1100 u32 ops 6 U32MADD 78 100_1110 u32 ops 6 As mentioned previously, the last bit of the opcode is not used in computation of the flag for these operations. We force this bit to always be set to 0 with the following constraint: b6⋅(1−b5)⋅(1−b4)⋅b0=0 | degree=4 Putting these operations into a group with flag degree 6 is important for two other reasons: Constraints for the U32SPLIT operation have degree 3. Thus, the degree of the op flag for this operation cannot exceed 6. Operations U32ADD3 and U32MADD shift the stack to the left. Thus, having these two operations in this group and putting them under the common prefix 10011 allows us to create a common flag for these operations of degree 5 (recall that the left-shift flag cannot exceed degree 5).","breadcrumbs":"Design » Operand stack » Operation constraints » u32 operations","id":"142","title":"u32 operations"},"143":{"body":"This group contains operations which require constraints with degree up to 3. All 7 operation bits are used for these flags. The extra e0 column is used for degree reduction of the three high-degree bits. Operation Opcode value Binary encoding Operation group Flag degree HPERM 80 101_0000 Crypto ops 5 MPVERIFY 81 101_0001 Crypto ops 5 PIPE 82 101_0010 I/O ops 5 MSTREAM 83 101_0011 I/O ops 5 SPLIT 84 101_0100 Flow control ops 5 LOOP 85 101_0101 Flow control ops 5 SPAN 86 101_0110 Flow control ops 5 JOIN 87 101_0111 Flow control ops 5 88 101_1000 5 89 101_1001 5 90 101_1010 5 91 101_1011 5 92 101_1100 5 93 101_1101 5 94 101_1110 5 95 101_1111 5 Note that the SPLIT and LOOP operations are grouped together under the common prefix 101010, and thus can have a common flag of degree 4 (using e0 for degree reduction). This is important because both of these operations shift the stack to the left. Also, we need to make sure that extra register e0, which is used to reduce the flag degree by 2, is set to 1 when b6=1, b5=0, and b4=1: e0−b6⋅(1−b5)⋅b4=0 | degree=3","breadcrumbs":"Design » Operand stack » Operation constraints » High-degree operations","id":"143","title":"High-degree operations"},"144":{"body":"This group contains operations which require constraints with degree up to 5. Operation Opcode value Binary encoding Operation group Flag degree MRUPDATE 96 110_0000 Crypto ops 4 PUSH 100 110_0100 I/O ops 4 SYSCALL 104 110_1000 Flow control ops 4 CALL 108 110_1100 Flow control ops 4 END 112 111_0000 Flow control ops 4 REPEAT 116 111_0100 Flow control ops 4 RESPAN 120 111_1000 Flow control ops 4 HALT 124 111_1100 Flow control ops 4 As mentioned previously, the last two bits of the opcode are not used in computation of the flag for these operations. We force these bits to always be set to 0 with the following constraints: b6⋅b5⋅b0=0 | degree=3 b6⋅b5⋅b1=0 | degree=3 Also, we need to make sure that extra register e1, which is used to reduce the flag degree by 1, is set to 1 when both b6 and b5 columns are set to 1: e1−b6⋅b5=0 | degree=2","breadcrumbs":"Design » Operand stack » Operation constraints » Very high-degree operations","id":"144","title":"Very high-degree operations"},"145":{"body":"Using the operation flags defined above, we can compute several composite flags which are used by various constraints in the VM.","breadcrumbs":"Design » Operand stack » Operation constraints » Composite flags","id":"145","title":"Composite flags"},"146":{"body":"The right-shift flag indicates that an operation shifts the stack to the right. This flag is computed as follows: fshr=(1−b6)⋅b5⋅b4+fu32split+fpush | degree=6 In the above, (1−b6)⋅b5⋅b4 evaluates to 1 for all right stack shift operations described previously. This works because all these operations have a common prefix 011. We also need to add in flags for other operations which shift the stack to the right but are not a part of the above group (e.g., PUSH operation).","breadcrumbs":"Design » Operand stack » Operation constraints » Shift right flag","id":"146","title":"Shift right flag"},"147":{"body":"The left-shift flag indicates that a given operation shifts the stack to the left. To simplify the description of this flag, we will first compute the following intermediate variables: A flag which is set to 1 when fu32add3=1 or fu32madd=1: fadd3_madd=b6⋅(1−b5)⋅(1−b4)⋅b3⋅b2 | degree=5 A flag which is set to 1 when fsplit=1 or floop=1: fsplit_loop=e0⋅(1−b3)⋅b2⋅(1−b1) | degree=4 Using the above variables, we compute left-shift flag as follows: fshl=(1−b6)⋅b5⋅(1−b4)+fadd3_madd+fsplit_loop+frepeat+fend⋅h5 | degree=5 In the above: (1−b6)⋅b5⋅(1−b4) evaluates to 1 for all left stack shift operations described previously. This works because all these operations have a common prefix 010. h5 is the helper register in the decoder which is set to 1 when we are exiting a LOOP block, and to 0 otherwise. Thus, similarly to the right-shift flag, we compute the value of the left-shift flag based on the prefix of the operation group which contains most left shift operations, and add in flag values for other operations which shift the stack to the left but are not a part of this group.","breadcrumbs":"Design » Operand stack » Operation constraints » Shift left flag","id":"147","title":"Shift left flag"},"148":{"body":"The control flow flag fctrl is set to 1 when a control flow operation is being executed by the VM, and to 0 otherwise. Naively, this flag can be computed as follows: fctrl=fjoin+fsplit+floop+frepeat+fspan+frespan+fcall+fsyscall+fend+fhalt | degree=6 However, this can be computed more efficiently via the common operation prefixes for the two groups of control flow operations as follows. fspan,join,split,loop=e0⋅(1−b3)⋅b2 | degree=3 fend,repeat,respan,halt=e1⋅b4 | degree=2 fctrl=fspan,join,split,loop+fend,repeat,respan,halt+fcall+fsyscall | degree=3","breadcrumbs":"Design » Operand stack » Operation constraints » Control flow flag","id":"148","title":"Control flow flag"},"149":{"body":"In this section we describe the AIR constraints for Miden VM system operations.","breadcrumbs":"Design » Operand stack » System operations » System Operations","id":"149","title":"System Operations"},"15":{"body":"Miden VM proof generation can be accelerated via GPUs. Currently, GPU acceleration is enabled only on Apple silicon hardware (via Metal). To compile Miden VM with Metal acceleration enabled, you can run the following command: make exec-metal Similar to make exec command, this will place the resulting miden executable into the ./target/optimized directory. Currently, GPU acceleration is applicable only to recursive proofs which can be generated using -r flag.","breadcrumbs":"Introduction » Usage » GPU acceleration","id":"15","title":"GPU acceleration"},"150":{"body":"The NOOP operation advances the cycle counter but does not change the state of the operand stack (i.e., the depth of the stack and the values on the stack remain the same). The NOOP operation does not impose any constraints besides the ones needed to ensure that the entire state of the stack is copied over. This constraint looks like so: si′−si=0 for i∈[0,16) | degree=1","breadcrumbs":"Design » Operand stack » System operations » NOOP","id":"150","title":"NOOP"},"151":{"body":"The ASSERT operation pops an element off the stack and checks if the popped element is equal to 1. If the element is not equal to 1, program execution fails. assert Stack transition for this operation must satisfy the following constraints: s0−1=0 | degree=1 The effect on the rest of the stack is: Left shift starting from position 1.","breadcrumbs":"Design » Operand stack » System operations » ASSERT","id":"151","title":"ASSERT"},"152":{"body":"The FMPADD operation pops an element off the stack, adds the current value of the fmp register to it, and pushes the result back onto the stack. The diagram below illustrates this graphically. fmpadd Stack transition for this operation must satisfy the following constraints: s0′−(s0+fmp)=0 | degree=1 The effect on the rest of the stack is: No change starting from position 1.","breadcrumbs":"Design » Operand stack » System operations » FMPADD","id":"152","title":"FMPADD"},"153":{"body":"The FMPUPDATE operation pops an element off the stack and adds it to the current value of the fmp register. The diagram below illustrates this graphically. fmpupdate The stack transition for this operation must follow the following constraint: fmp′−(fmp+s0)=0 | degree=1 The effect on the rest of the stack is: Left shift starting from position 1.","breadcrumbs":"Design » Operand stack » System operations » FMPUPDATE","id":"153","title":"FMPUPDATE"},"154":{"body":"The CLK operation pushes the current value of the clock cycle onto the stack. The diagram below illustrates this graphically. clk The stack transition for this operation must follow the following constraint: s0′−clk=0 | degree=1 The effect on the rest of the stack is: Right shift starting from position 0.","breadcrumbs":"Design » Operand stack » System operations » CLK","id":"154","title":"CLK"},"155":{"body":"In this section we describe the AIR constraints for Miden VM field operations (i.e., arithmetic operations over field elements).","breadcrumbs":"Design » Operand stack » Field operations » Field Operations","id":"155","title":"Field Operations"},"156":{"body":"Assume a and b are the elements at the top of the stack. The ADD operation computes c←(a+b). The diagram below illustrates this graphically. add Stack transition for this operation must satisfy the following constraints: s0′−(s0+s1)=0 | degree=1 The effect on the rest of the stack is: Left shift starting from position 2.","breadcrumbs":"Design » Operand stack » Field operations » ADD","id":"156","title":"ADD"},"157":{"body":"Assume a is the element at the top of the stack. The NEG operation computes b←(−a). The diagram below illustrates this graphically. neg Stack transition for this operation must satisfy the following constraints: s0′+s0=0 | degree=1 The effect on the rest of the stack is: No change starting from position 1.","breadcrumbs":"Design » Operand stack » Field operations » NEG","id":"157","title":"NEG"},"158":{"body":"Assume a and b are the elements at the top of the stack. The MUL operation computes c←(a⋅b). The diagram below illustrates this graphically. mul Stack transition for this operation must satisfy the following constraints: s0′−s0⋅s1=0 | degree=2 The effect on the rest of the stack is: Left shift starting from position 2.","breadcrumbs":"Design » Operand stack » Field operations » MUL","id":"158","title":"MUL"},"159":{"body":"Assume a is the element at the top of the stack. The INV operation computes b←(a−1). The diagram below illustrates this graphically. inv Stack transition for this operation must satisfy the following constraints: 1−s0′⋅s0=0 | degree=2 Note that the above constraint can be satisfied only if the value in s0=0. The effect on the rest of the stack is: No change starting from position 1.","breadcrumbs":"Design » Operand stack » Field operations » INV","id":"159","title":"INV"},"16":{"body":"Once the executable has been compiled, you can run Miden VM like so: ./target/optimized/miden [subcommand] [parameters] Currently, Miden VM can be executed with the following subcommands: run - this will execute a Miden assembly program and output the result, but will not generate a proof of execution. prove - this will execute a Miden assembly program, and will also generate a STARK proof of execution. verify - this will verify a previously generated proof of execution for a given program. compile - this will compile a Miden assembly program (i.e., build a program MAST ) and outputs stats about the compilation process. debug - this will instantiate a Miden debugger against the specified Miden assembly program and inputs. analyze - this will run a Miden assembly program against specific inputs and will output stats about its execution. repl - this will initiate the Miden REPL tool. All of the above subcommands require various parameters to be provided. To get more detailed help on what is needed for a given subcommand, you can run the following: ./target/optimized/miden [subcommand] --help For example: ./target/optimized/miden prove --help To execute a program using the Miden VM there needs to be a .masm file containing the Miden Assembly code and a .inputs file containing the inputs.","breadcrumbs":"Introduction » Usage » Running Miden VM","id":"16","title":"Running Miden VM"},"160":{"body":"Assume a is the element at the top of the stack. The INCR operation computes b←(a+1). The diagram below illustrates this graphically. incr Stack transition for this operation must satisfy the following constraints: s0′−(s0+1)=0 | degree=1 The effect on the rest of the stack is: No change starting from position 1.","breadcrumbs":"Design » Operand stack » Field operations » INCR","id":"160","title":"INCR"},"161":{"body":"Assume a is a binary value at the top of the stack. The NOT operation computes b←(¬a). The diagram below illustrates this graphically. not Stack transition for this operation must satisfy the following constraints: s02−s0=0 | degree=2 s0′−(1−s0)=0 | degree=1 The first constraint ensures that the value in s0 is binary, and the second constraint ensures the correctness of the boolean NOT operation. The effect on the rest of the stack is: No change starting from position 1.","breadcrumbs":"Design » Operand stack » Field operations » NOT","id":"161","title":"NOT"},"162":{"body":"Assume a and b are binary values at the top of the stack. The AND operation computes c←(a∧b). The diagram below illustrates this graphically. and Stack transition for this operation must satisfy the following constraints: si2−si=0 for i∈{0,1} | degree=2 s0′−s0⋅s1=0 | degree=2 The first two constraints ensure that the value in s0 and s1 are binary, and the third constraint ensures the correctness of the boolean AND operation. The effect on the rest of the stack is: Left shift starting from position 2.","breadcrumbs":"Design » Operand stack » Field operations » AND","id":"162","title":"AND"},"163":{"body":"Assume a and b are binary values at the top of the stack. The OR operation computes c←(a∨b) The diagram below illustrates this graphically. or Stack transition for this operation must satisfy the following constraints: si2−si=0 for i∈{0,1} | degree=2 s0′−(s1+s0−s1⋅s0)=0 | degree=2 The first two constraints ensure that the value in s0 and s1 are binary, and the third constraint ensures the correctness of the boolean OR operation. The effect on the rest of the stack is: Left shift starting from position 2.","breadcrumbs":"Design » Operand stack » Field operations » OR","id":"163","title":"OR"},"164":{"body":"Assume a and b are the elements at the top of the stack. The EQ operation computes c such that c=1 if a=b, and 0 otherwise. The diagram below illustrates this graphically. eq Stack transition for this operation must satisfy the following constraints: s0′⋅(s0−s1)=0 | degree=2 s0′−(1−(s0−s1)⋅h0)=0 | degree=2 To satisfy the above constraints, the prover must populate the value of helper register h0 as follows: If s0=s1, set h0=s0−s11. Otherwise, set h0 to any value (e.g., 0). The effect on the rest of the stack is: Left shift starting from position 2.","breadcrumbs":"Design » Operand stack » Field operations » EQ","id":"164","title":"EQ"},"165":{"body":"Assume a is the element at the top of the stack. The EQZ operation computes b such that b=1 if a=0, and 0 otherwise. The diagram below illustrates this graphically. eqz Stack transition for this operation must satisfy the following constraints: s0′⋅s0=0 | degree=2 s0′−(1−s0⋅h0)=0 | degree=2 To satisfy the above constraints, the prover must populate the value of helper register h0 as follows: If s0=0, set h0=s01. Otherwise, set h0 to any value (e.g., 0). The effect on the rest of the stack is: No change starting from position 1.","breadcrumbs":"Design » Operand stack » Field operations » EQZ","id":"165","title":"EQZ"},"166":{"body":"The EXPACC operation pops top 4 elements from the top of the stack, performs a single round of exponent aggregation, and pushes the resulting 4 values onto the stack. The diagram below illustrates this graphically. expacc Stack transition for this operation must satisfy the following constraints: bit should be a binary. s0′2−s0′=0 | degree=2 The exp in the next frame should be the square of the exp in the current frame. s1′−s12=0 | degree=2 The value val in the helper register is computed correctly using the bit and exp in next and current frame respectively. h0−((s1−1)∗s0′+1)=0 | degree=2 The acc in the next frame is the product of val and acc in the current frame. s2′−s2∗h0=0 | degree=2 b in the next frame is the right shift of b in the current frame. s3′−(s3∗2+s0′)=0 | degree=1 The effect on the rest of the stack is: No change starting from position 4.","breadcrumbs":"Design » Operand stack » Field operations » EXPACC","id":"166","title":"EXPACC"},"167":{"body":"The EXT2MUL operation pops top 4 values from the top of the stack, performs mulitplication between the two extension field elements, and pushes the resulting 4 values onto the stack. The diagram below illustrates this graphically. ext2mul Stack transition for this operation must satisfy the following constraints: The first stack element should be unchanged in the next frame. s0′−s0=0 | degree=1 The second stack element should be unchanged in the next frame. s1′−s1=0 | degree=1 The third stack element should satisfy the following constraint. s2′−(s0+s1)⋅(s2+s3)+s0⋅s2=0 | degree=2 The fourth stack element should satisfy the following constraint. s3′−s1⋅s3+2⋅s0⋅s2=0 | degree=2 The effect on the rest of the stack is: No change starting from position 4.","breadcrumbs":"Design » Operand stack » Field operations » EXT2MUL","id":"167","title":"EXT2MUL"},"168":{"body":"In this section we describe semantics and AIR constraints of operations over u32 values (i.e., 32-bit unsigned integers) as they are implemented in Miden VM.","breadcrumbs":"Design » Operand stack » u32 operations » u32 Operations","id":"168","title":"u32 Operations"},"169":{"body":"Most operations described below require some number of 16-bit range checks (i.e., verifying that the value of a field element is smaller than 216). The number of required range checks varies between 2 and 4, depending on the operation. However, to simplify the constraint system, we force each relevant operation to consume exactly 4 range checks. To perform these range checks, the prover puts the values to be range-checked into helper registers h0,...,h3, and then divides the range checker bus column brange by a randomized product of these values. This operation is enforced via the following constraint: brange′⋅(α0+h0)⋅(α0+h1)⋅(α0+h2)⋅(α0+h3)=brange | degree=5 The above is just a partial constraint as it does not show the range checker's part of the constraint, which multiplies the required values into the bus column. It also omits the selector flag which is used to turn this constraint on only when executing relevant operations.","breadcrumbs":"Design » Operand stack » u32 operations » Range checks","id":"169","title":"Range checks"},"17":{"body":"As described here the Miden VM can consume public and secret inputs. Public inputs: operand_stack - can be supplied to the VM to initialize the stack with the desired values before a program starts executing. There is no limit on the number of stack inputs that can be initialized in this way, although increasing the number of public inputs increases the cost to the verifier. Secret (or nondeterministic) inputs: advice_stack - can be supplied to the VM. There is no limit on how much data the advice provider can hold. This is provided as a string array where each string entry represents a field element. advice_map - is supplied as a map of 64-character hex keys, each mapped to an array of numbers. The hex keys are interpreted as 4 field elements and the arrays of numbers are interpreted as arrays of field elements. merkle_store - the Merkle store is container that allows the user to define merkle_tree and sparse_merkle_tree data structures. merkle_tree - is supplied as an array of 64-character hex values where each value represents a leaf (4 elements) in the tree. sparse_merkle_tree - is supplied an an array of tuples of the form (number, 64-character hex string). The number represents the leaf index and the hex string represents the leaf value (4 elements). Check out the comparison example to see how secret inputs work. After a program finishes executing, the elements that remain on the stack become the outputs of the program, along with the overflow addresses (overflow_addrs) that are required to reconstruct the stack overflow table .","breadcrumbs":"Introduction » Usage » Inputs","id":"17","title":"Inputs"},"170":{"body":"Another primitive which is required by most of the operations described below is checking whether four 16-bit values form a valid field element. Assume t0, t1, t2, and t3 are known to be 16-bit values, and we want to verify that 248⋅t3+232⋅t2+216⋅t1+t0 is a valid field element. For simplicity, let's denote: vhi=216⋅t3+t2vlo=216⋅t1+t0 We can then impose the following constraint to verify element validity: (1−m⋅(232−1−vhi))⋅vlo=0 | degree=3 Where m is a value set non-deterministically by the prover. The above constraint should hold only if either of the following hold: vlo=0 vhi=232−1 To satisfy the latter equation, the prover needs to set m=(232−1−vhi)−1, which is possible only when vhi=232−1. This constraint is sufficient because modulus 264−232+1 in binary representation is 32 ones, followed by 31 zeros, followed by a single one: 1111111111111111111111111111111100000000000000000000000000000001 This implies that the largest possible 64-bit value encoding a valid field element would be 32 ones, followed by 32 zeros: 1111111111111111111111111111111100000000000000000000000000000000 Thus, for a 64-bit value to encode a valid field element, either the lower 32 bits must be all zeros, or the upper 32 bits must not be all ones (which is 232−1).","breadcrumbs":"Design » Operand stack » u32 operations » Checking element validity","id":"170","title":"Checking element validity"},"171":{"body":"Assume a is the element at the top of the stack. The U32SPLIT operation computes (b,c)←a, where b contains the lower 32 bits of a, and c contains the upper 32 bits of a. The diagram below illustrates this graphically. u32split To facilitate this operation, the prover sets values in h0,...,h3 to 16-bit limbs of a with h0 being the least significant limb. Thus, stack transition for this operation must satisfy the following constraints: s0=248⋅h3+232⋅h2+216⋅h1+h0 | degree=1 s1′=216⋅h1+h0 | degree=1 s0′=216⋅h3+h2 | degree=1 In addition to the above constraints, we also need to verify that values in h0,...,h3 are smaller than 216, which we can do using 16-bit range checks as described previously . Also, we need to make sure that values in h0,...,h3, when combined, form a valid field element, which we can do by putting a nondeterministic value m into helper register h4 and using the technique described here . The effect of this operation on the rest of the stack is: Right shift starting from position 1.","breadcrumbs":"Design » Operand stack » u32 operations » U32SPLIT","id":"171","title":"U32SPLIT"},"172":{"body":"Assume a and b are the elements at the top of the stack. The U32ASSERT2 verifies that both a and b are smaller than 232. The diagram below illustrates this graphically. u32assert2 To facilitate this operation, the prover sets values in h0 and h1 to low and high 16-bit limbs of a, and values in h2 and h3 to to low and high 16-bit limbs of b. Thus, stack transition for this operation must satisfy the following constraints: s0′=216⋅h3+h2 | degree=1 s1′=216⋅h1+h0 | degree=1 In addition to the above constraints, we also need to verify that values in h0,...,h3 are smaller than 216, which we can do using 16-bit range checks as described previously . The effect of this operation on the rest of the stack is: No change starting from position 0 - i.e., the state of the stack does not change.","breadcrumbs":"Design » Operand stack » u32 operations » U32ASSERT2","id":"172","title":"U32ASSERT2"},"173":{"body":"Assume a and b are the values at the top of the stack which are known to be smaller than 232. The U32ADD operation computes (c,d)←a+b, where c contains the low 32-bits of the result, and d is the carry bit. The diagram below illustrates this graphically. u32add To facilitate this operation, the prover sets values in h0, h1, and h2 to 16-bit limbs of a+b with h0 being the least significant limb. Value in h3 is set to 0. Thus, stack transition for this operation must satisfy the following constraints: s0+s1=232⋅h2+216⋅h1+h0 | degree=1 s0′=h2 | degree=1 s1′=216⋅h1+h0 | degree=1 In addition to the above constraints, we also need to verify that values in h0,...,h3 are smaller than 216, which we can do using 16-bit range checks as described previously . The effect of this operation on the rest of the stack is: No change starting from position 2.","breadcrumbs":"Design » Operand stack » u32 operations » U32ADD","id":"173","title":"U32ADD"},"174":{"body":"Assume a, b, c are the values at the top of the stack which are known to be smaller than 232. The U32ADD3 operation computes (d,e)←a+b+c, where c and d contains the low and the high 32-bits of the result respectively. The diagram below illustrates this graphically. u32add3 To facilitate this operation, the prover sets values in h0, h1, and h2 to 16-bit limbs of a+b+c with h0 being the least significant limb. Value in h3 is set to 0. Thus, stack transition for this operation must satisfy the following constraints: s0+s1+s2=232⋅h2+216⋅h1+h0 | degree=1 s0′=h2 | degree=1 s1′=216⋅h1+h0 | degree=1 In addition to the above constraints, we also need to verify that values in h0,...,h3 are smaller than 216, which we can do using 16-bit range checks as described previously . The effect of this operation on the rest of the stack is: Left shift starting from position 3.","breadcrumbs":"Design » Operand stack » u32 operations » U32ADD3","id":"174","title":"U32ADD3"},"175":{"body":"Assume a and b are the values at the top of the stack which are known to be smaller than 232. The U32SUB operation computes (c,d)←a−b, where c contains the 32-bit result in two's complement, and d is the borrow bit. The diagram below illustrates this graphically. u32sub To facilitate this operation, the prover sets values in h0 and h1 to the low and the high 16-bit limbs of a−b respectively. Values in h2 and h3 are set to 0. Thus, stack transition for this operation must satisfy the following constraints: s1=s0+s1′+232⋅s0′ | degree=1 s0′2−s0′=0 | degree=2 s1′=216⋅h1+h0 | degree=1 In addition to the above constraints, we also need to verify that values in h0,...,h3 are smaller than 216, which we can do using 16-bit range checks as described previously . The effect of this operation on the rest of the stack is: No change starting from position 2.","breadcrumbs":"Design » Operand stack » u32 operations » U32SUB","id":"175","title":"U32SUB"},"176":{"body":"Assume a and b are the values at the top of the stack which are known to be smaller than 232. The U32MUL operation computes (c,d)←a⋅b, where c and d contain the low and the high 32-bits of the result respectively. The diagram below illustrates this graphically. u32mul To facilitate this operation, the prover sets values in h0,...,h3 to 16-bit limbs of a⋅b with h0 being the least significant limb. Thus, stack transition for this operation must satisfy the following constraints: s0⋅s1=248⋅h3+232⋅h2+216⋅h1+h0 | degree=2 s1′=216⋅h1+h0 | degree=1 s0′=216⋅h3+h2 | degree=1 In addition to the above constraints, we also need to verify that values in h0,...,h3 are smaller than 216, which we can do using 16-bit range checks as described previously . Also, we need to make sure that values in h0,...,h3, when combined, form a valid field element, which we can do by putting a nondeterministic value m into helper register h4 and using the technique described here . The effect of this operation on the rest of the stack is: No change starting from position 2.","breadcrumbs":"Design » Operand stack » u32 operations » U32MUL","id":"176","title":"U32MUL"},"177":{"body":"Assume a, b, c are the values at the top of the stack which are known to be smaller than 232. The U32MADD operation computes (d,e)←a+b⋅c, where c and d contains the low and the high 32-bits of a+b⋅c. The diagram below illustrates this graphically. u32madd To facilitate this operation, the prover sets values in h0,...,h3 to 16-bit limbs of a+b⋅c with h0 being the least significant limb. Thus, stack transition for this operation must satisfy the following constraints: s0⋅s1+s2=248⋅h3+232⋅h2+216⋅h1+h0 | degree=2 s1′=216⋅h1+h0 | degree=1 s0′=216⋅h3+h2 | degree=1 In addition to the above constraints, we also need to verify that values in h0,...,h3 are smaller than 216, which we can do using 16-bit range checks as described previously . Also, we need to make sure that values in h0,...,h3, when combined, form a valid field element, which we can do by putting a nondeterministic value m into helper register h4 and using the technique described here . Note : that the above constraints guarantee the correctness of the operation iff a+b⋅c cannot overflow field modules (which is the case for the field with modulus 264−232+1). The effect of this operation on the rest of the stack is: Left shift starting from position 3.","breadcrumbs":"Design » Operand stack » u32 operations » U32MADD","id":"177","title":"U32MADD"},"178":{"body":"Assume a and b are the values at the top of the stack which are known to be smaller than 232. The U32DIV operation computes (c,d)←a/b, where c contains the quotient and d contains the remainder. The diagram below illustrates this graphically. u32div To facilitate this operation, the prover sets values in h0 and h1 to 16-bit limbs of a−c, and values in h2 and h3 to 16-bit limbs of b−d−1. Thus, stack transition for this operation must satisfy the following constraints: s1=s0⋅s1′+s0′ | degree=2 s1−s1′=216⋅h1+h0 | degree=1 s0−s0′−1=216⋅h2+h3 | degree=1 The second constraint enforces that s1′≤s1, while the third constraint enforces that s0′216), we can do over 4n arbitrary 16-bit range-checks. For short traces (25> In order to add a breakpoint, the user should insert a breakpoint instruction into the MASM file. This will generate a Noop operation that will be decorated with the debug break configuration. This is a provisory solution until the source mapping is implemented. The following example will halt on the third instruction of foo: proc.foo dup dup.2 breakpoint swap add.1\nend begin exec.foo\nend","breadcrumbs":"Development tooling » Debugger » Miden Debugger","id":"23","title":"Miden Debugger"},"230":{"body":"Some chiplets require the use of a virtual table to maintain and enforce the correctness of their internal state. Because the length of these virtual tables does not exceed the length of the chiplets themselves, a single virtual table called vtchip can be shared by all chiplets. Currently, the chiplets virtual table combines two virtual tables: the hash chiplet's sibling table the kernel ROM chiplet's kernel procedure table To combine these correctly, the running product column for this table must be constrained not only at the beginning and the end of the trace, but also where the hash chiplet ends and where the kernel ROM chiplet begins. These positions can be identified using the chiplet selector columns.","breadcrumbs":"Design » Chiplets » Chiplets virtual table","id":"230","title":"Chiplets virtual table"},"231":{"body":"The expected boundary values for each chiplet's portion of the virtual table must be enforced. This can be done as follows. For the sibling table to be properly constrained, the value of the running product column must be 1 when the sibling table starts and finishes. This can be achieved by: enforcing a boundary constraint for vtchip=1 at the first row using the the following transition constraint to enforce that the value is once again 1 at the last cycle of the hash chiplet. (s0′−s0)⋅(1−vtchip)=0 | degree=2 For the kernel procedure table to be properly constrained, the value must be 1 when it starts, and it must be equal to the product of all of the kernel ROM procedures when it finishes. This can be achieved by: enforcing a boundary constraint against the last row for the value of all of the kernel ROM procedures using the following transition constraint to enforce that when the active chiplet changes to the kernel ROM chiplet the value is 1. s0⋅s1⋅(s2′−s2)⋅(1−vtchip′)=0 | degree=4","breadcrumbs":"Design » Chiplets » Chiplets virtual table constraints","id":"231","title":"Chiplets virtual table constraints"},"232":{"body":"Miden VM \"offloads\" all hash-related computations to a separate hash processor . This chiplet supports executing the Rescue Prime Optimized hash function (or rather a specific instantiation of it) in the following settings: A single permutation of Rescue Prime Optimized. A simple 2-to-1 hash. A linear hash of n field elements. Merkle path verification. Merkle root update. The chiplet can be thought of as having a small instruction set of 11 instructions. These instructions are listed below, and examples of how these instructions are used by the chiplet are described in the following sections. Instruction Description HR Executes a single round of the VM's native hash function. All cycles which are not one less than a multiple of 8 execute this instruction. That is, the chiplet executes this instruction on cycles 0,1,2,3,4,5,6, but not 7, and then again, 8,9,10,11,12,13,14, but not 15 etc. BP Initiates computation of a single permutation, a 2-to-1 hash, or a linear hash of many elements. This instruction can be executed only on cycles which are multiples of 8, and it can also be executed concurrently with an HR instruction. MP Initiates Merkle path verification computation. This instruction can be executed only on cycles which are multiples of 8, and it can also be executed concurrently with an HR instruction. MV Initiates Merkle path verification for the \"old\" node value during Merkle root update computation. This instruction can be executed only on cycles which are multiples of 8, and it can also be executed concurrently with an HR instruction. MU Initiates Merkle path verification for the \"new\" node value during Merkle root update computation. This instruction can be executed only on cycles which are multiples of 8, and it can also be executed concurrently with an HR instruction. HOUT Returns the result of the currently running computation. This instruction can be executed only on cycles which are one less than a multiple of 8 (e.g. 7, 15 etc.). SOUT Returns the whole hasher state. This instruction can be executed only on cycles which are one less than a multiple of 8, and only if the computation was started using BP instruction. ABP Absorbs a new set of elements into the hasher state when computing a linear hash of many elements. This instruction can be executed only on cycles which are one less than a multiple of 8, and only if the computation was started using BP instruction. MPA Absorbs the next Merkle path node into the hasher state during Merkle path verification computation. This instruction can be executed only on cycles which are one less than a multiple of 8, and only if the computation was started using MP instruction. MVA Absorbs the next Merkle path node into the hasher state during Merkle path verification for the \"old\" node value during Merkle root update computation. This instruction can be executed only on cycles which are one less than a multiple of 8, and only if the computation was started using MV instruction. MUA Absorbs the next Merkle path node into the hasher state during Merkle path verification for the \"new\" node value during Merkle root update computation. This instruction can be executed only on cycles which are one less than a multiple of 8, and only if the computation was started using Mu instruction.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Hash chiplet","id":"232","title":"Hash chiplet"},"233":{"body":"Execution trace table of the chiplet consists of 16 trace columns and 3 periodic columns. The structure of the table is such that a single permutation of the hash function can be computed using 8 table rows. The layout of the table is illustrated below. hash_execution_trace The meaning of the columns is as follows: Three periodic columns k0, k1, and k2 are used to help select the instruction executed at a given row. All of these columns contain patterns which repeat every 8 rows. For k0 the pattern is 7 zeros followed by 1 one, helping us identify the last row in the cycle. For k1 the pattern is 6 zeros, 1 one, and 1 zero, which can be used to identify the second-to-last row in a cycle. For k2 the pattern is 1 one followed by 7 zeros, which can identify the first row in the cycle. Three selector columns s0, s1, and s2. These columns can contain only binary values (ones or zeros), and they are also used to help select the instruction to execute at a given row. Twelve hasher state columns h0,...,h11. These columns are used to hold the hasher state for each round of the hash function permutation. The state is laid out as follows: The first four columns (h0,...,h3) are reserved for capacity elements of the state. When the state is initialized for hash computations, h0 should be set to 0 if the number of elements to be hashed is a multiple of the rate width (8). Otherwise, h0 should be set to 1. h1 should be set to the domain value if a domain has been provided (as in the case of control block hashing ). All other capacity elements should be set to 0's. The next eight columns (h4,...,h11) are reserved for the rate elements of the state. These are used to absorb the values to be hashed. Once the permutation is complete, hash output is located in the first four rate columns (h4,...,h7). One index column i. This column is used to help with Merkle path verification and Merkle root update computations. In addition to the columns described above, the chiplet relies on two running product columns which are used to facilitate multiset checks (similar to the ones described here ). These columns are: bchip - which is used to tie the chiplet table with the main VM's stack and decoder. That is, values representing inputs consumed by the chiplet and outputs produced by the chiplet are multiplied into bchip, while the main VM stack (or decoder) divides them out of bchip. Thus, if the sets of inputs and outputs between the main VM stack and hash chiplet are the same, the value of bchip should be equal to 1 at the start and the end of the execution trace. p1 - which is used to keep track of the sibling table used for Merkle root update computations. Specifically, when a root for the old leaf value is computed, we add an entry for all sibling nodes to the table (i.e., we multiply p1 by the values representing these entries). When the root for the new leaf value is computed, we remove the entries for the nodes from the table (i.e., we divide p1 by the value representing these entries). Thus, if both computations used the same set of sibling nodes (in the same order), the sibling table should be empty by the time Merkle root update procedure completes (i.e., the value of p1 would be 1).","breadcrumbs":"Design » Chiplets » Hash Chiplet » Chiplet trace","id":"233","title":"Chiplet trace"},"234":{"body":"As mentioned above, chiplet instructions are encoded using a combination of periodic and selector columns. These columns can be used to compute a binary flag for each instruction. Thus, when a flag for a given instruction is set to 1, the chiplet executes this instruction. Formulas for computing instruction flags are listed below. Flag Value Notes frpr 1−k0 Set to 1 on the first 7 steps of every 8-step cycle. fbp k2⋅s0⋅(1−s1)⋅(1−s2) Set to 1 when selector flags are (1,0,0) on rows which are multiples of 8. fmp k2⋅s0⋅(1−s1)⋅s2 Set to 1 when selector flags are (1,0,1) on rows which are multiples of 8. fmv k2⋅s0⋅s1⋅(1−s2) Set to 1 when selector flags are (1,1,0) on rows which are multiples of 8. fmu k2⋅s0⋅s1⋅s2 Set to 1 when selector flags are (1,1,1) on rows which are multiples of 8. fhout k0⋅(1−s0)⋅(1−s1)⋅(1−s2) Set to 1 when selector flags are (0,0,0) on rows which are 1 less than a multiple of 8. fsout k0⋅(1−s0)⋅(1−s1)⋅s2 Set to 1 when selector flags are (0,0,1) on rows which are 1 less than a multiple of 8. fabp k0⋅s0⋅(1−s1)⋅(1−s2) Set to 1 when selector flags are (1,0,0) on rows which are 1 less than a multiple of 8. fmpa k0⋅s0⋅(1−s1)⋅s2 Set to 1 when selector flags are (1,0,1) on rows which are 1 less than a multiple of 8. fmva k0⋅s0⋅s1⋅(1−s2) Set to 1 when selector flags are (1,1,0) on rows which are 1 less than a multiple of 8. fmua k0⋅s0⋅s1⋅s2 Set to 1 when selector flags are (1,1,1) on rows which are 1 less than a multiple of 8. A few additional notes about flag values: With the exception of frpr, all flags are mutually exclusive. That is, if one flag is set to 1, all other flats are set to 0. With the exception of frpr, computing flag values involves 3 multiplications, and thus the degree of these flags is 4. We can also define a flag fout=k0⋅(1−s0)⋅(1−s1). This flag will be set to 1 when either fhout=1 or fsout=1 in the current row. We can define a flag fout′=k1⋅(1−s0′)⋅(1−s1′). This flag will be set to 1 when either fhout=1 or fsout=1 in the next row. We also impose the following restrictions on how values in selector columns can be updated: Values in columns s1 and s2 must be copied over from one row to the next, unless fout=1 or fout′=1 indicating the hout or sout flag is set for the current or the next row. Value in s0 must be set to 1 if fout=1 for the previous row, and to 0 if any of the flags fabp, fmpa, fmva, or fmua are set to 1 for the previous row. The above rules ensure that we must finish one computation before starting another, and we can't change the type of the computation before the computation is finished.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Instruction flags","id":"234","title":"Instruction flags"},"235":{"body":"","breadcrumbs":"Design » Chiplets » Hash Chiplet » Computation examples","id":"235","title":"Computation examples"},"236":{"body":"Computing a single permutation of Rescue Prime Optimized hash function involves the following steps: Initialize hasher state with 12 field elements. Apply Rescue Prime Optimized permutation. Return the entire hasher state as output. The chiplet accomplishes the above by executing the following instructions: [BP, HR] // init state and execute a hash round (concurrently)\nHR HR HR HR HR HR // execute 6 more hash rounds\nSOUT // return the entire state as output Execution trace for this computation would look as illustrated below. hash_1_permutation_trace In the above {a0,...,a11} is the input state of the hasher, and {b0,...,b11} is the output state of the hasher.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Single permutation","id":"236","title":"Single permutation"},"237":{"body":"Computing a 2-to-1 hash involves the following steps: Initialize hasher state with 8 field elements, setting the second capacity element to domain if the domain is provided (as in the case of control block hashing ) or else 0, and the remaining capacity elements to 0. Apply Rescue Prime Optimized permutation. Return elements [4,8) of the hasher state as output. The chiplet accomplishes the above by executing the following instructions: [BP, HR] // init state and execute a hash round (concurrently)\nHR HR HR HR HR HR // execute 6 more hash rounds\nHOUT // return elements 4, 5, 6, 7 of the state as output Execution trace for this computation would look as illustrated below. hash_2_to_1_hash In the above, we compute the following: {c0,c1,c2,c3}←hash({a0,a1,a2,a3},{b0,b1,b2,b3})","breadcrumbs":"Design » Chiplets » Hash Chiplet » Simple 2-to-1 hash","id":"237","title":"Simple 2-to-1 hash"},"238":{"body":"Computing a linear hash of n elements consists of the following steps: Initialize hasher state with the first 8 elements, setting the first capacity register to 0 if n is a multiple of the rate width (8) or else 1, and the remaining capacity elements to 0. Apply Rescue Prime Optimized permutation. Absorb the next set of elements into the state (up to 8 elements), while keeping capacity elements unchanged. Repeat steps 2 and 3 until all n elements have been absorbed. Return elements [4,8) of the hasher state as output. The chiplet accomplishes the above by executing the following instructions (for hashing 16 elements): [BP, HR] // init state and execute a hash round (concurrently)\nHR HR HR HR HR HR // execute 6 more hash rounds\nABP // absorb the next set of elements into the state\nHR HR HR HR HR HR HR // execute 7 hash rounds\nHOUT // return elements 4, 5, 6, 7 of the state as output Execution trace for this computation would look as illustrated below. hash_linear_hash_n In the above, the value absorbed into hasher state between rows 7 and 8 is the delta between values ti and si. Thus, if we define bi=ti−si for i∈[0,8), the above computes the following: {r0,r1,r2,r3}←hash(a0,...,a7,b0,...,b7)","breadcrumbs":"Design » Chiplets » Hash Chiplet » Linear hash of n elements","id":"238","title":"Linear hash of n elements"},"239":{"body":"Verifying a Merkle path involves the following steps: Initialize hasher state with the leaf and the first node of the path, setting all capacity elements to 0s. a. Also, initialize the index register to the leaf's index value. Apply Rescue Prime Optimized permutation. a. Make sure the index value doesn't change during this step. Copy the result of the hash to the next row, and absorb the next node of the Merkle path into the hasher state. a. Remove a single bit from the index, and use it to determine how to place the copied result and absorbed node in the state. Repeat steps 2 and 3 until all nodes of the Merkle path have been absorbed. Return elements [4,8) of the hasher state as output. a. Also, make sure the index value has been reduced to 0. The chiplet accomplishes the above by executing the following instructions (for Merkle tree of depth 3): [MP, HR] // init state and execute a hash round (concurrently)\nHR HR HR HR HR HR // execute 6 more hash rounds\nMPA // copy result & absorb the next node into the state\nHR HR HR HR HR HR HR // execute 7 hash rounds\nHOUT // return elements 4, 5, 6, 7 of the state as output Suppose we have a Merkle tree as illustrated below. This Merkle tree has 4 leaves, each of which consists of 4 field elements. For example, leaf a consists of elements a0,a1,a2,a3, leaf be consists of elements b0,b1,b2,b3 etc. hash_merkle_tree If we wanted to verify that leaf d is in fact in the tree, we'd need to compute the following hashes: r←hash(e,hash(c,d)) And if r=g, we can be convinced that d is in fact in the tree at position 3. Execution trace for this computation would look as illustrated below. hash_merkle_tree_trace In the above, the prover provides values for nodes c and e non-deterministically.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Verify Merkle path","id":"239","title":"Verify Merkle path"},"24":{"body":"The Miden Read–eval–print loop (REPL) is a Miden shell that allows for quick and easy debugging of Miden assembly. After the REPL gets initialized, you can execute any Miden instruction, undo executed instructions, check the state of the stack and memory at a given point, and do many other useful things! When the REPL is exited, a history.txt file is saved. One thing to note is that all the REPL native commands start with an ! to differentiate them from regular assembly instructions. Miden REPL can be started via the CLI repl command like so: ./target/optimized/miden repl","breadcrumbs":"Development tooling » REPL » Miden REPL","id":"24","title":"Miden REPL"},"240":{"body":"Updating a node in a Merkle tree (which also updates the root of the tree) can be simulated by verifying two Merkle paths: the path that starts with the old leaf and the path that starts with the new leaf. Suppose we have the same Merkle tree as in the previous example, and we want to replace node d with node d′. The computations we'd need to perform are: r←hash(e,hash(c,d))r′←hash(e,hash(c,d′)) Then, as long as r=g, and the same values were used for c and e in both computations, we can be convinced that the new root of the tree is r′. The chiplet accomplishes the above by executing the following instructions: // verify the old merkle path\n[MV, HR] // init state and execute a hash round (concurrently)\nHR HR HR HR HR HR // execute 6 more hash rounds\nMPV // copy result & absorb the next node into the state\nHR HR HR HR HR HR HR // execute 7 hash rounds\nHOUT // return elements 4, 5, 6, 7 of the state as output // verify the new merkle path\n[MU, HR] // init state and execute a hash round (concurrently)\nHR HR HR HR HR HR // execute 6 more hash rounds\nMPU // copy result & absorb the next node into the state\nHR HR HR HR HR HR HR // execute 7 hash rounds\nHOUT // return elements 4, 5, 6, 7 of the state as output The semantics of MV and MU instructions are similar to the semantics of MP instruction from the previous example (and MVA and MUA are similar to MPA) with one important difference: MV* instructions add the absorbed node (together with its index in the tree) to permutation column p1, while MU* instructions remove the absorbed node (together with its index in the tree) from p1. Thus, if the same nodes were used during both Merkle path verification, the state of p1 should not change. This mechanism is used to ensure that the same internal nodes were used in both computations.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Update Merkle root","id":"240","title":"Update Merkle root"},"241":{"body":"When describing AIR constraints, we adopt the following notation: for column x, we denote the value in the current row simply as x, and the value in the next row of the column as x′. Thus, all transition constraints described in this note work with two consecutive rows of the execution trace.","breadcrumbs":"Design » Chiplets » Hash Chiplet » AIR constraints","id":"241","title":"AIR constraints"},"242":{"body":"For selector columns, first we must ensure that only binary values are allowed in these columns. This can be done with the following constraints: s02−s0=0 | degree=2s12−s1=0 | degree=2s22−s2=0 | degree=2 Next, we need to make sure that unless fout=1 or fout′=1, the values in columns s1 and s2 are copied over to the next row. This can be done with the following constraints: (s1′−s1)⋅(1−fout′)⋅(1−fout)=0 | degree=7(s2′−s2)⋅(1−fout′)⋅(1−fout)=0 | degree=7 Next, we need to enforce that if any of fabp,fmpa,fmva,fmua flags is set to 1, the next value of s0 is 0. In all other cases, s0 should be unconstrained. These flags will only be set for rows that are 1 less than a multiple of 8 (the last row of each cycle). This can be done with the following constraint: s0′⋅(fabp+fmpa+fmva+fmua)=0 | degree=5 Lastly, we need to make sure that no invalid combinations of flags are allowed. This can be done with the following constraints: k0⋅(1−s0)⋅s1=0 | degree=3 The above constraints enforce that on every step which is one less than a multiple of 8, if s0=0, then s1 must also be set to 0. Basically, if we set s0=0, then we must make sure that either fhout=1 or fsout=1.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Selector columns constraints","id":"242","title":"Selector columns constraints"},"243":{"body":"Node index column i is relevant only for Merkle path verification and Merkle root update computations, but to simplify the overall constraint system, the same constraints will be imposed on this column for all computations. Overall, we want values in the index column to behave as follows: When we start a new computation, we should be able to set i to an arbitrary value. When a computation is finished, value in i must be 0. When we absorb a new node into the hasher state we must shift the value in i by one bit to the right. In all other cases value in i should not change. A shift by one bit to the right can be described with the following equation: i=2⋅i′+b, where b is the value of the bit which is discarded. Thus, as long as b is a binary value, the shift to the right is performed correctly, and this can be enforced with the following constraint: b2−b=0 Since we want to enforce this constraint only when a new node is absorbed into the hasher state, we'll define a flag for when this should happen as follows: fan=fmp+fmv+fmu+fmpa+fmva+fmua And then the full constraint would looks as follows: fan⋅(b2−b)=0 | degree=6 Next, to make sure when a computation is finished i=0, we can use the following constraint: fout⋅i=0 | degree=4 Finally, to make sure that the value in i is copied over to the next row unless we are absorbing a new row or the computation is finished, we impose the following constraint: (1−fan−fout)⋅(i′−i)=0 | degree=5 To satisfy these constraints for computations not related to Merkle paths (i.e., 2-to-1 hash and liner hash of elements), we can set i=0 at the start of the computation. This guarantees that i will remain 0 until the end of the computation.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Node index constraints","id":"243","title":"Node index constraints"},"244":{"body":"Hasher state columns h0,...,h11 should behave as follows: For the first 7 row of every 8-row cycle (i.e., when k0=0), we need to apply Rescue Prime Optimized round constraints to the hasher state. For brevity, we omit these constraints from this note. On the 8th row of every 8-row cycle, we apply the constraints based on which transition flag is set as described in the table below. Specifically, when absorbing the next set of elements into the state during linear hash computation (i.e., fabp=1), the first 4 elements (the capacity portion) are carried over to the next row. For j∈[0,4) this can be described as follows: fabp⋅(hj′−hj)=0 | degree=5 When absorbing the next node during Merkle path computation (i.e., fmp+fmv+fmu=1), the result of the previous hash (h4,...,h7) are copied over either to (h4′,...,h7′) or to (h8′,...,h11′) depending on the value of b, which is defined in the same way as in the previous section. For j∈[0,4) this can be described as follows: (fmp+fmv+fmu)⋅((1−b)⋅(hj+4′−hj+4)+b⋅(hj+8′−hj+4))=0 | degree=6 Note, that when a computation is completed (i.e., fout=1), the next hasher state is unconstrained.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Hasher state constraints","id":"244","title":"Hasher state constraints"},"245":{"body":"In this sections we describe constraints which enforce updates for multiset check columns bchip and p1. These columns can be updated only on rows which are multiples of 8 or 1 less than a multiple of 8. On all other rows the values in the columns remain the same. To simplify description of the constraints, we define the following variables. Below, we denote random values sent by the verifier after the prover commits to the main execution trace as α0, α1, α2 etc. m=oplabel+24⋅k0+25⋅k2vh=α0+α1⋅m+α2⋅(clk+1)+α3⋅iva=j=0∑3(αj+4⋅hj)vb=j=4∑7(αj+4⋅hj)vc=j=8∑11(αj+4⋅hj)vd=j=8∑11(αj⋅hj) In the above: m is a transition label , composed of the operation label and the periodic columns that uniquely identify each transition function. The values in the k0 and k2 periodic columns are included to identify the row in the hash cycle where the operation occurs. They serve to differentiate between operations that share selectors but occur at different rows in the cycle, such as BP, which uses oplinhash at the first row in the cycle to initiatiate a linear hash, and ABP, which uses oplinhash at the last row in the cycle to absorb new elements. vh is a common header which is a combination of the transition label, a unique row address, and the node index. For the unique row address, the clk column from the system component is used, but we add 1, because the system's clk column starts at 0. va, vb, vc are the first, second, and third words (4 elements) of the hasher state. vd is the third word of the hasher state but computed using the same α values as used for the second word. This is needed for computing the value of vleaf below to ensure that the same α values are used for the leaf node regardless of which part of the state the node comes from. Chiplets bus constraints As described previously, the chiplets bus bchip, implemented as a running product column, is used to tie the hash chiplet with the main VM's stack and decoder. When receiving inputs from or returning results to the stack (or decoder), the hash chiplet multiplies bchip by their respective values. On the other side, when sending inputs to the hash chiplet or receiving results from the chiplet, the stack (or decoder) divides bchip by their values. In the section below we describe only the hash chiplet side of the constraints (i.e., multiplying bchip by relevant values). We define the values which are to be multiplied into bchip for each operation as follows: When starting a new simple or linear hash computation (i.e., fbp=1) or when returning the entire state of the hasher (fsout=1), the entire hasher state is included into bchip: vall=vh+va+vb+vc When starting a Merkle path computation (i.e., fmp+fmv+fmu=1), we include the leaf of the path into bchip. The leaf is selected from the state based on value of b (defined as in the previous section): vleaf=vh+(1−b)⋅vb+b⋅vd When absorbing a new set of elements into the state while computing a linear hash (i.e., fabp=1), we include deltas between the last 8 elements of the hasher state (the rate) into bchip: vabp=vh+vb′+vc′−(vb+vc) When a computation is complete (i.e., fhout=1), we include the second word of the hasher state (the result) into bchip: vres=vh+vb Using the above values, we can describe the constraints for updating column bchip as follows. bchip′=bchip⋅((fbp+fsout)⋅vall+(fmp+fmv+fmu)⋅vleaf+fabp⋅vabp+fhout⋅vres+1−(fbp+fmp+fmv+fmu+fabp+fout)) The above constraint reduces to the following under various flag conditions: Condition Applied constraint fbp=1 bchip′=bchip⋅vall fsout=1 bchip′=bchip⋅vall fmp=1 bchip′=bchip⋅vleaf fmv=1 bchip′=bchip⋅vleaf fmu=1 bchip′=bchip⋅vleaf fabp=1 bchip′=bchip⋅vabp fhout=1 bchip′=bchip⋅vres Otherwise bchip′=bchip Note that the degree of the above constraint is 7. Sibling table constraints Note: Although this table is described independently, it is implemented as part of the chiplets virtual table , which combines all virtual tables required by the any of the chiplets into a single master table. As mentioned previously, the sibling table (represented by running column p1) is used to keep track of sibling nodes used during Merkle root update computations. For this computation, we need to enforce the following rules: When computing the old Merkle root, whenever a new sibling node is absorbed into the hasher state (i.e., fmv+fmva=1), an entry for this sibling should be included into p1. When computing the new Merkle root, whenever a new sibling node is absorbed into the hasher state (i.e., fmu+fmua=1), the entry for this sibling should be removed from p1. To simplify the description of the constraints, we use variables vb and vc defined above and define the value representing an entry in the sibling table as follows: vsibling=α0+α3⋅i+b⋅vb+(1−b)⋅vc Using the above value, we can define the constraint for updating p1 as follows: p1′⋅((fmv+fmva)⋅vsibling+1−(fmv+fmva))=p1⋅((fmu+fmua)⋅vsibling+1−(fmu+fmua)) The above constraint reduces to the following under various flag conditions: Condition Applied constraint fmv=1 p1′⋅vsibling=p1 fmva=1 p1′⋅vsibling=p1 fmu=1 p1′=p1⋅vsibling fmua=1 p1′=p1⋅vsibling Otherwise p1′=p1 Note that the degree of the above constraint is 7. To make sure computation of the old Merkle root is immediately followed by the computation of the new Merkle root, we impose the following constraint: (fbp+fmp+fmv)⋅(1−p1)=0 | degree=5 The above means that whenever we start a new computation which is not the computation of the new Merkle root, the sibling table must be empty. Thus, after the hash chiplet computes the old Merkle root, the only way to clear the table is to compute the new Merkle root. Together with boundary constraints enforcing that p1=1 at the first and last rows of the running product column which implements the sibling table, the above constraints ensure that if a node was included into p1 as a part of computing the old Merkle root, the same node must be removed from p1 as a part of computing the new Merkle root. These two boundary constraints are described as part of the chiplets virtual table constraints .","breadcrumbs":"Design » Chiplets » Hash Chiplet » Multiset check constraints","id":"245","title":"Multiset check constraints"},"246":{"body":"In this note we describe how to compute bitwise AND and XOR operations on 32-bit values and the constraints required for proving correct execution. Assume that a and b are field elements in a 64-bit prime field. Assume also that a and b are known to contain values smaller than 232. We want to compute a⊕b→z, where ⊕ is either bitwise AND or XOR, and z is a field element containing the result of the corresponding bitwise operation. First, observe that we can compute AND and XOR relations for single bit values as follows: and(a,b)=a⋅b xor(a,b)=a+b−2⋅a⋅b To compute bitwise operations for multi-bit values, we will decompose the values into individual bits, apply the operations to single bits, and then aggregate the bitwsie results into the final result. To perform this operation we will use a table with 12 columns, and computing a single AND or XOR operation will require 8 table rows. We will also rely on two periodic columns as shown below. bitwise_execution_trace In the above, the columns have the following meanings: Periodic columns k0 and k1. These columns contain values needed to switch various constraint on or off. k0 contains a repeating sequence of a single one, followed by seven zeros. k1 contains a repeating sequence of seven ones, followed by a single zero. Input columns a and b. On the first row of each 8-row cycle, the prover will set values in these columns to the upper 4 bits of the values to which a bitwise operation is to be applied. For all subsequent rows, we will append the next-most-significant 4-bit limb to each value. Thus, by the final row columns a and b will contain the full input values for the bitwise operation. Columns a0, a1, a2, a3, b0, b1, b2, b3 will contain lower 4 bits of their corresponding values. Output column zp. This column represents the value of column z for the prior row. For the first row, it is set to 0. Output column z. This column will be used to aggregate the results of bitwise operations performed over columns a0, a1, a2, a3, b0, b1, b2, b3. By the time we get to the last row in each 8-row cycle, this column will contain the final result.","breadcrumbs":"Design » Chiplets » Bitwise Chiplet » Bitwise chiplet","id":"246","title":"Bitwise chiplet"},"247":{"body":"Let's illustrate the above table on a concrete example. For simplicity, we'll use 16-bit values, and thus, we'll only need 4 rows to complete the operation (rather than 8 for 32-bit values). Let's say a=41851 (b1010_0011_0111_1011) and b=40426 (b1001_1101_1110_1010), then and(a,b)=33130 (b1000_0001_0110_1010). The table for this computation looks like so: a b x0 x1 x2 x3 y0 y1 y2 y3 zp z 10 9 0 1 0 1 1 0 0 1 0 8 163 157 1 1 0 0 1 0 1 1 8 129 2615 2526 1 1 1 0 0 1 1 1 129 2070 41851 40426 1 1 0 1 0 1 0 1 2070 33130 Here, in the first row, we set each of the a and b columns to the value of their most-significant 4-bit limb. The bit columns (a0..a3 and b0..b3) in the first row contain the lower 4 bits of their corresponding values (b1010 and b1001). Column z contains the result of bitwise AND for the upper 4 bits (b1000), while column zp contains that result for the prior row. With every subsequent row, we inject the next-most-significant 4 bits of each value into the bit columns, increase the a and b columns accordingly, and aggregate the result of bitwise AND into the z column, adding it to 24 times the value of z in the previous row. We set column zp to be the value of z in the prior row. By the time we get to the last row, the z column contains the result of the bitwise AND, while columns a and b contain their original values.","breadcrumbs":"Design » Chiplets » Bitwise Chiplet » Example","id":"247","title":"Example"},"248":{"body":"AIR constraints needed to ensure the correctness of the above table are described below. We also add one more column s to the execution trace, to allow us to select between two bitwise operations (U32AND and U32XOR).","breadcrumbs":"Design » Chiplets » Bitwise Chiplet » Constraints","id":"248","title":"Constraints"},"249":{"body":"The Bitwise chiplet supports two operations with the following operation selectors: U32AND: s=0 U32XOR: s=1 The constraints must require that the selectors be binary and stay the same throughout the cycle: s2−s=0 | degree=2 k1⋅(s′−s)=0 | degree=2","breadcrumbs":"Design » Chiplets » Bitwise Chiplet » Selectors","id":"249","title":"Selectors"},"25":{"body":"All Miden instructions mentioned in the Miden Assembly sections are valid. One can either input instructions one by one or multiple instructions in one input. For example, the below two commands will result in the same output. >> push.1\n>> push.2\n>> push.3 push.1 push.2 push.3 To execute a control flow operation, one must write the entire statement in a single line with spaces between individual operations. repeat.20 pow2\nend The above example should be written as follows in the REPL tool: repeat.20 pow2 end","breadcrumbs":"Development tooling » REPL » Miden assembly instruction","id":"25","title":"Miden assembly instruction"},"250":{"body":"We need to make sure that inputs a and b are decomposed correctly into their individual bits. To do this, first, we need to make sure that columns a0, a1, a2, a3, b0, b1, b2, b3, can contain only binary values (0 or 1). This can be accomplished with the following constraints (for i ranging between 0 and 3): ai2−ai=0 | degree=2 bi2−bi=0 | degree=2 Then, we need to make sure that on the first row of every 8-row cycle, the values in the columns a and b are exactly equal to the aggregation of binary values contained in the individual bit columns ai, and bi. This can be enforced with the following constraints: k0⋅(a−i=0∑3(2i⋅ai))=0 | degree=2 k0⋅(b−i=0∑3(2i⋅bi))=0 | degree=2 The above constraints enforce that when k0=1, a=∑i=03(2i⋅ai) and b=∑i=03(2i⋅bi). Lastly, we need to make sure that for all rows in an 8-row cycle except for the last one, the values in a and b columns are increased by the values contained in the individual bit columns ai and bi. Denoting a as the value of column a in the current row, and a′ as the value of column a in the next row, we can enforce these conditions as follows: k1⋅(a′−(a⋅16+i=0∑3(2i⋅ai′)))=0 | degree=2 k1⋅(b′−(b⋅16+i=0∑3(2i⋅bi′)))=0 | degree=2 The above constraints enforce that when k1=1 , a′=16⋅a+∑i=03(2i⋅ai′) and b′=16⋅b+∑i=03(2i⋅bi′).","breadcrumbs":"Design » Chiplets » Bitwise Chiplet » Input decomposition","id":"250","title":"Input decomposition"},"251":{"body":"To ensure correct aggregation of operations over individual bits, first we need to ensure that in the first row, the aggregated output value of the previous row should be 0. k0⋅zp=0 | degree=2 Next, we need to ensure that for each row except the last, the aggregated output value must equal the previous aggregated output value in the next row. k1⋅(z−zp′)=0 | degree=2 Lastly, we need to ensure that for all rows the value in the z column is computed by multiplying the previous output value (from the zp column in the current row) by 16 and then adding it to the bitwise operation applied to the row's set of bits of a and b. The entire constraint must also be multiplied by the operation selector flag to ensure it is only applied for the appropriate operation. For U32AND, this is enforced with the following constraint: (1−s)⋅(z−(zp⋅16+i=0∑3(2i⋅ai⋅bi)))=0 | degree=3 For U32XOR, this is enforced with the following constraint: s⋅(z−(zp⋅16+i=0∑3(2i⋅(ai+bi−2⋅ai⋅bi))))=0 | degree=3","breadcrumbs":"Design » Chiplets » Bitwise Chiplet » Output aggregation","id":"251","title":"Output aggregation"},"252":{"body":"To simplify the notation for describing bitwise constraints on the chiplets bus, we'll first define variable u, which represents how a, b, and z in the execution trace are reduced to a single value. Denoting the random values received from the verifier as α0,α1, etc., this can be achieved as follows. u=α0+α1⋅opbit+α2⋅a+α3⋅b+α4⋅z Where, opbit is the unique operation label of the bitwise operation. The request side of the constraint for the bitwise operation is described in the stack bitwise operation section . To provide the results of bitwise operations to the chiplets bus, we want to include values of a, b and z at the last row of the cycle. First, we'll define another intermediate variable vi. It will include u into the product when k1=0. (ui represents the value of u for row i of the trace.) vi=(1−k1)⋅ui Then, setting m=1−k1, we can compute the permutation product from the bitwise chiplet as follows: i=0∏n(vi⋅mi+1−mi) The above ensures that when 1−k1=0 (which is true for all rows in the 8-row cycle except for the last one), the product does not change. Otherwise, vi gets included into the product. The response side of the bus communication can be enforced with the following constraint: bchip′=bchip⋅(vi⋅mi+1−mi) | degree=4","breadcrumbs":"Design » Chiplets » Bitwise Chiplet » Chiplets bus constraints","id":"252","title":"Chiplets bus constraints"},"253":{"body":"Miden VM supports linear read-write random access memory. This memory is word-addressable, meaning, four values are located at each address, and we can read and write values to/from memory in batches of four. Each value is a field element in a 64-bit prime field with modulus 264−232+1. Memory address can be any field element. In this note we describe the rational for selecting the above design and describe AIR constraints needed to support it. The design makes extensive use of 16-bit range checks. An efficient way of implementing such range checks is described here .","breadcrumbs":"Design » Chiplets » Memory Chiplet » Memory chiplet","id":"253","title":"Memory chiplet"},"254":{"body":"The simplest (and most efficient) alternative to the above design is contiguous write-once memory. To support such memory, we need to allocate just two trace columns as illustrated below. memory_alternative_design In the above, addr column holds memory address, and value column holds the field element representing the value stored at this address. Notice that some rows in this table are duplicated. This is because we need one row per memory access (either read or write operation). In the example above, value b was first stored at memory address 1, and then read from this address. The AIR constraints for this design are very simple. First, we need to ensure that values in the addr column either remain the same or are incremented by 1 as we move from one row to the next. This can be achieved with the following constraint: (a′−a)⋅(a′−a−1)=0 where a is the value in addr column in the current row, and a′ is the value in this column in the next row. Second, we need to make sure that if the value in the addr column didn't change, the value in the value column also remained the same (i.e., a value stored in a given address can only be set once). This can be achieved with the following constraint: (v′−v)⋅(a′−a−1)=0 where v is the value in value column at the current row, and v′ is the value in this column in the next row. In addition to the above constraints we would also need to impose constraints needed for permutation checks, but we omit these constraints here because they are needed for all designs described in this note. As mentioned above, this approach is very efficient: each memory access requires just 2 trace cells.","breadcrumbs":"Design » Chiplets » Memory Chiplet » Alternative designs","id":"254","title":"Alternative designs"},"255":{"body":"Write-once memory is tricky to work with, and many developers may need to climb a steep learning curve before they become comfortable working in this model. Thus, ideally, we'd want to support read-write memory. To do this, we need to introduce additional columns as illustrated below. memory_read_write In the above, we added clk column, which keeps track of the clock cycle at which memory access happened. We also need to differentiate between memory reads and writes. To do this, we now use two columns to keep track of the value: old val contains the value stored at the address before the operation, and new val contains the value after the operation. Thus, if old val and new val are the same, it was a read operation. If they are different, it was a write operation. The AIR constraints needed to support the above structure are as follows. We still need to make sure memory addresses are contiguous: (a′−a)⋅(a′−a−1)=0 Whenever memory address changes, we want to make sure that old val is set to 0 (i.e., our memory is always initialized to 0). This can be done with the following constraint: (a′−a)⋅vold′=0 On the other hand, if memory address doesn't change, we want to make sure that new val in the current row is the same as old val in the next row. This can be done with the following constraint: (1+a−a′)⋅(vnew−vold′)=0 Lastly, we need to make sure that for the same address values in clk column are always increasing. One way to do this is to perform a 16-bit range check on the value of (i′−i−1), where i is the reference to clk column. However, this would mean that memory operations involving the same address must happen within 65536 VM cycles from each other. This limitation would be difficult to enforce statically. To remove this limitation, we need to add two more columns as shown below: memory_limitation_diagram In the above column d0 contains the lower 16 bits of (i′−i−1) while d1 contains the upper 16 bits. The constraint needed to enforces this is as follows: (1+a−a′)⋅((i′−i−1)−(216⋅d1′+d0′))=0 Additionally, we need to apply 16-bit range checks to columns d0 and d1. Overall, the cost of reading or writing a single element is now 6 trace cells and 2 16-bit range-checks.","breadcrumbs":"Design » Chiplets » Memory Chiplet » Read-write memory","id":"255","title":"Read-write memory"},"256":{"body":"Requiring that memory addresses are contiguous may also be a difficult limitation to impose statically. To remove this limitation, we need to introduce one more column as shown below: memory_non_contiguous_memory In the above, the prover sets the value in the new column t to 0 when the address doesn't change, and to 1/(a′−a) otherwise. To simplify constraint description, we'll define variable n computed as follows: n=(a′−a)⋅t′ Then, to make sure the prover sets the value of t correctly, we'll impose the following constraints: n2−n=0(1−n)⋅(a′−a)=0 The above constraints ensure that n=1 whenever the address changes, and n=0 otherwise. We can then define the following constraints to make sure values in columns d0 and d1 contain either the delta between addresses or between clock cycles. Condition Constraint Comments n=1 (a′−a)−(216⋅d1′+d0′)=0 When the address changes, columns d0 and d1 at the next row should contain the delta between the old and the new address. n=0 (i′−i−1)−(216⋅d1′+d0′)=0 When the address remains the same, columns d0 and d1 at the next row should contain the delta between the old and the new clock cycle. We can combine the above constraints as follows: (n⋅(a′−a)+(1−n)⋅(i′−i−1))−(216⋅d1′+d0′)=0 The above constraint, in combination with 16-bit range checks against columns d0 and d1 ensure that values in addr and clk columns always increase monotonically, and also that column addr may contain duplicates, while values in clk column must be unique for a given address.","breadcrumbs":"Design » Chiplets » Memory Chiplet » Non-contiguous memory","id":"256","title":"Non-contiguous memory"},"257":{"body":"In many situations it may be desirable to assign memories to different context. For example, when making a cross-contract calls, memories of the caller and the callee should be separate. That is, caller should not be able to access the memory of the callee and vice-versa. To accommodate this feature, we need to add one more column as illustrated below. memory_context_separation This new column ctx should behave similarly to the address column: values in it should increase monotonically, and there could be breaks between them. We also need to change how the prover populates column t: If the context changes, t should be set to the inverse (c′−c), where c is a reference to column ctx. If the context remains the same but the address changes, column t should be set to the inverse of (a′−a). Otherwise, column t should be set to 0. To simplify description of constraints, we'll define two variables n0 and n1 as follows: n0=(c′−c)⋅t′n1=(a′−a)⋅t′ Thus, n0=1 when the context changes, and 0 otherwise. Also, (1−n0)⋅n1=1 when context remains the same and address changes, and 0 otherwise. To make sure the prover sets the value of column t correctly, we'll need to impose the following constraints: n02−n0=0(1−n0)⋅(c′−c)=0(1−n0)⋅(n12−n1)=0(1−n0)⋅(1−n1)⋅(a′−a)=0 We can then define the following constraints to make sure values in columns d0 and d1 contain the delta between contexts, between addresses, or between clock cycles. Condition Constraint Comments n0=1 (c′−c)−(216⋅d1′+d0′)=0 When the context changes, columns d0 and d1 at the next row should contain the delta between the old and the new contexts. n0=0 n1=1 (a′−a)−(216⋅d1′+d0′)=0 When the context remains the same but the address changes, columns d0 and d1 at the next row should contain the delta between the old and the new addresses. n0=0 n1=0 (i′−i−1)−(216⋅d1′+d0′)=0 When both the context and the address remain the same, columns d0 and d1 at the next row should contain the delta between the old and the new clock cycle. We can combine the above constraints as follows: (n0⋅(c′−c)+(1−n0)⋅(n1⋅(a−a′)+(1−n1)⋅(i′−i−1)))−(216⋅d1′+d0′)=0 The above constraint, in combination with 16-bit range checks against columns d0 and d1 ensure that values in ctx, addr, and clk columns always increase monotonically, and also that columns ctx and addr may contain duplicates, while the values in column clk must be unique for a given combination of ctx and addr. Notice that the above constraint has degree 5.","breadcrumbs":"Design » Chiplets » Memory Chiplet » Context separation","id":"257","title":"Context separation"},"258":{"body":"While the approach described above works, it comes at significant cost. Reading or writing a single value requires 8 trace cells and 2 16-bit range checks. Assuming a single range check requires roughly 2 trace cells, the total number of trace cells needed grows to 12. This is about 6x worse the simple contiguous write-once memory described earlier. Miden VM frequently needs to deal with batches of 4 field elements, which we call words . For example, the output of Rescue Prime Optimized hash function is a single word. A single 256-bit integer value can be stored as two words (where each element contains one 32-bit value). Thus, we can optimize for this common use case by making the memory word-addressable . That is 4 field elements are located at each memory address, and we can read and write elements to/from memory in batches of four. The layout of Miden VM memory table is shown below: memory_miden_vm_layout where: s0 is a selector column which is set to 1 for read operations and 0 for write operations. s1 is a selector oclumn which is set to 1 when previously accessed memory is being read and 0 otherwise. In other words, it is set to 1 only when the context and address are the same as they were in the previous row and the s0 operation selector is set to 1 (indicating a read). ctx contains context ID. Values in this column must increase monotonically but there can be gaps between two consecutive values of up to 232. Also, two consecutive values can be the same. In AIR constraint description below, we refer to this column as c. addr contains memory address. Values in this column must increase monotonically for a given context but there can be gaps between two consecutive values of up to 232. Also, two consecutive values can be the same. In AIR constraint description below, we refer to this column as a. clk contains clock cycle at which the memory operation happened. Values in this column must increase monotonically for a given context and memory address but there can be gaps between two consecutive values of up to 232. In AIR constraint description below, we refer to this column as i. v0, v1, v2, v3 columns contain field elements stored at a given context/address/clock cycle after the memory operation. Columns d0 and d1 contain lower and upper 16 bits of the delta between two consecutive context IDs, addresses, or clock cycles. Specifically: When the context changes, these columns contain (c′−c). When the context remains the same but the address changes, these columns contain (a′−a). When both the context and the address remain the same, these columns contain (i′−i−1). Column t contains the inverse of the delta between two consecutive context IDs, addresses, or clock cycles. Specifically: When the context changes, this column contains the inverse of (c′−c). When the context remains the same but the address changes, this column contains the inverse of (a′−a). When both the context and the address remain the same, this column contains the inverse of (i′−i−1). For every memory access operation (i.e., read or write), a new row is added to the memory table. For read operations, s0 is set to 1. If neither ctx nor addr have changed, then s1 is set to 1 and the v columns are set to equal the values from the previous row. If ctx or addr have changed, then s1 is set to 0 and the v columns are initialized to 0. For write operations, the values may be different, and both selector columns s0 and s1 are set to 0. The amortized cost of reading or writing a single value is between 4 and 5 trace cells (this accounts for the trace cells needed for 16-bit range checks). Thus, from performance standpoint, this approach is roughly 2.5x worse than the simple contiguous write-once memory described earlier. However, our view is that this trade-off is worth it given that this approach provides read-write memory, context separation, and eliminates the contiguous memory requirement.","breadcrumbs":"Design » Chiplets » Memory Chiplet » Miden approach","id":"258","title":"Miden approach"},"259":{"body":"To simplify description of constraints, we'll define two variables n0 and n1 as follows: n0=Δc⋅t′n1=Δa⋅t′ Where Δc=c′−c and Δa=a′−a. To make sure the prover sets the value of column t correctly, we'll need to impose the following constraints: n02−n0=0 | degree=4 (1−n0)⋅Δc=0 | degree=3 (1−n0)⋅(n12−n1)=0 | degree=6 (1−n0)⋅(1−n1)⋅Δa=0 | degree=5 The above constraints guarantee that when context changes, n0=1. When context remains the same but address changes, (1−n0)⋅n1=1. And when neither the context nor the address change, (1−n0)⋅(1−n1)=1. To enforce the values of the selector columns, we first require that they both contain only binary values. s02−s0=0 | degree=2 s12−s1=0 | degree=2 Then we require that s1 is always set to 1 during read operations when the context and address did not change and to 0 in all other cases. (1−n0)⋅(1−n1)⋅s0′⋅(1−s1′)=0 | degree=6 (n0+(1−n0)⋅n1+(1−s0′))⋅s1′=0 | degree=5 The first constraint enforces that s_1 is 1 when the operation is a read and ctx and addr are both unchanged. The second constraint enforces that when either the context changed, the address changed, or the operation is a write, then s_1 is set to 0. To enforce the values of context ID, address, and clock cycle grow monotonically as described in the previous section, we define the following constraint. (n0⋅Δc+(1−n0)⋅(n1⋅Δa+(1−n1)⋅Δi))−(216⋅d1′+d0′)=0 | degree=5 Where Δi=i′−i−1. In addition to this constraint, we also need to make sure that values in registers d0 and d1 are less than 216, and this can be done with permutation-based range checks. Next, we need to make sure that values at a given memory address are always initialized to 0. This can be done with the following constraint: s0⋅(1−s1)⋅vi=0 for i∈{0,1,2,3} | degree=3 Thus, when the operation is a read and either the context changes or the address changes, values in the vi columns are guaranteed to be zeros. Lastly, we need to make sure that for the same context/address combination, the vi columns of the current row are equal to the corresponding vi columns of the next row. This can be done with the following constraints: s1⋅(vi′−vi)=0 for i∈{0,1,2,3} | degree=2 Chiplets bus constraints Communication between the memory chiplet and the stack is accomplished via the chiplets bus bchip. To respond to memory access requests from the stack, we need to divide the current value in bchip by the value representing a row in the memory table. This value can be computed as follows: vmem=α0+α1⋅opmem+α2⋅c+α3⋅a+α4⋅i+j=0∑3(αj+5⋅vj) Where, opmem is the unique operation label of the memory access operation. To ensure that values of memory table rows are included into the chiplets bus, we impose the following constraint: bchip′=bchip⋅vmem | degree=2 On the stack side, for every memory access request, a corresponding value is divided out of the bchip column. Specifics of how this is done are described here .","breadcrumbs":"Design » Chiplets » Memory Chiplet » AIR constraints","id":"259","title":"AIR constraints"},"26":{"body":"The !help command prints out all the available commands in the REPL tool.","breadcrumbs":"Development tooling » REPL » !help","id":"26","title":"!help"},"260":{"body":"The kernel ROM enables executing predefined kernel procedures. These procedures are always executed in the root context and can only be accessed by a SYSCALL operation. The chiplet tracks and enforces correctness of all kernel procedure calls as well as maintaining a list of all the procedures defined for the kernel, whether they are executed or not. More background about Miden VM execution contexts can be found here .","breadcrumbs":"Design » Chiplets » Kernel ROM Chiplet » Kernel ROM chiplet","id":"260","title":"Kernel ROM chiplet"},"261":{"body":"The kernel ROM table consists of 6 columns. kernel_rom_execution_trace The meaning of columns in the above is as follows: Column s0 specifies whether the value in the row should be included into the chiplets bus bchip. addr is a row address column which starts out at 0 and must either remain the same or be incremented by 1 with every row. r0,...,r3 are contain the roots of the kernel functions. The values in these columns can change only when the value in the addr column changes. If the addr column remains the same, the values in the r columns must also remain the same.","breadcrumbs":"Design » Chiplets » Kernel ROM Chiplet » Kernel ROM trace","id":"261","title":"Kernel ROM trace"},"262":{"body":"The following constraints are required to enforce correctness of the kernel ROM trace. For convenience, let's define Δaddr=addr′−addr. The s0 column must be binary. s02−s0=0 | degree=2 The value in the addr column must either stay the same or increase by 1. Δaddr⋅(1−Δaddr)=0 | degree=2 Finally, if the addr column stays the same then the kernel procedure root must not change. This can be achieved by enforcing the following constraint against each of the four procedure root columns: (1−Δaddr)⋅(ri′−ri)=0 | degree=2 These constraints on addr should not be applied to the very last row of the kernel ROM's execution trace, since we do not want to enforce a value that would conflict with the first row of a subsequent chiplet (or padding). Therefore we can create a special virtual flag for this constraint using the chip_s3 selector column from the chiplets module that selects for the kernel ROM chiplet. The modified constraints which should be applied are the following: (1−chip_s3′)⋅Δaddr⋅(1−Δaddr)=0 | degree=3 (1−chip_s3′)⋅(1−Δaddr)⋅(ri′−ri)=0 | degree=3 Note: these constraints should also be multiplied by chiplets module's selector flag for the kernel ROM chiplet, as is true for all constraints in this chiplet.","breadcrumbs":"Design » Chiplets » Kernel ROM Chiplet » Constraints","id":"262","title":"Constraints"},"263":{"body":"The chiplets bus is used to keep track of all kernel function calls. To simplify the notation for describing kernel ROM constraints on the chiplets bus, we'll first define variable u, which represents how each kernel procedure in the kernel ROM's execution trace is reduced to a single value. Denoting the random values received from the verifier as α0,α1, etc., this can be achieved as follows. v=α0+α1⋅opkrom+i=0∑3(αi+2⋅ri) Where, opkrom is the unique operation label of the kernel procedure call operation. The request side of the constraint for the operation is enforced during program block hashing of the SYSCALL operation . To provide accessed kernel procedures to the chiplets bus, we must send the kernel procedure to the bus every time it is called, which is indicated by the s0 column. bchip′=bchip⋅(s0⋅v+1−s0) | degree=3 Thus, when s0=0 this reduces to bchip′=bchip, but when s0=1 it becomes bchip′=bchip⋅u.","breadcrumbs":"Design » Chiplets » Kernel ROM Chiplet » Chiplets bus constraints","id":"263","title":"Chiplets bus constraints"},"264":{"body":"Note: Although this table is described independently, it is implemented as part of the chiplets virtual table , which combines all virtual tables required by the any of the chiplets into a single master table. This kernel procedure table keeps track of all unique kernel function roots. The values in this table will be updated only when the value in the address column changes. The row value included into vtchip is: v=α0+α1⋅addr+i=0∑3(αi+2⋅ri) The constraint against vtchip is: vtchip′=vtchip⋅(Δaddr⋅v+1−Δaddr) | degree=3 Thus, when Δaddr=0, the above reduces to vtchip′=vtchip, but when Δaddr=1, the above becomes vtchip′=vtchip⋅v. We also need to impose boundary constraints to make sure that running product column implementing the kernel procedure table is equal to 1 when the kernel procedure table begins and to the product of all unique kernel functions when it ends. The last boundary constraint means that the verifier only needs to know which kernel was used, but doesn't need to know which functions were invoked within the kernel. These two constraints are described as part of the chiplets virtual table constraints .","breadcrumbs":"Design » Chiplets » Kernel ROM Chiplet » Kernel procedure table constraints","id":"264","title":"Kernel procedure table constraints"},"265":{"body":"Zero knowledge virtual machines frequently make use of lookup arguments to enable performance optimizations. Miden VM uses multiset checks, and a brief introduction to them can be found here . In Miden VM, multiset checks are used for two purposes: To prove the consistency of intermediate values that must persist between different cycles of the trace, without storing the full data in the execution trace (which would require adding more columns to the trace). To prove correct interaction between two independent sections of the execution trace, e.g., between the main trace where the result of some operation is required, but would be expensive to compute, and a specialized component which can perform that operation cheaply. The first is achieved using virtual tables of data, where we add a row at some cycle in the trace and remove it at a later cycle when it is needed again. Instead of maintaining the entire table in the execution trace, multiset checks allow us to prove data consistency of this table using one running product column. The second is done by reducing each operation to a lookup value and then using a communication bus , implemented as a running product column, to provably connect the two sections of the trace.","breadcrumbs":"Design » Multiset checks » Multiset checks","id":"265","title":"Multiset checks"},"266":{"body":"Although the multiset equality check can be thought of as comparing multiset equality between two vectors a and b, in Miden VM it is implemented as a single running product column in the following way: The running product column is initialized to a value x at the beginning of the trace. (We typically use x=1.) All values of a are multiplied into the running product column. All values of b are divided out of the running product column. If a and b were multiset equal, then the running product column will equal x at the end of the trace. Running product columns are computed using a set of random values α0, α1,... sent to the prover by the verifier after the prover commits to the execution trace of the program. Length of running product columns Running product columns are computed by including information from the current row of the main execution trace into the next row of the running product column. Thus, in order to ensure that the trace is long enough to give the running product column space for its final value, a padding row may be required at the end of the trace of the component upon which the running product column depends. This is true when the data in the main trace could go all the way to the end of the trace, such as in the case of the range checker. Cost of running product columns It is important to note that depending on the field in which we operate, a running product column may actually require more than one trace column. This is specifically true for small fields. Since Miden uses a 64-bit field, each running product column needs to be represented by 2 columns to achieve ~100-bit security and by 3 columns to achieve ~128-bit security.","breadcrumbs":"Design » Multiset checks » Running product columns","id":"266","title":"Running product columns"},"267":{"body":"Virtual tables can be used to store intermediate data which is computed at one cycle and used at a different cycle. When the data is computed, the row is added to the table, and when it is used later, the row is deleted from the table. Thus, all that needs to be proved is the data consistency between the row that was added and the row that was deleted. The consistency of a virtual table can be proved with a single trace column p, which keeps a running product of rows that were inserted into and deleted from the table. This is done by reducing each row to a single value, multiplying the value into p when the row is inserted, and dividing the value out of p when the row is removed. Thus, at any step of the computation, p will contain a product of all rows currently in the table. The initial value of p is set to 1. Thus, if the table is empty by the time Miden VM finishes executing a program (we added and then removed exactly the same set of rows), the final value of p will also be equal to 1. The initial and final values are enforced via boundary constraints.","breadcrumbs":"Design » Multiset checks » Virtual tables","id":"267","title":"Virtual tables"},"268":{"body":"To compute a product of rows, we'll first need to reduce each row to a single value. This can be done as follows. Let t0,t1,t2,... be columns in the virtual table, and assume the verifier sends a set of random values α0, α1,... to the prover after the prover commits to the execution trace of the program. The prover reduces row i in the table to a single value ri as: ri=α0+α1⋅t0,i+α2⋅t1,i+α3⋅t2,i+... Then, when row i is added to the table, we'll update the value in the p column like so: p′=p⋅ri Analogously, when row i is removed from the table, we'll update the value in column p like so: p′=rip","breadcrumbs":"Design » Multiset checks » Computing a virtual table's trace column","id":"268","title":"Computing a virtual table's trace column"},"269":{"body":"Miden VM currently makes use of 6 virtual tables across 4 components: Stack: Overflow table Decoder: Block stack table Block hash table Op group table Chiplets: Chiplets virtual table , which combines the following two tables into one: Hash chiplet sibling table Kernel ROM chiplet procedure table","breadcrumbs":"Design » Multiset checks » Virtual tables in Miden VM","id":"269","title":"Virtual tables in Miden VM"},"27":{"body":"The !program command prints out the entire Miden program being executed. E.g., in the below scenario: >> push.1.2.3.4\n>> repeat.16 pow2 end\n>> u32checked_add >> !program\nbegin push.1.2.3.4 repeat.16 pow2 end u32checked_add\nend","breadcrumbs":"Development tooling » REPL » !program","id":"27","title":"!program"},"270":{"body":"One strategy for improving the efficiency of a zero knowledge virtual machine is to use specialized components for complex operations and have the main circuit “offload” those operations to the corresponding components by specifying inputs and outputs and allowing the proof of execution to be done by the dedicated component instead of by the main circuit. These specialized components are designed to prove the internal correctness of the execution of the operations they support. However, in isolation they cannot make any guarantees about the source of the input data or the destination of the output data. In order to prove that the inputs and outputs specified by the main circuit match the inputs and outputs provably executed in the specialized component, some kind of provable communication bus is needed. This bus is typically implemented as some kind of lookup argument, and in Miden VM in particular we use multiset checks.","breadcrumbs":"Design » Multiset checks » Communication buses","id":"270","title":"Communication buses"},"271":{"body":"A bus can be implemented as a single trace column b where a request can be sent to a specific component and a corresponding response will be sent back by that component. The values in this column contain a running product of the communication with the component as follows: Each request is “sent” by computing a lookup value from some information that's specific to the specialized component, the operation inputs, and the operation outputs, and then dividing it out of the running product column b. Each chiplet response is “sent” by computing the same lookup value from the component-specific information, inputs, and outputs, and then multiplying it into the running product column b. Thus, if the requests and responses match, and the bus column b is initialized to 1, then b will start and end with the value 1. This condition is enforced by boundary constraints on column b. Note that the order of the requests and responses does not matter, as long as they are all included in b. In fact, requests and responses for the same operation will generally occur at different cycles. Additionally, there could be multiple requests sent in the same cycle, and there could also be a response provided at the same cycle that a request is received.","breadcrumbs":"Design » Multiset checks » Implementation","id":"271","title":"Implementation"},"272":{"body":"These constraints can be expressed in a general way with the 2 following requirements: The lookup value must be computed using random values α0,α1, etc. that are provided by the verifier after the prover has committed to the main execution trace. The lookup value must include all uniquely identifying information for the component/operation and its inputs and outputs. Given an example operation opex with inputs i0,...,in and outputs o0,...,om, the lookup value can be computed as follows: lookup=α0+α1⋅opex+α2⋅i0+...+αn+2⋅in+αn+3⋅o0+...+αn+2+m⋅om The constraint for sending this to the bus as a request would be: b′⋅lookup=b The constraint for sending this to the bus as a response would be: b′=b⋅lookup However, these constraints must be combined, since it's possible that requests and responses both occur during the same cycle. To combine them, let ulookup be the request value and let vlookup be the response value. These values are both computed the same way as shown above, but the data sources are different, since the input/output values used to compute ulookup come from the trace of the component that's \"offloading\" the computation, while the input/output values used to compute vlookup come from the trace of the specialized component. The final constraint can be expressed as: b′⋅ulookup=b⋅vlookup","breadcrumbs":"Design » Multiset checks » Communication bus constraints","id":"272","title":"Communication bus constraints"},"273":{"body":"In Miden VM, the specialized components are implemented as dedicated segments of the execution trace, which include the range checker and the 3 chiplets in the Chiplets module (the hash chiplet, bitwise chiplet, and memory chiplet). Miden VM currently uses 2 buses to communicate with these components: The chiplets bus bchip , which communicates with all of the chiplets (Hash, Bitwise, and Memory). The range checker bus brange .","breadcrumbs":"Design » Multiset checks » Communication buses in Miden VM","id":"273","title":"Communication buses in Miden VM"},"274":{"body":"Proofs of execution generated by Miden VM are based on STARKs. A STARK is a novel proof-of-computation scheme that allows you to create an efficiently verifiable proof that a computation was executed correctly. The scheme was developed by Eli Ben-Sasson, Michael Riabzev et al. at Technion - Israel Institute of Technology. STARKs do not require an initial trusted setup, and rely on very few cryptographic assumptions. Here are some resources to learn more about STARKs: STARKs paper: Scalable, transparent, and post-quantum secure computational integrity STARKs vs. SNARKs: A Cambrian Explosion of Crypto Proofs Vitalik Buterin's blog series on zk-STARKs: STARKs, part 1: Proofs with Polynomials STARKs, part 2: Thank Goodness it's FRI-day STARKs, part 3: Into the Weeds Alan Szepieniec's STARK tutorials: Anatomy of a STARK BrainSTARK StarkWare's STARK Math blog series: STARK Math: The Journey Begins Arithmetization I Arithmetization II Low Degree Testing A Framework for Efficient STARKs StarkWare's STARK tutorial: STARK 101","breadcrumbs":"Background Material » Background Material","id":"274","title":"Background Material"},"28":{"body":"The !stack command prints out the state of the stack at the last executed instruction. Since the stack always contains at least 16 elements, 16 or more elements will be printed out (even if all of them are zeros). >> push.1 push.2 push.3 push.4 push.5\n>> exp\n>> u32checked_mul\n>> swap\n>> eq.2\n>> assert The !stack command will print out the following state of the stack: >> !stack\n3072 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0","breadcrumbs":"Development tooling » REPL » !stack","id":"28","title":"!stack"},"29":{"body":"The !mem command prints out the contents of all initialized memory locations. For each such location, the address, along with its memory values, is printed. Recall that four elements are stored at each memory address. If the memory has at least one value that has been initialized: >> !mem\n7: [1, 2, 0, 3]\n8: [5, 7, 3, 32]\n9: [9, 10, 2, 0] If the memory is not yet been initialized: >> !mem\nThe memory has not been initialized yet","breadcrumbs":"Development tooling » REPL » !mem","id":"29","title":"!mem"},"3":{"body":"In the coming months we plan to finalize the design of the VM and implement support for the following features: Recursive proofs. Miden VM will soon be able to verify a proof of its own execution. This will enable infinitely recursive proofs, an extremely useful tool for real-world applications. Better debugging. Miden VM will provide a better debugging experience including the ability to place breakpoints, better source mapping, and more complete program analysis info. Faulty execution. Miden VM will support generating proofs for programs with faulty execution (a notoriously complex task in ZK context). That is, it will be possible to prove that execution of some program resulted in an error.","breadcrumbs":"Introduction » Planned features","id":"3","title":"Planned features"},"30":{"body":"The !mem[addr] command prints out memory contents at the address specified by addr. If the addr has been initialized: >> !mem[9]\n9: [9, 10, 2, 0] If the addr has not been initialized: >> !mem[87]\nMemory at address 87 is empty","breadcrumbs":"Development tooling » REPL » !mem[addr]","id":"30","title":"!mem[addr]"},"31":{"body":"The !undo command reverts to the previous state of the stack and memory by dropping off the last executed assembly instruction from the program. One could use !undo as often as they want to restore the state of a stack and memory n instructions ago (provided there are n instructions in the program). The !undo command will result in an error if no remaining instructions are left in the Miden program. >> push.1 push.2 push.3\n>> push.4\n>> !stack\n4 3 2 1 0 0 0 0 0 0 0 0 0 0 0 0 >> push.5\n>> !stack\n5 4 3 2 1 0 0 0 0 0 0 0 0 0 0 0 >> !undo\n4 3 2 1 0 0 0 0 0 0 0 0 0 0 0 0 >> !undo\n3 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0","breadcrumbs":"Development tooling » REPL » !undo","id":"31","title":"!undo"},"32":{"body":"In the following sections, we provide developer-focused documentation useful to those who want to develop on Miden VM or build compilers from higher-level languages to Miden VM. This documentation consists of two high-level sections: Miden assembly which provides a detailed description of Miden assembly language, which is the native language of Miden VM. Miden Standard Library which provides descriptions of all procedures available in Miden Standard Library. For info on how to run programs on Miden VM, please refer to the usage section in the introduction.","breadcrumbs":"User Documentation » User Documentation","id":"32","title":"User Documentation"},"33":{"body":"Miden assembly is a simple, low-level language for writing programs for Miden VM. It stands just above raw Miden VM instruction set, and in fact, many instructions of Miden assembly map directly to raw instructions of Miden VM. Before Miden assembly can be executed on Miden VM, it needs to be compiled into a Program MAST (Merkelized Abstract Syntax Tree) which is a binary tree of code blocks each containing raw Miden VM instructions. assembly_to_VM As compared to raw Miden VM instructions, Miden assembly has several advantages: Miden assembly is intended to be a more stable external interface for the VM. That is, while we plan to make significant changes to the underlying VM to optimize it for stability, performance etc., we intend to make very few breaking changes to Miden assembly. Miden assembly natively supports control flow expressions which the assembler automatically transforms into a program MAST. This greatly simplifies writing programs with complex execution logic. Miden assembly supports macro instructions . These instructions expand into short sequences of raw Miden VM instructions making it easier to encode common operations. Miden assembly supports procedures . These are stand-alone blocks of code which the assembler inlines into program MAST at compile time. This improves program modularity and code organization. The last two points also make Miden assembly much more concise as compared to the raw program MAST. This may be important in the blockchain context where pubic programs need to be stored on chain.","breadcrumbs":"User Documentation » Miden Assembly » Miden Assembly","id":"33","title":"Miden Assembly"},"34":{"body":"In this document we use the following terms and notations: p is the modulus of the VM's base field which is equal to 264−232+1. A binary value means a field element which is either 0 or 1. Inequality comparisons are assumed to be performed on integer representations of field elements in the range [0,p). Throughout this document, we use lower-case letters to refer to individual field elements (e.g., a). Sometimes it is convenient to describe operations over groups of elements. For these purposes we define a word to be a group of four elements. We use upper-case letters to refer to words (e.g., A). To refer to individual elements within a word, we use numerical subscripts. For example, a0 is the first element of word A, b3 is the last element of word B, etc.","breadcrumbs":"User Documentation » Miden Assembly » Terms and notations","id":"34","title":"Terms and notations"},"35":{"body":"The design of Miden assembly tries to achieve the following goals: Miden assembly should be an easy compilation target for high-level languages. Programs written in Miden assembly should be readable, even if the code is generated by a compiler from a high-level language. Control flow should be easy to understand to help in manual inspection, formal verification, and optimization. Compilation of Miden assembly into Miden program MAST should be as straight-forward as possible. Serialization of Miden assembly into a binary representation should be as compact and as straight-forward as possible. In order to achieve the first goal, Miden assembly exposes a set of native operations over 32-bit integers and supports linear read-write memory. Thus, from the stand-point of a higher-level language compiler, Miden VM can be viewed as a regular 32-bit stack machine with linear read-write memory. In order to achieve the second and third goals, Miden assembly facilitates flow control via high-level constructs like while loops, if-else statements, and function calls with statically defined targets. Thus, for example, there are no explicit jump instructions. In order to achieve the fourth goal, Miden assembly retains direct access to the VM stack rather than abstracting it away with higher-level constructs and named variables. Lastly, in order to achieve the fifth goal, each instruction of Miden assembly can be encoded using a single byte. The resulting byte-code is simply a one-to-one mapping of instructions to their binary values.","breadcrumbs":"User Documentation » Miden Assembly » Design goals","id":"35","title":"Design goals"},"36":{"body":"A Miden assembly program is just a sequence of instructions each describing a specific directive or an operation. You can use any combination of whitespace characters to separate one instruction from another. In turn, Miden assembly instructions are just keywords which can be parameterized by zero or more parameters. The notation for specifying parameters is keyword.param1.param2 - i.e., the parameters are separated by periods. For example, push.123 instruction denotes a push operation which is parameterized by value 123. Miden assembly programs are organized into procedures. Procedures, in turn, can be grouped into modules.","breadcrumbs":"User Documentation » Miden Assembly » Code Organization » Code organization","id":"36","title":"Code organization"},"37":{"body":"A procedure can be used to encapsulate a frequently-used sequence of instructions which can later be invoked via a label. A procedure must start with a proc.. instruction and terminate with an end instruction. For example: proc.foo.2 \nend A procedure label must start with a letter and can contain any combination of numbers, ASCII letters, and underscores (_). The number of characters in the procedure label cannot exceed 100. The number of locals specifies the number of memory-based local words a procedure can access (via loc_load, loc_store, and other instructions ). If a procedure doesn't need any memory-based locals, this parameter can be omitted or set to 0. A procedure can have at most 216 locals, and the total number of locals available to all procedures at runtime is limited to 230. To execute a procedure, the exec., call., and syscall. instructions can be used. For example: exec.foo The difference between using each of these instructions is explained in the next section . A procedure may execute any other previously defined procedure, but it cannot execute itself or any of the subsequent procedures. Thus, recursive procedure calls are not possible. For example, the following code block defines a program with two procedures: proc.foo \nend proc.bar exec.foo \nend begin exec.bar exec.foo\nend","breadcrumbs":"User Documentation » Miden Assembly » Code Organization » Procedures","id":"37","title":"Procedures"},"38":{"body":"A module consists of one or more procedures. There are two types of modules: library modules and executable modules (also called programs ). Library modules Library modules contain zero or more internal procedures and one or more exported procedures. For example, the following module defines one internal procedure (defined with proc instruction) and one exported procedure (defined with export instruction): proc.foo \nend export.bar exec.foo \nend Programs Executable modules are used to define programs. A program contains zero or more internal procedures (defined with proc instruction) and exactly one main procedure (defined with begin instruction). For example, the following module defines one internal procedure and a main procedure: proc.foo \nend begin exec.foo \nend A program cannot contain any exported procedures. When a program is executed, the execution starts at the first instruction following the begin instruction. The main procedure is expected to be the last procedure in the program and can be followed only by comments. Importing modules To invoke a procedure from an external module, the module first needs to be imported using a use instruction. Once a module is imported, procedures from this module can be invoked via the regular exec or call instructions as exec|call.:: where label is the name of the procedure. For example: use.std::math::u64 begin push.1.0 push.2.0 exec.u64::checked_add\nend In the above example we import std::math::u64 module from the standard library . We then execute a program which pushes two 64-bit integers onto the stack, and then invokes a 64-bit addition procedure from the imported module. The set of modules which can be imported by a program can be specified via a Module Provider when instantiating the Miden Assembler used to compile the program. Re-exporting procedures A procedure defined in one module can be re-exported from a different module under the same or a different name. For example: use.std::math::u64 export.u64::add\nexport.u64::mul->mul64 export.foo \nend In addition to the locally-defined procedure foo, the above module also exports procedures add and mul64 implementations of which will be identical to add and mul procedures from the std::math::u64 module respectively.","breadcrumbs":"User Documentation » Miden Assembly » Code Organization » Modules","id":"38","title":"Modules"},"39":{"body":"Miden assembly supports constant declarations. These constants are scoped to the module they are defined in and can be used as immediate parameters for Miden assembly instructions. Constants are supported as immediate values for the following instructions: push, locaddr, loc_load, loc_loadw, loc_store, loc_storew, mem_load, mem_loadw, mem_store, mem_storew. Constants must be declared right after module imports and before any procedures or program bodies. A constant's name must start with an upper-case letter and can contain any combination of numbers, upper-case ASCII letters, and underscores (_). The number of characters in a constant name cannot exceed 100. A constant's value must be in the range between 0 and 264−232 (both inclusive) and can be defined by an arithmetic expression using +, -, *, /, //, (, ) operators and references to the previously defined constants. Here / is a field division and // is an integer division. Note that the arithmetic expression cannot contain spaces. use.std::math::u64 const.CONSTANT_1=100\nconst.CONSTANT_2=200+(CONSTANT_1-50)\nconst.ADDR_1=3 begin push.CONSTANT_1.CONSTANT_2 exec.u64::checked_add mem_store.ADDR_1\nend","breadcrumbs":"User Documentation » Miden Assembly » Code Organization » Constants","id":"39","title":"Constants"},"4":{"body":"This document is meant to provide an in-depth description of Miden VM. It is organized as follows: In the introduction, we provide a high-level overview of Miden VM and describe how to run simple programs. In the user documentation section, we provide developer-focused documentation useful to those who want to develop on Miden VM or build compilers from higher-level languages to Miden assembly (the native language of Miden VM). In the design section, we provide in-depth descriptions of the VM's internals, including all AIR constraints for the proving system. We also provide the rationale for settling on specific design choices. Finally, in the background material section, we provide references to materials which could be useful for learning more about STARKs - the proving system behind Miden VM.","breadcrumbs":"Introduction » Structure of this document","id":"4","title":"Structure of this document"},"40":{"body":"Miden assembly allows annotating code with simple comments. There are two types of comments: single-line comments which start with a # (pound) character, and documentation comments which start with #! characters. For example: #! This is a documentation comment\nexport.foo # this is a comment push.1\nend Documentation comments must precede a procedure declaration. Using them inside a procedure body is an error.","breadcrumbs":"User Documentation » Miden Assembly » Code Organization » Comments","id":"40","title":"Comments"},"41":{"body":"Miden assembly program execution can span multiple isolated contexts. An execution context defines its own memory space which is not accessible from other execution contexts. All programs start executing in a root context. Thus, the main procedure of a program is always executed in the root context. To move execution into a different context, we can invoke a procedure using the call instruction. In fact, any time we invoke a procedure using the call instruction, the procedure is executed in a new context. We refer to all non-root contexts as user contexts . While executing in a user context, we can request to execute some procedures in the root context. This can be done via the syscall instruction. The set of procedures which can be invoked via the syscall instruction is limited by the kernel against which a program is compiled. Once the procedure called via syscall returns, the execution moves back to the user context from which it was invoked. The diagram below illustrates this graphically: context transitions","breadcrumbs":"User Documentation » Miden Assembly » Execution contexts » Execution contexts","id":"41","title":"Execution contexts"},"42":{"body":"As mentioned in the previous section , procedures in Miden assembly can be invoked via three different instructions: exec, call, and syscall. Invocation semantics of call and syscall instructions are basically the same, the only difference being that the syscall instruction can be used only with procedures which are defined in the program's kernel. The exec instruction is different, and we explain these differences below. Invoking via call and syscall instructions When a procedure is invoked via a call or a syscall instruction, the following happens: Execution moves into a different context. In case of a call instruction, a new user context is created. In case of a syscall instruction, the execution moves back into the root context. All stack items beyond the 16th item get \"hidden\" from the invoked procedure. That is, from the standpoint of the invoked procedure, the initial stack depth is set to 16. When a procedure returns from a call or a syscall, the following happens: Execution moves back to the context from which the procedure was invoked. Stack depth is set to its original depth. Before the stack depth is reset, the VM checks if the current stack depth is exactly 16, and fails otherwise. The manipulations of the stack depth described above have the following implications: The top 16 elements of the stack can be used to pass parameters and return values between the caller and the callee. Caller's stack beyond the top 16 elements is inaccessible to the callee, and thus, is guaranteed not to change as the result of the call. At the end of its execution, the callee must ensure that stack depth is exactly 16. If this is difficult to ensure manually, the truncate_stack procedure can be used to drop all elements from the stack except for the top 16. Invoking via exec instruction Procedures invoked via the exec instruction, are inlined at their call sites during compilation. Thus, from the standpoint of the final program, executing procedures this way is indistinguishable from manually including procedure code in place of the exec instruction. This also means that procedures invoked via the exec instruction are executed in the same context as the caller.","breadcrumbs":"User Documentation » Miden Assembly » Execution contexts » Procedure invocation semantics","id":"42","title":"Procedure invocation semantics"},"43":{"body":"A kernel defines a set of procedures which can be invoked from user contexts to be executed in the root context. Miden assembly programs are always compiled against some kernel. The default kernel is empty - i.e., it does not contain any procedures. To compile a program against a non-empty kernel, the kernel needs to be specified when instantiating the Miden Assembler . A kernel can be defined similarly to a regular library module - i.e., it can have internal and exported procedures. However, there are some small differences between what procedures can do in a kernel module vs. what they can do in a regular library module. Specifically: Procedures in a kernel module cannot use call or syscall instructions. This means that creating a new context from within a syscall is not possible. Unlike procedures in regular library modules, procedures in a kernel module can use the caller instruction. This instruction puts the hash of the procedure which initiated the parent context onto the stack.","breadcrumbs":"User Documentation » Miden Assembly » Execution contexts » Kernels","id":"43","title":"Kernels"},"44":{"body":"As mentioned earlier, procedures executed within a given context can access memory only of that context. This is true for both memory reads and memory writes. Address space of every context is the same: the smallest accessible address is 0 and the largest accessible address is 232−1. Any code executed in a given context has access to its entire address space. However, by convention, we assign different meanings to different regions of the address space. For user contexts we have the following: The first 230 words (each word is 4 field elements) are assumed to be global memory. The next 230 words are reserved for memory locals of procedures executed in the same context (i.e., via the exec instruction). The remaining address space has no special meaning. user memory layout For the root context we have the following: The first 230 words are assumed to be global memory. The next 230 words are reserved for memory locals of procedures executed in the root context. The next 230 words are reserved for memory locals of procedures executed from within a syscall. The remaining address space has no special meaning. root memory layout For both types of contexts, writing directly into regions of memory reserved for procedure locals is not advisable. Instead, loc_load, loc_store and other similar dedicated instructions should be used to access procedure locals.","breadcrumbs":"User Documentation » Miden Assembly » Execution contexts » Memory layout","id":"44","title":"Memory layout"},"45":{"body":"To better illustrate what happens as we execute procedures in different contexts, let's go over the following example. kernel\n--------------------\nexport.baz.2 caller \nend program\n--------------------\nproc.bar.1 syscall.baz \nend proc.foo.3 call.bar exec.bar \nend begin call.foo \nend Execution of the above program proceeds as follows: The VM starts executing instructions immediately following the begin statement. These instructions are executed in the root context (let's call this context ctx0). When call.foo is executed, a new context is created (ctx1). Memory in this context is isolated from ctx0. Additionally, any elements on the stack beyond the top 16 are hidden from foo. Instructions executed inside foo can access memory of ctx1 only. The address of the first procedure local in foo (e.g., accessed via loc_load.0) is 230. When call.bar is executed, a new context is created (ctx2). The stack depth is set to 16 again, and any instruction executed in this context can access memory of ctx2 only. The first procedure local of bar is also located at address 230. When syscall.baz is executed, the execution moves back into the root context. That is, instructions executed inside baz have access to the memory of ctx0. The first procedure local of baz is located at address 231. When baz starts executing, the stack depth is again set to 16. When caller is executed inside baz, the first 4 elements of the stack are populated with the hash of bar since baz was invoked from bar's context. Once baz returns, execution moves back to ctx2, and then, when bar returns, execution moves back to ctx1. We assume that instructions executed right before each procedure returns ensure that the stack depth is exactly 16 right before procedure's end. Next, when exec.bar is executed, bar is executed again, but this time it is executed in the same context as foo. Thus, it can access memory of ctx1. Moreover, the stack depth is not changed, and thus, bar can access the entire stack of foo. Lastly, this first procedure local of bar now will be at address 230+3 (since the first 3 locals in this context are reserved for foo). When syscall.baz is executed the second time, execution moves into the root context again. However, now, when caller is executed inside baz, the first 4 elements of the stack are populated with the hash of foo (not bar). This happens because this time around bar does not have its own context and baz is invoked from foo's context. Finally, when baz returns, execution moves back to ctx1, and then as bar and foo return, back to ctx0, and the program terminates.","breadcrumbs":"User Documentation » Miden Assembly » Execution contexts » Example","id":"45","title":"Example"},"46":{"body":"As mentioned above, Miden assembly provides high-level constructs to facilitate flow control. These constructs are: if-else expressions for conditional execution. repeat expressions for bounded counter-controlled loops. while expressions for unbounded condition-controlled loops.","breadcrumbs":"User Documentation » Miden Assembly » Flow Control » Flow control","id":"46","title":"Flow control"},"47":{"body":"Conditional execution in Miden VM can be accomplished with if-else statements. These statements look like so: if.true \nelse \nend where instructions can be a sequence of any instructions, including nested control structures; the else clause is optional. The above does the following: Pops the top item from the stack. If the value of the item is 1, instructions in the if.true branch are executed. If the value of the item is 0, instructions in the else branch are executed. If the value is not binary, the execution fails. A note on performance: using if-else statements incurs a small, but non-negligible overhead. Thus, for simple conditional statements, it may be more efficient to compute the result of both branches, and then select the result using conditional drop instructions.","breadcrumbs":"User Documentation » Miden Assembly » Flow Control » Conditional execution","id":"47","title":"Conditional execution"},"48":{"body":"Executing a sequence of instructions a predefined number of times can be accomplished with repeat statements. These statements look like so: repeat. \nend where: instructions can be a sequence of any instructions, including nested control structures. count is the number of times the instructions sequence should be repeated (e.g. repeat.10). count must be an integer greater than 0. Note : During compilation the repeat. blocks are unrolled and expanded into copies of its inner block, there is no additional cost for counting variables in this case.","breadcrumbs":"User Documentation » Miden Assembly » Flow Control » Counter-controlled loops","id":"48","title":"Counter-controlled loops"},"49":{"body":"Executing a sequence of instructions zero or more times based on some condition can be accomplished with while loop expressions. These expressions look like so: while.true \nend where instructions can be a sequence of any instructions, including nested control structures. The above does the following: Pops the top item from the stack. If the value of the item is 1, instructions in the loop body are executed. a. After the body is executed, the stack is popped again, and if the popped value is 1, the body is executed again. b. If the popped value is 0, the loop is exited. c. If the popped value is not binary, the execution fails. If the value of the item is 0, execution of loop body is skipped. If the value is not binary, the execution fails. Example: # push the boolean true to the stack\npush.1 # pop the top element of the stack and loop while it is true\nwhile.true # push the boolean false to the stack, finishing the loop for the next iteration push.0\nend","breadcrumbs":"User Documentation » Miden Assembly » Flow Control » Condition-controlled loops","id":"49","title":"Condition-controlled loops"},"5":{"body":"Licensed under the MIT license .","breadcrumbs":"Introduction » License","id":"5","title":"License"},"50":{"body":"Miden assembly provides a set of instructions which can perform operations with raw field elements. These instructions are described in the tables below. While most operations place no restrictions on inputs, some operations expect inputs to be binary values, and fail if executed with non-binary inputs. For instructions where one or more operands can be provided as immediate parameters (e.g., add and add.b), we provide stack transition diagrams only for the non-immediate version. For the immediate version, it can be assumed that the operand with the specified name is not present on the stack.","breadcrumbs":"User Documentation » Miden Assembly » Field Operations » Field operations","id":"50","title":"Field operations"},"51":{"body":"Instruction Stack_input Stack_output Notes assert - (1 cycle) [a, ...] [...] If a=1, removes it from the stack. Fails if a=1 assertz - (2 cycles) [a, ...] [...] If a=0, removes it from the stack, Fails if a=0 assert_eq - (2 cycles) [b, a, ...] [...] If a=b, removes them from the stack. Fails if a=b assert_eqw - (11 cycles) [B, A, ...] [...] If A=B, removes them from the stack. Fails if A=B","breadcrumbs":"User Documentation » Miden Assembly » Field Operations » Assertions and tests","id":"51","title":"Assertions and tests"},"52":{"body":"Instruction Stack_input Stack_output Notes add - (1 cycle) add. b - (1-2 cycle) [b, a, ...] [c, ...] c←(a+b)modp sub - (2 cycles) sub. b - (2 cycles) [b, a, ...] [c, ...] c←(a−b)modp mul - (1 cycle) mul. b - (2 cycles) [b, a, ...] [c, ...] c←(a⋅b)modp div - (2 cycles) div. b - (2 cycles) [b, a, ...] [c, ...] c←(a⋅b−1)modp Fails if b=0 neg - (1 cycle) [a, ...] [b, ...] b←−amodp inv - (1 cycle) [a, ...] [b, ...] b←a−1modp Fails if a=0 pow2 - (16 cycles) [a, ...] [b, ...] b←2a Fails if a>63 exp. uxx - (9 + xx cycles) exp. b - (9 + log2(b) cycles) [b, a, ...] [c, ...] c←ab Fails if xx is outside [0, 63) exp is equivalent to exp.u64 and needs 73 cycles not - (1 cycle) [a, ...] [b, ...] b←1−a Fails if a>1 and - (1 cycle) [b, a, ...] [c, ...] c←a⋅b Fails if max(a,b)>1 or - (1 cycle) [b, a, ...] [c, ...] c←a+b−a⋅b Fails if max(a,b)>1 xor - (7 cycles) [b, a, ...] [c, ...] c←a+b−2⋅a⋅b Fails if max(a,b)>1","breadcrumbs":"User Documentation » Miden Assembly » Field Operations » Arithmetic and Boolean operations","id":"52","title":"Arithmetic and Boolean operations"},"53":{"body":"Instruction Stack_input Stack_output Notes eq - (1 cycle) eq. b - (1-2 cycles) [b, a, ...] [c, ...] c←{1,0,if a=botherwise neq - (2 cycle) neq. b - (2-3 cycles) [b, a, ...] [c, ...] c←{1,0,if a=botherwise lt - (17 cycles) [b, a, ...] [c, ...] c←{1,0,if abotherwise gte - (19 cycles) [b, a, ...] [c, ...] c←{1,0,if a≥botherwise is_odd - (5 cycles) [a, ...] [b, ...] b←{1,0,if a is oddotherwise eqw - (15 cycles) [A, B, ...] [c, A, B, ...] c←{1,0,if ai=bi∀i∈{0,1,2,3}otherwise ","breadcrumbs":"User Documentation » Miden Assembly » Field Operations » Comparison operations","id":"53","title":"Comparison operations"},"54":{"body":"Instruction Stack Input Stack Output Notes ext2add - (5 cycles) [b1, b0, a1, a0, ...] [c1, c0, ...] c1←(a1+b1)modp and c0←(a0+b0)modp ext2sub - (7 cycles) [b1, b0, a1, a0, ...] [c1, c0, ...] c1←(a1−b1)modp and c0←(a0−b0)modp ext2mul - (3 cycles) [b1, b0, a1, a0, ...] [c1, c0, ...] c1←(a0+a1)∗(b0+b1)modp and c0←(a0∗b0)−2∗(a1∗b1)modp ext2neg - (4 cycles) [a1, a0, ...] [a1', a0', ...] a1′←−a1 and a0′←−a0 ext2inv - (8 cycles) [a1, a0, ...] [a1', a0', ...] a′←a−1modq Fails if a=0 ext2div - (11 cycles) [b1, b0, a1, a0, ...] [c1, c0,] c←a∗b−1 fails if b=0, where multiplication and inversion are as defined by the operations above","breadcrumbs":"User Documentation » Miden Assembly » Field Operations » Extension Field Operations","id":"54","title":"Extension Field Operations"},"55":{"body":"Miden assembly provides a set of instructions which can perform operations on regular two-complement 32-bit integers. These instructions are described in the tables below. Most instructions have checked variants. These variants ensure that input values are 32-bit integers, and fail if that's not the case. All other variants do not perform these checks, and thus, should be used only if the inputs are known to be 32-bit integers. Supplying inputs which are greater than or equal to 232 to unchecked operations results in undefined behavior. The primary benefit of using unchecked operations is performance: they can frequently be executed 2 or 3 times faster than their checked counterparts. In general, vast majority of the unchecked operations listed below can be executed in a single VM cycle. For instructions where one or more operands can be provided as immediate parameters (e.g., u32checked_add and u32checked_add.b), we provide stack transition diagrams only for the non-immediate version. For the immediate version, it can be assumed that the operand with the specified name is not present on the stack. In all the table below, the number of cycles it takes for the VM to execute each instruction is listed beneath the instruction.","breadcrumbs":"User Documentation » Miden Assembly » u32 Operations » u32 operations","id":"55","title":"u32 operations"},"56":{"body":"Instruction Stack input Stack output Notes u32test - (5 cycles) [a, ...] [b, a, ...] b←{1,0,if a<232otherwise u32testw - (23 cycles) [A, ...] [b, A, ...] b←{1,0,if ∀ i∈{0,1,2,3} ai<232otherwise u32assert u32assert.1 - (3 cycles) [a, ...] [a, ...] Fails if a≥232 u32assert.2 - (1 cycle) [b, a,...] [b, a,...] Fails if a≥232 or b≥232 u32assertw - (6 cycles) [A, ...] [A, ...] Fails if ∃ i∈{0,1,2,3}∋ai≥232 u32cast - (2 cycles) [a, ...] [b, ...] b←amod232 u32split - (1 cycle) [a, ...] [c, b, ...] b←amod232, c←⌊a/232⌋","breadcrumbs":"User Documentation » Miden Assembly » u32 Operations » Conversions and tests","id":"56","title":"Conversions and tests"},"57":{"body":"Instruction Stack input Stack output Notes u32checked_add - (4 cycles) u32checked_add. b - (5-6 cycles) [b, a, ...] [c, ...] c←a+b Fails if max(a,b,c)≥232 u32overflowing_add - (1 cycle) u32overflowing_add. b - (2-3 cycles) [b, a, ...] [d, c, ...] c←(a+b)mod232 d←{1,0,if (a+b)≥232otherwise Undefined if max(a,b)≥232 u32wrapping_add - (2 cycles) u32wrapping_add. b - (3-4 cycles) [b, a, ...] [c, ...] c←(a+b)mod232 Undefined if max(a,b)≥232 u32overflowing_add3 - (1 cycle) [c, b, a, ...] [e, d, ...] d←(a+b+c)mod232, e←⌊(a+b+c)/232⌋ Undefined if max(a,b,c)≥232 u32wrapping_add3 - (2 cycles) [c, b, a, ...] [d, ...] d←(a+b+c)mod232, Undefined if max(a,b,c)≥232 u32checked_sub - (4 cycles) u32checked_sub. b - (5-6 cycles) [b, a, ...] [c, ...] c←(a−b) Fails if max(a,b)≥232 or a31 u32unchecked_shl - (40 cycles) u32unchecked_shl. b - (3 cycles) [b, a, ...] [c, ...] c←(a⋅2b)mod232 Undefined if a≥232 or b>31 u32checked_shr - (47 cycles) u32checked_shr. b - (4 cycles) [b, a, ...] [c, ...] c←⌊a/2b⌋ Fails if a≥232 or b>31 u32unchecked_shr - (40 cycles) u32unchecked_shr. b - (3 cycles) [b, a, ...] [c, ...] c←⌊a/2b⌋ Undefined if a≥232 or b>31 u32checked_rotl - (47 cycles) u32checked_rotl. b - (4 cycles) [b, a, ...] [c, ...] Computes c by rotating a 32-bit representation of a to the left by b bits. Fails if a≥232 or b>31 u32unchecked_rotl - (40 cycles) u32unchecked_rotl. b - (3 cycles) [b, a, ...] [c, ...] Computes c by rotating a 32-bit representation of a to the left by b bits. Undefined if a≥232 or b>31 u32checked_rotr - (59 cycles) u32checked_rotr. b - (6 cycles) [b, a, ...] [c, ...] Computes c by rotating a 32-bit representation of a to the right by b bits. Fails if a≥232 or b>31 u32unchecked_rotr - (44 cycles) u32unchecked_rotr. b - (3 cycles) [b, a, ...] [c, ...] Computes c by rotating a 32-bit representation of a to the right by b bits. Undefined if a≥232 or b>31 u32checked_popcnt - (36 cycles) [a, ...] [b, ...] Computes b by counting the number of set bits in a (hamming weight of a). Fails if a≥232 u32unchecked_popcnt - (33 cycles) [a, ...] [b, ...] Computes b by counting the number of set bits in a (hamming weight of a). Undefined if a≥232","breadcrumbs":"User Documentation » Miden Assembly » u32 Operations » Bitwise operations","id":"58","title":"Bitwise operations"},"59":{"body":"Instruction Stack input Stack output Notes u32checked_eq - (2 cycles) u32checked_eq. b - (3-4 cycles) [b, a, ...] [c, ...] c←{1,0,if a=botherwise Fails if max(a,b)≥232 Note: unchecked version is not provided because it is equivalent to simple eq. u32checked_neq - (3 cycles) u32checked_neq. b - (4-5 cycles) [b, a, ...] [c, ...] c←{1,0,if a=botherwise Fails if max(a,b)≥232 Note: unchecked version is not provided because it is equivalent to simple neq. u32checked_lt - (6 cycles) [b, a, ...] [c, ...] c←{1,0,if abotherwise Fails if max(a,b)≥232 u32unchecked_gt - (6 cycles) [b, a, ...] [c, ...] c←{1,0,if a>botherwise Undefined if max(a,b)≥232 u32checked_gte - (7 cycles) [b, a, ...] [c, ...] c←{1,0,if a≥botherwise Fails if max(a,b)≥232 u32unchecked_gte - (6 cycles) [b, a, ...] [c, ...] c←{1,0,if a≥botherwise Undefined if max(a,b)≥232 u32checked_min - (9 cycles) [b, a, ...] [c, ...] c←{a,b,if abotherwise Fails if max(a,b)≥232 u32unchecked_max - (9 cycles) [b, a, ...] [c, ...] c←{a,b,if a>botherwise Undefined if max(a,b)≥232","breadcrumbs":"User Documentation » Miden Assembly » u32 Operations » Comparison operations","id":"59","title":"Comparison operations"},"6":{"body":"Miden VM is a stack machine. The base data type of the MV is a field element in a 64-bit prime field defined by modulus p=264−232+1. This means that all values that the VM operates with are field elements in this field (i.e., values between 0 and 264−232, both inclusive). Miden VM consists of three high-level components as illustrated below. These components are: Stack which is a push-down stack where each item is a field element. Most assembly instructions operate with values located on the stack. The stack can grow up to 232 items deep, however, only the top 16 items are directly accessible. Memory which is a linear random-access read-write memory. The memory is word-addressable, meaning, four elements are located at each address, and we can read and write elements to/from memory in batches of four. Memory addresses can be in the range [0,232). Advice provider which is a way for the prover to provide nondeterministic inputs to the VM. The advice provider is composed of a single advice stack , an advice map , and a merkle store . The advice stack yields elements to the VM stack; the advice map stores key-mapped element lists which can be pushed onto the advice stack; finally, the Merkle store contains structured Merkle tree data and serves Merkle paths to the VM. In the future, additional components (e.g., storage, logs) may be added to the VM.","breadcrumbs":"Introduction » Overview » Miden VM overview","id":"6","title":"Miden VM overview"},"60":{"body":"Miden VM stack is a push-down stack of field elements. The stack has a maximum depth of 232, but only the top 16 elements are directly accessible via the instructions listed below. In addition to the typical stack manipulation instructions such as drop, dup, swap etc., Miden assembly provides several conditional instructions which can be used to manipulate the stack based on some condition - e.g., conditional swap cswap or conditional drop cdrop. Instruction Stack_input Stack_output Notes drop - (1 cycle) [a, ... ] [ ... ] Deletes the top stack item. dropw - (4 cycles) [A, ... ] [ ... ] Deletes a word (4 elements) from the top of the stack. padw - (4 cycles) [ ... ] [0, 0, 0, 0, ... ] Pushes four 0 values onto the stack. Note: simple pad is not provided because push.0 does the same thing. dup. n - (1-3 cycles) [ ..., a, ... ] [a, ..., a, ... ] Pushes a copy of the nth stack item onto the stack. dup and dup.0 are the same instruction. Valid for n∈{0,...,15} dupw. n - (4 cycles) [ ..., A, ... ] [A, ..., A, ... ] Pushes a copy of the nth stack word onto the stack. dupw and dupw.0 are the same instruction. Valid for n∈{0,1,2,3} swap. n - (1-6 cycles) [a, ..., b, ... ] [b, ..., a, ... ] Swaps the top stack item with the nth stack item. swap and swap.1 are the same instruction. Valid for n∈{1,...,15} swapw. n - (1 cycle) [A, ..., B, ... ] [B, ..., A, ... ] Swaps the top stack word with the nth stack word. swapw and swapw.1 are the same instruction. Valid for n∈{1,2,3} swapdw - (1 cycle) [D, C, B, A, ... ] [B, A, D, C ... ] Swaps words on the top of the stack. The 1st with the 3rd, and the 2nd with the 4th. movup. n - (1-4 cycles) [ ..., a, ... ] [a, ... ] Moves the nth stack item to the top of the stack. Valid for n∈{2,...,15} movupw. n - (2-3 cycles) [ ..., A, ... ] [A, ... ] Moves the nth stack word to the top of the stack. Valid for n∈{2,3} movdn. n - (1-4 cycles) [a, ... ] [ ..., a, ... ] Moves the top stack item to the nth position of the stack. Valid for n∈{2,...,15} movdnw. n - (2-3 cycles) [A, ... ] [ ..., A, ... ] Moves the top stack word to the nth word position of the stack. Valid for n∈{2,3}","breadcrumbs":"User Documentation » Miden Assembly » Stack manipulation » Stack manipulation","id":"60","title":"Stack manipulation"},"61":{"body":"Instruction Stack_input Stack_output Notes cswap - (1 cycle) [c, b, a, ... ] [e, d, ... ] d={a,b,if c=0if c=1 e={b,a,if c=0if c=1 Fails if c>1 cswapw - (1 cycle) [c, B, A, ... ] [E, D, ... ] D={A,B,if c=0if c=1 E={B,A,if c=0if c=1 Fails if c>1 cdrop - (2 cycles) [c, b, a, ... ] [d, ... ] d={a,b,if c=0if c=1 Fails if c>1 cdropw - (5 cycles) [c, B, A, ... ] [D, ... ] D={A,B,if c=0if c=1 Fails if c>1","breadcrumbs":"User Documentation » Miden Assembly » Stack manipulation » Conditional manipulation","id":"61","title":"Conditional manipulation"},"62":{"body":"Miden assembly provides a set of instructions for moving data between the operand stack and several other sources. These sources include: Program code : values to be moved onto the operand stack can be hard-coded in a program's source code. Environment : values can be moved onto the operand stack from environment variables. These include current clock cycle, current stack depth, and a few others. Advice provider : values can be moved onto the operand stack from the advice provider by popping them from the advice stack (see more about the advice provider here ). The VM can also inject new data into the advice provider via advice injector instructions. Memory : values can be moved between the stack and random-access memory. The memory is word-addressable, meaning, four elements are located at each address, and we can read and write elements to/from memory in batches of four. Memory can be accessed via absolute memory references (i.e., via memory addresses) as well as via local procedure references (i.e., local index). The latter approach ensures that a procedure does not access locals of another procedure.","breadcrumbs":"User Documentation » Miden Assembly » Input / Output Operations » Input / output operations","id":"62","title":"Input / output operations"},"63":{"body":"Instruction Stack_input Stack_output Notes push. a - (1-2 cycles) push. a . b push. a . b . c ... [ ... ] [a, ... ] [b, a, ... ] [c, b, a, ... ] Pushes values a, b, c etc. onto the stack. Up to 16 values can be specified. All values must be valid field elements in decimal (e.g., 123) or hexadecimal (e.g., 0x7b) representation. When specifying values in hexadecimal format, it is possible to omit the periods between individual values as long as total number of specified bytes is a multiple of 8. That is, the following are semantically equivalent: push.0x1234.0xabcd\npush.0x0000000000001234000000000000abcd In both case the values must still encode valid field elements.","breadcrumbs":"User Documentation » Miden Assembly » Input / Output Operations » Constant inputs","id":"63","title":"Constant inputs"},"64":{"body":"Instruction Stack_input Stack_output Notes clk - (1 cycle) [ ... ] [t, ... ] t←clock_value() Pushes the current value of the clock cycle counter onto the stack. sdepth - (1 cycle) [ ... ] [d, ... ] d←stack.depth() Pushes the current depth of the stack onto the stack. caller - (1 cycle) [A, b, ... ] [H, b, ... ] H←context.fn_hash() Overwrites the top four stack items with the hash of a function which initiated the current SYSCALL. Executing this instruction outside of SYSCALL context will fail. locaddr. i - (2 cycles) [ ... ] [a, ... ] a←address_of(i) Pushes the absolute memory address of local memory at index i onto the stack.","breadcrumbs":"User Documentation » Miden Assembly » Input / Output Operations » Environment inputs","id":"64","title":"Environment inputs"},"65":{"body":"As mentioned above, nondeterministic inputs are provided to the VM via the advice provider. Instructs which access the advice provider fall into two categories. The first category consists of instructions which move data from the advice stack onto the operand stack and/or memory. Instruction Stack_input Stack_output Notes adv_push. n - (n cycles) [ ... ] [a, ... ] a←stack.pop() Pops n values from the advice stack and pushes them onto the operand stack. Valid for n∈{1,...,16}. Fails if the advice stack has fewer than n values. adv_loadw - (1 cycle) [0, 0, 0, 0, ... ] [A, ... ] A←stack.pop(4) Pop the next word (4 elements) from the advice stack and overwrites the first word of the operand stack (4 elements) with them. Fails if the advice stack has fewer than 4 values. adv_pipe - (1 cycle) [C, B, A, a, ... ] [E, D, A, a', ... ] [D,E]←[adv stack.pop(4),adv stack.pop(4)] a′←a+2 Pops the next two words from the advice stack, overwrites the top of the operand stack with them and also writes these words into memory at address a and a+1. Fails if the advice stack has fewer than 8 values. Note : The opcodes above always push data onto the operand stack so that the first element is placed deepest in the stack. For example, if the data on the stack is a,b,c,d and you use the opcode adv_push.4, the data will be d,c,b,a on your stack. This is also the behavior of the other opcodes. The second category injects new data into the advice provider. These operations are called advice injectors and they affect only the advice provider state. That is, the state of all other VM components (e.g., stack, memory) are unaffected. Executing advice injectors does not consume any VM cycles (i.e., these instructions are executed in 0 cycles). Advice injectors fall into two categories: (1) injectors which push new data onto the advice stack, and (2) injectors which insert new data into the advice map. Instruction Stack_input Stack_output Notes adv.push_mapval adv.push_mapval. s [K, ... ] [K, ... ] Pushes a list of field elements onto the advice stack. The list is looked up in the advice map using word K as the key. If offset s is provided, the key is taken starting from item s on the stack. adv.push_mapvaln adv.push_mapvaln. s [K, ... ] [K, ... ] Pushes a list of field elements together with the number of elements onto the advice stack. The list is looked up in the advice map using word K as the key. If offset s is provided, the key is taken starting from item s on the stack. adv.push_mtnode [d, i, R, ... ] [d, i, R, ... ] Pushes a node of a Merkle tree with root R at depth d and index i from Merkle store onto the advice stack. adv.push_u64div [b1, b0, a1, a0, ...] [b1, b0, a1, a0, ...] Pushes the result of u64 division a/b onto the advice stack. Both a and b are represented using 32-bit limbs. The result consists of both the quotient and the remainder. adv.push_ext2intt [osize, isize, iptr, ... ] [osize, isize, iptr, ... ] Given evaluations of a polynomial over some specified domain, interpolates the evaluations into a polynomial in coefficient form and pushes the result into the advice stack. adv.smt_get [K, R, ... ] [K, R, ... ] Pushes values onto the advice stack which are required for successful retrieval of a value under the key K from a Sparse Merkle Tree with root R. adv.insert_mem [K, a, b, ... ] [K, a, b, ... ] Reads words data←mem[a]..mem[b] from memory, and save the data into advice_map[K]←data. adv.insert_hdword adv.insert_hdword. d [B, A, ... ] [B, A, ... ] Reads top two words from the stack, computes a key as K←hash(A∣∣b,d), and saves the data into advice_map[K]←[A,B]. d is an optional domain value which can be between 0 and 255, default value 0.","breadcrumbs":"User Documentation » Miden Assembly » Input / Output Operations » Nondeterministic inputs","id":"65","title":"Nondeterministic inputs"},"66":{"body":"As mentioned above, there are two ways to access memory in Miden VM. The first way is via memory addresses using the instructions listed below. The addresses are absolute - i.e., they don't depend on the procedure context. Memory addresses can be in the range [0,232). Memory is guaranteed to be initialized to zeros. Thus, when reading from memory address which hasn't been written to previously, zero elements will be returned. Instruction Stack_input Stack_output Notes mem_load - (1 cycle) mem_load. a - (2 cycles) [a, ... ] [v, ... ] v←mem[a][0] Reads a word (4 elements) from memory at address a , and pushes the first element of the word onto the stack. If a is provided via the stack, it is removed from the stack first. Fails if a≥232 mem_loadw - (1 cycle) mem_loadw. a - (2 cycles) [a, 0, 0, 0, 0, ... ] [A, ... ] A←mem[a] Reads a word from memory at address a and overwrites top four stack elements with it. If a is provided via the stack, it is removed from the stack first. Fails if a≥232 mem_store - (2 cycles) mem_store. a - (3-4 cycles) [a, v, ... ] [ ... ] v→mem[a][0] Pops the top element off the stack and stores it as the first element of the word in memory at address a. All other elements of the word are not affected. If a is provided via the stack, it is removed from the stack first. Fails if a≥232 mem_storew - (1 cycle) mem_storew. a - (2-3 cycles) [a, A, ... ] [A, ... ] A→mem[a] Stores the top four elements of the stack in memory at address a. If a is provided via the stack, it is removed from the stack first. Fails if a≥232 mem_stream - (1 cycle) [C, B, A, a, ... ] [E, D, A, a', ... ] [E,D]←[mem[a],mem[a+1]] a′←a+2 Read two sequential words from memory starting at address a and overwrites the first two words in the operand stack. The second way to access memory is via procedure locals using the instructions listed below. These instructions are available only in procedure context. The number of locals available to a given procedure must be specified at procedure declaration time, and trying to access more locals than was declared will result in a compile-time error. The number of locals per procedure is not limited, but the total number of locals available to all procedures at runtime must be smaller than 232. Instruction Stack_input Stack_output Notes loc_load. i - (3-4 cycles) [ ... ] [v, ... ] v←local[i][0] Reads a word (4 elements) from local memory at index i , and pushes the first element of the word onto the stack. loc_loadw. i - (3-4 cycles) [0, 0, 0, 0, ... ] [A, ... ] A←local[i] Reads a word from local memory at index i and overwrites top four stack elements with it. loc_store. i - (4-5 cycles) [v, ... ] [ ... ] v→local[i][0] Pops the top element off the stack and stores it as the first element of the word in local memory at index i. All other elements of the word are not affected. loc_storew. i - (3-4 cycles) [A, ... ] [A, ... ] A→local[i] Stores the top four elements of the stack in local memory at index i. Unlike regular memory, procedure locals are not guaranteed to be initialized to zeros. Thus, when working with locals, one must assume that before a local memory address has been written to, it contains \"garbage\". Internally in the VM, procedure locals are stored at memory offset stating at 230. Thus, every procedure local has an absolute address in regular memory. The locaddr.i instruction is provided specifically to map an index of a procedure's local to an absolute address so that it can be passed to downstream procedures, when needed.","breadcrumbs":"User Documentation » Miden Assembly » Input / Output Operations » Random access memory","id":"66","title":"Random access memory"},"67":{"body":"Miden assembly provides a set of instructions for performing common cryptographic operations. These instructions are listed in the table below.","breadcrumbs":"User Documentation » Miden Assembly » Cryptographic Operations » Cryptographic operations","id":"67","title":"Cryptographic operations"},"68":{"body":"Rescue Prime Optimized is the native hash function of Miden VM. The parameters of the hash function were chosen to provide 128-bit security level against preimage and collision attacks. The function operates over a state of 12 field elements, and requires 7 rounds for a single permutation. However, due to its special status within the VM, computing Rescue Prime Optimized hashes can be done very efficiently. For example, applying a permutation of the hash function can be done in a single VM cycle. Instruction Stack_input Stack_output Notes hash - (20 cycles) [A, ...] [B, ...] {B}←hash(A) where, hash() computes a 1-to-1 Rescue Prime Optimized hash. hperm - (1 cycle) [C, B, A, ...] [F, E, D, ...] {D,E,F}←permute(A,B,C) Performs a Rescue Prime Optimized permutation on the top 3 words of the operand stack, where the top 2 words elements are the rate (words C and B), the deepest word is the capacity (word A), the digest output is the word E. hmerge - (16 cycles) [B, A, ...] [C, ...] C←hash(A,B) where, hash() computes a 2-to-1 Rescue Prime Optimized hash. mtree_get - (9 cycles) [d, i, R, ...] [V, R, ...] Fetches the node value from the advice provider and runs a verification equivalent to mtree_verify, returning the value if succeeded. mtree_set - (29 cycles) [d, i, R, V', ...] [V, R', ...] Updates a node in the Merkle tree with root R at depth d and index i to value V′. R′ is the Merkle root of the resulting tree and V is old value of the node. Merkle tree with root R must be present in the advice provider, otherwise execution fails. At the end of the operation the advice provider will contain both Merkle trees. mtree_merge - (16 cycles) [R, L, ...] [M, ...] Merges two Merkle trees with the provided roots R (right), L (left) into a new Merkle tree with root M (merged). The input trees are retained in the advice provider. mtree_verify - (1 cycle) [V, d, i, R, ...] [V, d, i, R, ...] Verifies that a Merkle tree with root R opens to node V at depth d and index i. Merkle tree with root R must be present in the advice provider, otherwise execution fails.","breadcrumbs":"User Documentation » Miden Assembly » Cryptographic Operations » Hashing and Merkle trees","id":"68","title":"Hashing and Merkle trees"},"69":{"body":"Miden standard library provides a set of procedures which can be used by any Miden program. These procedures build on the core instruction set of Miden assembly expanding the functionality immediately available to the user. The goals of Miden standard library are: Provide highly-optimized and battle-tested implementations of commonly-used primitives. Reduce the amount of code that needs to be shared between parties for proving and verifying program execution. The second goal can be achieved because calls to procedures in the standard library can always be serialized as 32 bytes, regardless of how large the procedure is.","breadcrumbs":"User Documentation » Miden Standard Library » Miden Standard Library","id":"69","title":"Miden Standard Library"},"7":{"body":"Our goal is to make Miden VM an easy compilation target for high-level blockchain-centric languages such as Solidity, Move, Sway, and others. We believe it is important to let people write programs in the languages of their choice. However, compilers to help with this have not been developed yet. Thus, for now, the primary way to write programs for Miden VM is to use Miden assembly . While writing programs in assembly is far from ideal, Miden assembly does make this task a little bit easier by supporting high-level flow control structures and named procedures.","breadcrumbs":"Introduction » Overview » Writing programs","id":"7","title":"Writing programs"},"70":{"body":"In this document we use the following terms and notations: A field element is an element in a prime field of size p=264−232+1. A binary value means a field element which is either 0 or 1. Inequality comparisons are assumed to be performed on integer representations of field elements in the range [0,p). Throughout this document, we use lower-case letters to refer to individual field elements (e.g., a). Sometimes it is convenient to describe operations over groups of elements. For these purposes we define a word to be a group of four elements. We use upper-case letters to refer to words (e.g., A). To refer to individual elements within a word, we use numerical subscripts. For example, a0 is the first element of word A, b3 is the last element of word B, etc.","breadcrumbs":"User Documentation » Miden Standard Library » Terms and notations","id":"70","title":"Terms and notations"},"71":{"body":"Procedures in the Miden Standard Library are organized into modules, each targeting a narrow set of functionality. Modules are grouped into higher-level namespaces. However, higher-level namespaces do not expose any procedures themselves. For example, std::math::u64 is a module containing procedures for working with 64-bit unsigned integers. This module is a part of the std::math namespace. However, the std::math namespace does not expose any procedures. For an example of how to invoke procedures from imported modules see this section .","breadcrumbs":"User Documentation » Miden Standard Library » Organization and usage","id":"71","title":"Organization and usage"},"72":{"body":"Currently, Miden standard library contains just a few modules, which are listed below. Over time, we plan to add many more modules which will include various cryptographic primitives, additional numeric data types and operations, and many others. Module Description std::collections::mmr Contains procedures for manipulating Merkle Mountain Ranges . std::collections::smt64 Contains procedures for manipulating key-value maps with single-element keys and 4-element values. std::crypto::fri::frie2f4 Contains procedures for verifying FRI proofs (field extension = 2, folding factor = 4). std::crypto::hashes::blake3 Contains procedures for computing hashes using BLAKE3 hash function. std::crypto::hashes::sha256 Contains procedures for computing hashes using SHA256 hash function. std::math::u64 Contains procedures for working with 64-bit unsigned integers. std::mem Contains procedures for working with random access memory. std::sys Contains system-level utility procedures.","breadcrumbs":"User Documentation » Miden Standard Library » Available modules","id":"72","title":"Available modules"},"73":{"body":"Namespace std::collections contains modules for commonly authenticated data structures.","breadcrumbs":"User Documentation » Miden Standard Library » std::collections » Collections","id":"73","title":"Collections"},"74":{"body":"Module std::collections::mmr contains procedures for manipulating Merkle Mountain Range data structure which can be used as an append-only log. Procedure Description get Loads the leaf at the absolute pos in the MMR onto the stack.Valid range for pos is between 0 and 232−1 (both inclusive).Inputs:- Operand stack: [pos, mmr_ptr, ...]Output:- Operand stack: [N, ...]Where N is the leaf loaded from the MMR whose memory location starts at mmr_ptr. add Adds a new leaf to the MMR.This will update the MMR peaks in the VM's memory and the advice provider with any merged nodes.Inputs:- Operand stack: [N, mmr_ptr, ...]Outputs:- Operand stack: [...]Where N is the leaf added to the MMR whose memory locations starts at mmr_ptr. pack Computes the hash of the given MMR and copies it to the Advice Map using its hash as a key.Inputs:- Operand stack: [mmr_ptr, ...]Outputs:- Operand stack: [HASH, ...] unpack Load the MMR peak data based on its hash.Inputs:- Operand stack: [HASH, mmr_ptr, ...]Outputs:- Operand stack: [...]Where:- HASH: is the MMR peak hash, the hash is expected to be padded to an even length and to have a minimum size of 16 elements.- The advice map must contain a key with HASH, and its value is num_leaves \\|\\| hash_data, and hash_data is the data used to computed HASH- mmt_ptr: the memory location where the MMR data will be written, starting with the MMR forest (the total count of its leaves) followed by its peaks.","breadcrumbs":"User Documentation » Miden Standard Library » std::collections » Merkle Mountain Range","id":"74","title":"Merkle Mountain Range"},"75":{"body":"Module std::collections::smt64 contains procedures for manipulating key-value maps with single-element keys and 4-element values. The current implementation is a thin wrapper over a simple Sparse Merkle Tree of depth 64. In the future, this will be replaced with a compact Sparse Merkle Tree implementation. Procedure Description get Returns the value located under the specified key in the Sparse Merkle Tree defined by the specified root.If no values had been previously inserted under the specified key, an empty word (i.e., [ZERO; 4]) is returned.Inputs:- Operand stack: [key, ROOT, ...]Outputs:-Operand stack: [VALUE, ROOT, ...]Fails if the tree with the specified root does not exist in the VM's advice provider. set Inserts the specified value under the specified key in a Sparse Merkle Tree defined by the specified root. If the insert is successful, the old value located under the specified key is returned via the stack.If VALUE is an empty word (i.e., [ZERO; 4]), the new state of the tree is guaranteed to be equivalent to the state as if the updated value was never inserted.Inputs: - Operand stack: [VALUE, key, ROOT, ...]Outputs:- Operand stack: [OLD_VALUE, NEW_ROOT, ...]Fails if the tree with the specified root does not exits in the VM's advice provider. insert Inserts the specified value under the specified key in a Sparse Merkle Tree defined by the specified root. If the insert is successful, the old value located under the specified key is returned via the stack.This procedure requires that VALUE be a non-empty word (i.e., not [ZERO; 4]).Inputs:- Operand stack: [VALUE, key, ROOT, ...]Outputs: -Operand stack: [OLD_VALUE, NEW_ROOT, ...]Fails if:- The tree with the specified root does not exits in the VM's advice provider.- The provided value is an empty word.","breadcrumbs":"User Documentation » Miden Standard Library » std::collections » Sparse Merkle Tree (64)","id":"75","title":"Sparse Merkle Tree (64)"},"76":{"body":"Namespace std::crypto::fri contains modules for verifying FRI proofs.","breadcrumbs":"User Documentation » Miden Standard Library » std::crypto::fri » FRI verification procedures","id":"76","title":"FRI verification procedures"},"77":{"body":"Module std::crypto::fri::frie2f4 contains procedures for verifying FRI proofs generated over the quadratic extension of the Miden VM's base field. Moreover, the procedures assume that layer folding during the commit phase of FRI protocol was performed using folding factor 4. Procedure Description verify Verifies a FRI proof where the proof was generated over the quadratic extension of the base field and layer folding was performed using folding factor 4.Input: [query_start_ptr, query_end_ptr, layer_ptr, rem_ptr, g, ...]>Output: [...]- query_start_ptr is a pointer to a list of tuples of the form (e0, e1, p, 0) where p is a query index at the first layer and (e0, e1) is an extension field element corresponding to the value of the first layer at index p.- query_end_ptr is a pointer to the first empty memory address after the last (e0, e1, p, 0) tuple.- layer_ptr is a pointer to the first layer commitment denoted throughout the code by C. layer_ptr + 1 points to the first (alpha0, alpha1, t_depth, d_size) where d_size is the size of initial domain divided by 4, t_depth is the depth of the Merkle tree commitment to the first layer and (alpha0, alpha1) is the first challenge used in folding the first layer. Both t_depth and d_size are expected to be smaller than 2^32. Otherwise, the result of this procedure is undefined.- rem_ptr is a pointer to the first tuple of two consecutive degree 2 extension field elements making up the remainder codeword. This codeword can be of length either 32 or 64.The memory referenced above is used contiguously, as follows:[layer_ptr ... rem_ptr ... query_start_ptr ... query_end_ptr]This means for example that:1. rem_ptr - 1 points to the last (alpha0, alpha1, t_depth, d_size) tuple.2. The length of the remainder codeword is 2 * (rem_ptr - query_start_ptr).Cycles: for domains of size 2^n where:- n is even: 12 + 6 + num_queries * (40 + num_layers * 76 + 69) + 2626- n is odd: 12 + 6 + num_queries * (40 + num_layers * 76 + 69) + 1356","breadcrumbs":"User Documentation » Miden Standard Library » std::crypto::fri » FRI Extension 2, Fold 4","id":"77","title":"FRI Extension 2, Fold 4"},"78":{"body":"Namespace std::crypto contains modules for commonly used cryptographic hash functions.","breadcrumbs":"User Documentation » Miden Standard Library » std::crypto::hashes » Cryptographic hashes","id":"78","title":"Cryptographic hashes"},"79":{"body":"Module std::crypto::hashes::blake3 contains procedures for computing hashes using BLAKE3 hash function. The input and output elements are assumed to contain one 32-bit value per element. Procedure Description hash_1to1 Computes BLAKE3 1-to-1 hash.Input: 32-bytes stored in the first 8 elements of the stack (32 bits per element). Output: A 32-byte digest stored in the first 8 elements of stack (32 bits per element). hash_2to1 Computes BLAKE3 2-to-1 hash.Input: 64-bytes stored in the first 16 elements of the stack (32 bits per element). Output: A 32-byte digest stored in the first 8 elements of stack (32 bits per element)","breadcrumbs":"User Documentation » Miden Standard Library » std::crypto::hashes » BLAKE3","id":"79","title":"BLAKE3"},"8":{"body":"External inputs can be provided to Miden VM in two ways: Public inputs can be supplied to the VM by initializing the stack with desired values before a program starts executing. Any number of stack items can be initialized in this way, but providing a large number of public inputs will increase the cost for the verifier. Secret (or nondeterministic) inputs can be supplied to the VM via the advice provider . There is no limit on how much data the advice provider can hold. After a program finishes executing, the elements remaining on the stack become the outputs of the program. Since these outputs will be public inputs for the verifier, having a large stack at the end of execution will increase cost to the verifier. Therefore, it's best to drop unneeded output values. We've provided the truncate_stack utility function in the standard library for this purpose. The number of public inputs and outputs of a program can be reduced by making use of the advice stack and Merkle trees. Just 4 elements are sufficient to represent a root of a Merkle tree, which can be expanded into an arbitrary number of values. For example, if we wanted to provide a thousand public input values to the VM, we could put these values into a Merkle tree, initialize the stack with the root of this tree, initialize the advice provider with the tree itself, and then retrieve values from the tree during program execution using mtree_get instruction (described here ). In the future, other ways of providing public inputs and reading public outputs (e.g., storage commitments) may be added to the VM.","breadcrumbs":"Introduction » Overview » Inputs and outputs","id":"8","title":"Inputs and outputs"},"80":{"body":"Module std::crypto::hashes::sha256 contains procedures for computing hashes using SHA256 hash function. The input and output elements are assumed to contain one 32-bit value per element. Procedure Description hash_1to1 Computes SHA256 1-to-1 hash.Input: 32-bytes stored in the first 8 elements of the stack (32 bits per element). Output: A 32-byte digest stored in the first 8 elements of stack (32 bits per element). hash_2to1 Computes SHA256 2-to-1 hash.Input: 64-bytes stored in the first 16 elements of the stack (32 bits per element). Output: A 32-byte digest stored in the first 8 elements of stack (32 bits per element).","breadcrumbs":"User Documentation » Miden Standard Library » std::crypto::hashes » SHA256","id":"80","title":"SHA256"},"81":{"body":"Module std::math::u64 contains a set of procedures which can be used to perform unsigned 64-bit integer operations. These operations fall into the following categories: Arithmetic operations - addition, multiplication, division etc. Comparison operations - equality, less than, greater than etc. Bitwise operations - binary AND, OR, XOR, bit shifts etc. All procedures assume that an unsigned 64-bit integer (u64) is encoded using two elements, each containing an unsigned 32-bit integer (u32). When placed on the stack, the least-significant limb is assumed to be deeper in the stack. For example, a u64 value a consisting of limbs a_hi and a_lo would be position on the stack like so: [a_hi, a_lo, ... ] Procedures which check whether the input values are encoded correctly are designated with checked prefix. For example, checked_add would fail if any of the top 4 elements on the stack contains a value greater than 232−1. In contrast, wrapping_add and overflowing_add would not perform these checks, and therefore, if any of the top 4 stack elements is greater than 232−1, the operation will not fail but rather will produce an undefined result. Thus, when using versions of procedures which are not checked, it is important to be certain that input values are 32-bit limbs encoding valid u64 values.","breadcrumbs":"User Documentation » Miden Standard Library » std::math::u64 » Unsigned 64-bit integer operations","id":"81","title":"Unsigned 64-bit integer operations"},"82":{"body":"Procedure Description checked_add Performs addition of two unsigned 64-bit integers and fails if the result would overflow. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = (a + b) % 2^64 overflowing_add Performs addition of two unsigned 64-bit integers preserving the overflow. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [overflow_flag, c_hi, c_lo, ...], where c = (a + b) % 2^64 wrapping_add Performs addition of two unsigned 64-bit integers discarding the overflow. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = (a + b) % 2^64 checked_sub Performs subtraction of two unsigned 64-bit integers and fails if the result would underflow. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = (a - b) % 2^64 overflowing_sub Performs subtraction of two unsigned 64-bit integers preserving the overflow. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [underflow_flag, c_hi, c_lo, ...], where c = (a - b) % 2^64 wrapping_sub Performs subtraction of two unsigned 64-bit integers discarding the overflow. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = (a - b) % 2^64 checked_mul Performs multiplication of two unsigned 64-bit integers and fails if the result would overflow. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = (a * b) % 2^64 overflowing_mul Performs multiplication of two unsigned 64-bit integers preserving the overflow. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi_hi, c_hi_lo, c_lo_hi, c_lo_lo, ...], where c = (a * b) % 2^64 wrapping_mul Performs multiplication of two unsigned 64-bit integers discarding the overflow. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = (a * b) % 2^64 checked_div Performs division of two unsigned 64-bit integers discarding the remainder. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a // b unchecked_div Performs division of two unsigned 64-bit integers discarding the remainder. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a // b checked_mod Performs modulo operation of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a % b unchecked_mod Performs modulo operation of two unsigned 64-bit integers. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a % b checked_divmod Performs divmod operation of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [r_hi, r_lo, q_hi, q_lo ...], where r = a % b, q = a // b unchecked_divmod Performs divmod operation of two unsigned 64-bit integers. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [r_hi, r_lo, q_hi, q_lo ...], where r = a % b, q = a // b","breadcrumbs":"User Documentation » Miden Standard Library » std::math::u64 » Arithmetic operations","id":"82","title":"Arithmetic operations"},"83":{"body":"Procedure Description checked_lt Performs less-than comparison of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a < b, and 0 otherwise. unchecked_lt Performs less-than comparison of two unsigned 64-bit integers. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a < b, and 0 otherwise. checked_gt Performs greater-than comparison of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a > b, and 0 otherwise. unchecked_gt Performs greater-than comparison of two unsigned 64-bit integers. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a > b, and 0 otherwise. This takes 11 cycles. checked_lte Performs less-than-or-equal comparison of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a <= b, and 0 otherwise. unchecked_lte Performs less-than-or-equal comparison of two unsigned 64-bit integers. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a <= b, and 0 otherwise. checked_gte Performs greater-than-or-equal comparison of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a >= b, and 0 otherwise. unchecked_gte Performs greater-than-or-equal comparison of two unsigned 64-bit integers. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a >= b, and 0 otherwise. checked_eq Performs equality comparison of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a == b, and 0 otherwise. unchecked_eq Performs equality comparison of two unsigned 64-bit integers. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a == b, and 0 otherwise. checked_neq Performs inequality comparison of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a != b, and 0 otherwise. unchecked_neq Performs inequality comparison of two unsigned 64-bit integers. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a != b, and 0 otherwise. checked_eqz Performs comparison to zero of an unsigned 64-bit integer. The input value is assumed to be represented using 32-bit limbs, fails if it is not. The stack transition looks as follows: [a_hi, a_lo, ...] -> [c, ...], where c = 1 when a == 0, and 0 otherwise. unchecked_eqz Performs comparison to zero of an unsigned 64-bit integer. The input value is assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [a_hi, a_lo, ...] -> [c, ...], where c = 1 when a == 0, and 0 otherwise. checked_min Compares two unsigned 64-bit integers and drop the larger one from the stack. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a when a < b, and b otherwise. unchecked_min Compares two unsigned 64-bit integers and drop the larger one from the stack. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a when a < b, and b otherwise. checked_max Compares two unsigned 64-bit integers and drop the smaller one from the stack. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a when a > b, and b otherwise. unchecked_max Compares two unsigned 64-bit integers and drop the smaller one from the stack. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a when a > b, and b otherwise.","breadcrumbs":"User Documentation » Miden Standard Library » std::math::u64 » Comparison operations","id":"83","title":"Comparison operations"},"84":{"body":"Procedure Description checked_and Performs bitwise AND of two unsigned 64-bit integers. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [[b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a AND b. checked_or Performs bitwise OR of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a OR b. checked_xor Performs bitwise XOR of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a XOR b. overflowing_shl Performs left shift of one unsigned 64-bit integer preserving the overflow and using the pow2 operation. The input value to be shifted is assumed to be represented using 32-bit limbs. The shift value should be in the range [0, 64), otherwise it will result in an error. The stack transition looks as follows: [b, a_hi, a_lo, ...] -> [d_hi, d_lo, c_hi, c_lo, ...], where (d,c) = a << b, which d contains the bits shifted out. This takes 35 cycles. unchecked_shl Performs left shift of one unsigned 64-bit integer using the pow2 operation. The input value to be shifted is assumed to be represented using 32-bit limbs. The shift value should be in the range [0, 64), otherwise it will result in an error. The stack transition looks as follows: [b, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a << b mod 2^64. This takes 28 cycles. overflowing_shr Performs right shift of one unsigned 64-bit integer preserving the overflow and using the pow2 operation. The input value to be shifted is assumed to be represented using 32-bit limbs. The shift value should be in the range [0, 64), otherwise it will result in an error. The stack transition looks as follows: [b, a_hi, a_lo, ...] -> [d_hi, d_lo, c_hi, c_lo, ...], where c = a >> b, d = a << (64 - b). This takes 94 cycles. unchecked_shr Performs right shift of one unsigned 64-bit integer using the pow2 operation. The input value to be shifted is assumed to be represented using 32-bit limbs. The shift value should be in the range [0, 64), otherwise it will result in an error. The stack transition looks as follows: [b, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a >> b. This takes 44 cycles. unchecked_rotl Performs left rotation of one unsigned 64-bit integer using the pow2 operation. The input value to be shifted is assumed to be represented using 32-bit limbs. The shift value should be in the range [0, 64), otherwise it will result in an error. The stack transition looks as follows: [b, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a << b mod 2^64. This takes 35 cycles. unchecked_rotr Performs right rotation of one unsigned 64-bit integer using the pow2 operation. The input value to be shifted is assumed to be represented using 32-bit limbs. The shift value should be in the range [0, 64), otherwise it will result in an error. The stack transition looks as follows: [b, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a << b mod 2^64. This takes 40 cycles.","breadcrumbs":"User Documentation » Miden Standard Library » std::math::u64 » Bitwise operations","id":"84","title":"Bitwise operations"},"85":{"body":"Module std::mem contains a set of utility procedures for working with random access memory. Procedure Description memcopy Copies n words from read_ptr to write_ptr.Stack transition looks as follows:[n, read_ptr, write_ptr, ...] -> [...]Cycles: 15 + 16n pipe_double_words_to_memory Moves an even number of words from the advice stack to memory.Input: [C, B, A, write_ptr, end_ptr, ...]Output: [C, B, A, write_ptr, ...]Where:- The words C, B, and A are the RPO hasher state- A is the capacity- C, B are the rate portion of the state- The value num_words = end_ptr - write_ptr must be positive and evenCycles: 10 + 9 * num_words / 2 pipe_words_to_memory Moves an arbitrary number of words from the advice stack to memory.Input: [num_words, write_ptr, ...]Output: [HASH, write_ptr', ...]Where HASH is the sequential RPO hash of all copied words.Cycles:- Even num_words: 48 + 9 * num_words / 2- Odd num_words: 65 + 9 * round_down(num_words / 2) pipe_preimage_to_memory Moves an arbitrary number of words from the advice stack to memory and asserts it matches the commitment.Input: [num_words, write_ptr, COM, ...]Output: [write_ptr', ...]Cycles:- Even num_words: 58 + 9 * num_words / 2 - Odd num_words: 75 + 9 * round_down(num_words / 2)","breadcrumbs":"User Documentation » Miden Standard Library » std::mem » Memory procedures","id":"85","title":"Memory procedures"},"86":{"body":"Module std::sys contains a set of system-level utility procedures. Procedure Description truncate_stack Removes elements deep in the stack until the depth of the stack is exactly 16. The elements are removed in such a way that the top 16 elements of the stack remain unchanged. If the stack would otherwise contain more than 16 elements at the end of execution, then adding a call to this function at the end will reduce the size of the public inputs that are shared with the verifier.Input: Stack with 16 or more elements. Output: Stack with only the original top 16 elements.","breadcrumbs":"User Documentation » Miden Standard Library » std:sys » System procedures","id":"86","title":"System procedures"},"87":{"body":"In the following sections, we provide in-depth descriptions of Miden VM internals, including all AIR constraints for the proving system. We also provide rationale for making specific design choices. Throughout these sections we adopt the following notations and assumptions: All arithmetic operations, unless noted otherwise, are assumed to be in a prime field with modulus p=264−232+1. A binary value means a field element which is either 0 or 1. We use lowercase letters to refer to individual field elements (e.g., a), and uppercase letters to refer to groups of 4 elements, also referred to as words (e.g., A). To refer to individual elements within a word, we use numerical subscripts. For example, a0 is the first element of word A, b3 is the last element of word B, etc. When describing AIR constraints: For a column x, we denote the value in the current row simply as x, and the value in the next row of the column as x′. Thus, all transition constraints for Miden VM work with two consecutive rows of the execution trace. For multiset equality constraints, we denote random values sent by the verifier after the prover commits to the main execution trace as α0,α1,α2 etc. To differentiate constraints from other formulas, we frequently use the following format for constraint equations. x′−(x+y)=0 | degree=1 In the above, the constraint equation is followed by the implied algebraic degree of the constraint. This degree is determined by the number of multiplications between trace columns. If a constraint does not involve any multiplications between columns, its degree is 1. If a constraint involves multiplication between two columns, its degree is 2. If we need to multiply three columns together, the degree is 3 ect. The maximum allowed constraint degree in Miden VM is 9. If a constraint degree grows beyond that, we frequently need to introduce additional columns to reduce the degree.","breadcrumbs":"Design » Design","id":"87","title":"Design"},"88":{"body":"Miden VM consists of several interconnected components, each providing a specific set of functionality. These components are: System , which is responsible for managing system data, including the current VM cycle (clk), the free memory pointer (fmp) used for specifying the region of memory available to procedure locals, and the current and parent execution contexts. Program decoder , which is responsible for computing a commitment to the executing program and converting the program into a sequence of operations executed by the VM. Operand stack , which is a push-down stack which provides operands for all operations executed by the VM. Range checker , which is responsible for providing 16-bit range checks needed by other components. Chiplets , which is a set of specialized circuits used to accelerate commonly-used complex computations. Currently, the VM relies on 4 chiplets: Hash chiplet, used to compute Rescue Prime Optimized hashes both for sequential hashing and for Merkle tree hashing. Bitwise chiplet, used to compute bitwise operations (e.g., AND, XOR) over 32-bit integers. Memory chiplet, used to support random-access memory in the VM. Kernel ROM chiplet, used to enable calling predefined kernel procedures which are provided before execution begins. The above components are connected via buses , which are implemented using multiset checks . We also use multiset checks internally within components to describe virtual tables .","breadcrumbs":"Design » VM components","id":"88","title":"VM components"},"89":{"body":"The execution trace of Miden VM consists of 71 main trace columns, 2 buses, and 5 virtual tables, as shown in the diagram below. vm_trace.png As can be seen from the above, the system, decoder, stack, and range checker components use dedicated sets of columns, while all chiplets share the same 17 columns. To differentiate between chiplets, we use a set of binary selector columns, a combination of which uniquely identifies each chiplet. The system component does not yet have a dedicated documentation section, since the design is likely to change. However, the following two columns are not expected to change: clk which is used to keep track of the current VM cycle. Values in this column start out at 0 and are incremented by 1 with each cycle. fmp which contains the value of the free memory pointer used for specifying the region of memory available to procedure locals. AIR constraints for the fmp column are described in system operations section. For the clk column, the constraints are straightforward: clk′−(clk+1)=0 | degree=1","breadcrumbs":"Design » VM execution trace","id":"89","title":"VM execution trace"},"9":{"body":"For reasons explained here , the VM imposes the restriction that the stack depth cannot be smaller than 16. This has the following effects: When initializing a program with fewer than 16 inputs, the VM will pad the stack with zeros to ensure the depth is 16 at the beginning of execution. If an operation would result in the stack depth dropping below 16, the VM will insert a zero at the deep end of the stack to make sure the depth stays at 16.","breadcrumbs":"Introduction » Overview » Stack depth restrictions","id":"9","title":"Stack depth restrictions"},"90":{"body":"Miden VM consumes programs in a form of a Merkelized Abstract Syntax Tree (MAST). This tree is a binary tree where each node is a code block . The VM starts execution at the root of the tree, and attempts to recursively execute each required block according to its semantics. If the execution of a code block fails, the VM halts at that point and no further blocks are executed. A set of currently available blocks and their execution semantics are described below.","breadcrumbs":"Design » Programs » Programs in Miden VM","id":"90","title":"Programs in Miden VM"},"91":{"body":"","breadcrumbs":"Design » Programs » Code blocks","id":"91","title":"Code blocks"},"92":{"body":"A join block is used to describe sequential execution. When the VM encounters a join block, it executes its left child first, and then executes its right child. join_block A join block must always have two children, and thus, cannot be a leaf node in the tree.","breadcrumbs":"Design » Programs » Join block","id":"92","title":"Join block"},"93":{"body":"A split block is used to describe conditional execution. When the VM encounters a split block, it checks the top of the stack. If the top of the stack is 1, it executes the left child, if the top of the stack is 0, it executes the right child. If the top of the stack is neither 0 nor 1, the execution fails. split_block A split block must always have two children, and thus, cannot be a leaf node in the tree.","breadcrumbs":"Design » Programs » Split block","id":"93","title":"Split block"},"94":{"body":"A loop block is used to describe condition-based iterative execution. When the VM encounters a loop block, it checks the top of the stack. If the top of the stack is 1, it executes the loop body, if the top of the stack is 0, the block is not executed. If the top of the stack is neither 0 nor 1, the execution fails. After the body of the loop is executed, the VM checks the top of the stack again. If the top of the stack is 1, the body is executed again, if the top of the stack is 0, the loop is exited. If the top of the stack is neither 0 nor 1, the execution fails. loop_block A loop block must always have one child, and thus, cannot be a leaf node in the tree.","breadcrumbs":"Design » Programs » Loop block","id":"94","title":"Loop block"},"95":{"body":"A call block is used to describe a function call which is executed in a user context . When the VM encounters a call block, it creates a new user context, then executes a program which hashes to the target specified by the call block in the new context. Thus, in order to execute a call block, the VM must be aware of a program with the specified hash. Otherwise, the execution fails. At the end of the call block, execution returns to the previous context. When executing a call block, the VM does the following: Checks if a syscall is already being executed and fails if so. Sets the depth of the stack to 16. Upon return, checks that the depth of the stack is 16. If so, the original stack depth is restored. Otherwise, an error occurs. call_block A call block does not have any children. Thus, it must be leaf node in the tree.","breadcrumbs":"Design » Programs » Call block","id":"95","title":"Call block"},"96":{"body":"A syscall block is used to describe a function call which is executed in the root context . When the VM encounters a syscall block, it returns to the root context, then executes a program which hashes to the target specified by the syscall block. Thus, in order to execute a syscall block, the VM must be aware of a program with the specified hash, and that program must belong to the kernel against which the code is compiled. Otherwise, the execution fails. At the end of the syscall block, execution returns to the previous context. When executing a syscall block, the VM does the following: Checks if a syscall is already being executed and fails if so. Sets the depth of the stack to 16. Upon return, checks that the depth of the stack is 16. If so, the original stack depth is restored. Otherwise, an error occurs. syscall_block A syscall block does not have any children. Thus, it must be leaf node in the tree.","breadcrumbs":"Design » Programs » Syscall block","id":"96","title":"Syscall block"},"97":{"body":"A span block is used to describe a linear sequence of operations. When the VM encounters a span block, it breaks the sequence of operations into batches and groups according to the following rules: A group is represented by a single field element. Thus, assuming a single operation can be encoded using 7 bits, and assuming we are using a 64-bit field, a single group may encode up to 9 operations or a single immediate value. A batch is a set of groups which can be absorbed by a hash function used by the VM in a single permutation. For example, assuming the hash function can absorb up to 8 field elements in a single permutation, a single batch may contain up to 8 groups. There is no limit on the number of batches contained within a single span. Thus, for example, executing 8 pushes in a row will result in two operation batches as illustrated in the picture below: span_block_creation The first batch will contain 8 groups, with the first group containing 7 PUSH opcodes and 1 NOOP, and the remaining 7 groups containing immediate values for each of the push operations. The reason for the NOOP is explained later in this section. The second batch will contain 2 groups, with the first group containing 1 PUSH opcode and 1 NOOP, and the second group containing the immediate value for the last push operation. If a sequence of operations does not have any operations which carry immediate values, up to 72 operations can fit into a single batch. From the user's perspective, all operations are executed in order, however, the VM may insert occasional NOOPs to ensure proper alignment of all operations in the sequence. Currently, the alignment requirements are as follows: An operation carrying an immediate value cannot be the last operation in a group. Thus, for example, if a PUSH operation is the last operation in a group, the VM will insert a NOOP after it. A span block does not have any children, and thus, must be leaf node in the tree.","breadcrumbs":"Design » Programs » Span block","id":"97","title":"Span block"},"98":{"body":"Consider the following program, where a0,...,ai, b0,...,bj etc. represent individual operations: a_0, ..., a_i\nif.true b_0, ..., b_j\nelse c_0, ..., c_k while.true d_0, ..., d_n end e_0, ..., e_m\nend\nf_0, ..., f_l A MAST for this program would look as follows: mast_of_program Execution of this program would proceed as follows: The VM will start execution at the root of the program which is block B5. Since, B5 is a join block , the VM will attempt to execute block B4 first, and only after that execute block f. Block B4 is also a join block , and thus, the VM will execute block a by executing operations a0,...,ai in sequence, and then execute block B3. Block B3 is a split block , and thus, the VM will pop the value off the top of the stack. If the popped value is 1, operations from block b will be executed in sequence. If the popped value is 0, then the VM will attempt to execute block B2. B2 is a join block , thus, the VM will try to execute block B1 first, and then execute operations from block e. Block B1 is also a join_block , and thus, the VM will first execute all operations in block c, and then will attempt to execute block B0. Block B0 is a loop block, thus, the VM will pop the value off the top of the stack. If the pooped value is 1, the VM will execute the body of the loop defined by block d. If the popped value is 0, the VM will not execute block d and instead will move up the tree executing first block e, then f. If the VM does enter the loop, then after operation dn is executed, the VM will pop the value off the top of the stack again. If the popped value is 1, the VM will execute block d again, and again until the top of the stack becomes 0. Once the top of the stack becomes 0, the VM will exit the loop and will move up the tree executing first block e, then f.","breadcrumbs":"Design » Programs » Program example","id":"98","title":"Program example"},"99":{"body":"Every Miden VM program can be reduced to a unique hash value. Specifically, it is infeasible to find two Miden VM programs with distinct semantics which hash to the same value. Padding a program with NOOPs does not change a program's execution semantics, and thus, programs which differ only in the number and/or placement of NOOPs may hash to the same value, although in most cases padding with NOOP should not affect program hash. To prevent program hash collisions we implement domain separation across the variants of control blocks. We define the domain value to be the opcode of the operation that initializes the control block. Below we denote hash to be an arithmetization-friendly hash function with 4-element output and capable of absorbing 8 elements in a single permutation. The hash domain is specified as the subscript of the hash function and its value is used to populate the second capacity register upon initialization of control block hashing - hashdomain(a,b). The hash of a join block is computed as hashjoin(a,b), where a and b are hashes of the code block being joined. The hash of a split block is computed as hashsplit(a,b), where a is a hash of a code block corresponding to the true branch of execution, and b is a hash of a code block corresponding to the false branch of execution. The hash of a loop block is computed as hashloop(a,0), where a is a hash of a code block corresponding to the loop body. The hash of a call block is computed as hashcall(a,0), where a is a hash of a program of which the VM is aware. The hash of a syscall block is computed as hashsyscall(a,0), where a is a hash of a program belonging to the kernel against which the code was compiled. The hash of a span block is computed as hash(a1,...,ak), where ai is the ith batch of operations in the span block. Each batch of operations is defined as containing 8 field elements, and thus, hashing a k-batch span block requires k absorption steps. In cases when the number of operations is insufficient to fill the last batch entirely, NOOPs are appended to the end of the last batch to ensure that the number of operations in the batch is always equal to 8.","breadcrumbs":"Design » Programs » Program hash computation","id":"99","title":"Program hash computation"}},"length":275,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{"'":{"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"233":{"tf":1.0}}},",":{"0":{",":{"0":{",":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"1":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"224":{"tf":1.0},"234":{"tf":1.0}}},"1":{"df":2,"docs":{"224":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"0":{",":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"1":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"1":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"3":{",":{"4":{",":{"5":{",":{"6":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"2":{"df":2,"docs":{"6":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":2,"docs":{"124":{"tf":1.0},"189":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":2,"docs":{"34":{"tf":1.0},"70":{"tf":1.0}}}},".":{"9":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"1":{"0":{"0":{"1":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.0}}},"1":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":104,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":2.23606797749979},"106":{"tf":4.898979485566356},"109":{"tf":1.0},"110":{"tf":2.8284271247461903},"111":{"tf":5.0990195135927845},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":2.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":2.449489742783178},"120":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":2.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":2.0},"137":{"tf":2.0},"138":{"tf":3.4641016151377544},"139":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"154":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":2.8284271247461903},"227":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":3.605551275463989},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":2.23606797749979},"259":{"tf":1.7320508075688772},"261":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"28":{"tf":4.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":6.928203230275509},"34":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":2.23606797749979},"65":{"tf":2.6457513110645907},"66":{"tf":2.8284271247461903},"70":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"83":{"tf":4.0},"84":{"tf":2.449489742783178},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.0},"98":{"tf":2.0}},"s":{"df":1,"docs":{"239":{"tf":1.0}}},"x":{"7":{"b":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"":{"+":{"df":0,"docs":{},"v":{")":{"2":{"df":1,"docs":{"212":{"tf":1.0}}},"4":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"212":{"tf":1.0}}},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"a":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"r":{"+":{"7":{")":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"+":{"8":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"α":{"4":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"n":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"r":{"+":{"7":{")":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},",":{".":{".":{".":{",":{"df":0,"docs":{},"α":{"3":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"α":{"1":{"df":3,"docs":{"252":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0}},"":{",":{"df":0,"docs":{},"α":{"2":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"→":{"1":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"1":{"+":{"a":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"′":{")":{"df":0,"docs":{},"⋅":{"(":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":0,"docs":{},"−":{"1":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{")":{"=":{"0":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},",":{"0":{",":{"0":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"222":{"tf":1.0},"224":{"tf":1.4142135623730951}}},"1":{",":{"0":{",":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"1":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"222":{"tf":1.0},"224":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951}}},"1":{",":{"0":{"df":2,"docs":{"222":{"tf":1.0},"224":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"224":{"tf":1.0},"234":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"3":{",":{"4":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"6":{"7":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"/":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"7":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"1":{"1":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"138":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"266":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0}}},"1":{"0":{"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"138":{"tf":1.0},"274":{"tf":1.0}}},"2":{"4":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"144":{"tf":1.0}}},"6":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"144":{"tf":1.0}}},"df":9,"docs":{"123":{"tf":1.0},"139":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.4142135623730951},"247":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.0}}},"1":{"0":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"1":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"144":{"tf":1.0}}},"6":{"df":1,"docs":{"144":{"tf":1.0}}},"d":{"b":{"b":{"d":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"2":{"7":{"df":0,"docs":{},"e":{"2":{"6":{"df":0,"docs":{},"e":{"4":{"8":{"b":{"df":0,"docs":{},"e":{"3":{"1":{"9":{"8":{"1":{"3":{"3":{"d":{"df":0,"docs":{},"f":{"8":{"c":{"b":{"df":0,"docs":{},"e":{"d":{"6":{"c":{"5":{"8":{"7":{"5":{"d":{"0":{"df":0,"docs":{},"f":{"b":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.0}}},"2":{",":{"1":{"3":{",":{"1":{"4":{",":{"1":{"5":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"144":{"tf":1.0}}},"2":{"df":1,"docs":{"20":{"tf":1.0}}},"3":{"df":2,"docs":{"36":{"tf":1.0},"63":{"tf":1.0}}},"4":{"df":1,"docs":{"144":{"tf":1.0}}},"6":{"df":1,"docs":{"20":{"tf":1.0}}},"8":{"df":3,"docs":{"20":{"tf":1.0},"266":{"tf":1.0},"68":{"tf":1.0}}},"9":{"df":1,"docs":{"247":{"tf":1.4142135623730951}}},"df":12,"docs":{"123":{"tf":1.0},"139":{"tf":1.0},"187":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"246":{"tf":1.0},"258":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"3":{"5":{"6":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"20":{"tf":1.0}}},"df":2,"docs":{"139":{"tf":1.0},"222":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"204":{"tf":1.0}}}}},"4":{"df":2,"docs":{"139":{"tf":1.0},"20":{"tf":1.0}}},"5":{".":{"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"247":{"tf":1.0}}},"df":7,"docs":{"111":{"tf":1.0},"139":{"tf":1.0},"20":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"53":{"tf":1.0},"85":{"tf":1.0}}},"6":{"3":{"df":1,"docs":{"247":{"tf":1.0}}},"df":54,"docs":{"127":{"tf":2.449489742783178},"128":{"tf":2.23606797749979},"129":{"tf":1.0},"131":{"tf":2.0},"133":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"210":{"tf":2.0},"213":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.0},"23":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":2.23606797749979},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"42":{"tf":2.449489742783178},"45":{"tf":2.0},"52":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":2.23606797749979},"88":{"tf":1.0},"9":{"tf":2.23606797749979},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"85":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}}},"7":{"df":6,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"53":{"tf":1.0},"89":{"tf":1.0}}},"8":{"df":2,"docs":{"139":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"9":{"df":3,"docs":{"128":{"tf":1.0},"139":{"tf":1.0},"53":{"tf":1.0}}},"df":118,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"106":{"tf":4.58257569495584},"109":{"tf":1.0},"110":{"tf":2.449489742783178},"111":{"tf":3.4641016151377544},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":2.23606797749979},"116":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":2.6457513110645907},"120":{"tf":2.0},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":2.23606797749979},"126":{"tf":1.7320508075688772},"129":{"tf":1.4142135623730951},"130":{"tf":2.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"138":{"tf":3.1622776601683795},"139":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":2.0},"148":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":2.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":2.0},"232":{"tf":1.4142135623730951},"233":{"tf":2.6457513110645907},"234":{"tf":4.795831523312719},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"245":{"tf":1.7320508075688772},"247":{"tf":4.47213595499958},"250":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":2.449489742783178},"259":{"tf":1.4142135623730951},"261":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.4142135623730951},"274":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":2.0},"34":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":2.8284271247461903},"53":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"60":{"tf":2.6457513110645907},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":2.0},"68":{"tf":2.23606797749979},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"83":{"tf":3.7416573867739413},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"−":{"b":{"6":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"4":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"4":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{")":{"=":{"0":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{")":{"=":{"0":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"b":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"1":{"6":{")":{"=":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{")":{"=":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"k":{"0":{"df":1,"docs":{"234":{"tf":1.0}}},"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"⋅":{"(":{"2":{"3":{"2":{"df":0,"docs":{},"−":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{")":{"=":{"1":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"δ":{"a":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"1":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{"=":{"1":{"df":2,"docs":{"257":{"tf":1.0},"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"δ":{"c":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"z":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"1":{"6":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{")":{"=":{"0":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"159":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"2":{"'":{"df":1,"docs":{"212":{"tf":1.0}}},".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"5":{"df":0,"docs":{},"x":{"df":1,"docs":{"258":{"tf":1.0}}}},"6":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"7":{"0":{"df":1,"docs":{"247":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"139":{"tf":1.0},"20":{"tf":1.0},"68":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"6":{"df":12,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.4142135623730951},"210":{"tf":1.0},"259":{"tf":1.0},"37":{"tf":1.0}}},"8":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"df":1,"docs":{"139":{"tf":1.0}}},"2":{"0":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}},"df":1,"docs":{"139":{"tf":1.0}}},"3":{"0":{"+":{"3":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"37":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"1":{"df":1,"docs":{"45":{"tf":1.0}}},"2":{"df":16,"docs":{"127":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"246":{"tf":1.0},"258":{"tf":1.7320508075688772},"55":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0}},"−":{"1":{"df":4,"docs":{"170":{"tf":1.0},"44":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"139":{"tf":1.0},"56":{"tf":1.0}}},"4":{".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"20":{"tf":1.0}}},"8":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"3":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"t":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":3,"docs":{"102":{"tf":1.0},"139":{"tf":1.0},"247":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"2":{"6":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":2,"docs":{"211":{"tf":1.7320508075688772},"65":{"tf":1.0}}},"6":{"df":1,"docs":{"258":{"tf":1.0}}},"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"≤":{"2":{"1":{"6":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"139":{"tf":1.0}}},"6":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"1":{"5":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"2":{"6":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"−":{"2":{"3":{"2":{"+":{"1":{"df":5,"docs":{"127":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"253":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"39":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"139":{"tf":1.0}}},"7":{".":{"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"21":{"tf":1.0}}},"df":3,"docs":{"111":{"tf":1.0},"123":{"tf":1.0},"139":{"tf":1.0}}},"8":{"df":3,"docs":{"139":{"tf":1.0},"20":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"df":2,"docs":{"139":{"tf":1.0},"68":{"tf":1.0}}},"^":{"3":{"2":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"82":{"tf":3.0},"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":74,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":1.0},"209":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"266":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":2.0},"51":{"tf":1.4142135623730951},"52":{"tf":2.449489742783178},"53":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":3.3166247903554},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":2.0},"68":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.7320508075688772},"79":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":2.23606797749979},"87":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"'":{"df":1,"docs":{"212":{"tf":1.0}}},".":{"1":{"df":1,"docs":{"21":{"tf":1.0}}},"6":{"df":1,"docs":{"21":{"tf":1.0}}},"7":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"7":{"2":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"139":{"tf":1.0},"20":{"tf":1.0}}},"1":{"0":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}},"df":2,"docs":{"139":{"tf":1.0},"170":{"tf":1.0}}},"2":{"df":31,"docs":{"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":2.23606797749979},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"258":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"58":{"tf":2.0},"65":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":2.8284271247461903},"80":{"tf":2.8284271247461903},"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"88":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"1":{"3":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"140":{"tf":1.0},"58":{"tf":1.0}}},"4":{"df":1,"docs":{"140":{"tf":1.0}}},"5":{"df":2,"docs":{"140":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"140":{"tf":1.0},"58":{"tf":1.0}}},"7":{"df":3,"docs":{"140":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}},"8":{"df":1,"docs":{"140":{"tf":1.0}}},"9":{"df":1,"docs":{"140":{"tf":1.0}}},"df":49,"docs":{"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":2.23606797749979},"111":{"tf":1.0},"113":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"250":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":2.0},"45":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":3.3166247903554},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"66":{"tf":2.23606797749979},"68":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":1,"docs":{"213":{"tf":1.0}}},"r":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"4":{",":{"5":{",":{"6":{",":{"7":{",":{"8":{",":{"9":{",":{"1":{"0":{",":{"1":{"1":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":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":{"186":{"tf":1.0},"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":3,"docs":{"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0}}},"df":0,"docs":{}},".":{"6":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"0":{"4":{"2":{"6":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"140":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"1":{"8":{"5":{"1":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"140":{"tf":1.0}}},"2":{"df":1,"docs":{"140":{"tf":1.0}}},"3":{"df":1,"docs":{"140":{"tf":1.0}}},"4":{"df":3,"docs":{"140":{"tf":1.0},"58":{"tf":1.0},"84":{"tf":1.0}}},"5":{"df":1,"docs":{"140":{"tf":1.0}}},"6":{"df":1,"docs":{"140":{"tf":1.0}}},"7":{"df":3,"docs":{"140":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.7320508075688772}}},"8":{"df":2,"docs":{"141":{"tf":1.0},"85":{"tf":1.0}}},"9":{"df":1,"docs":{"141":{"tf":1.0}}},"]":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":54,"docs":{"104":{"tf":2.0},"105":{"tf":2.0},"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":2.6457513110645907},"116":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"138":{"tf":2.0},"139":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":2.8284271247461903},"166":{"tf":1.7320508075688772},"167":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"200":{"tf":1.0},"202":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":2.0},"209":{"tf":1.7320508075688772},"217":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"247":{"tf":2.23606797749979},"258":{"tf":1.7320508075688772},"269":{"tf":1.0},"31":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":3.3166247903554},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"65":{"tf":1.7320508075688772},"66":{"tf":2.6457513110645907},"72":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}},"n":{"df":2,"docs":{"212":{"tf":1.0},"216":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}}},"5":{",":{"6":{",":{"7":{",":{"8":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":2,"docs":{"141":{"tf":1.0},"39":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"2":{"df":2,"docs":{"141":{"tf":1.0},"20":{"tf":1.0}}},"3":{"df":1,"docs":{"141":{"tf":1.0}}},"4":{"df":1,"docs":{"141":{"tf":1.0}}},"5":{"df":1,"docs":{"141":{"tf":1.0}}},"6":{"df":1,"docs":{"141":{"tf":1.0}}},"7":{"df":2,"docs":{"141":{"tf":1.0},"20":{"tf":1.0}}},"8":{"df":2,"docs":{"141":{"tf":1.0},"85":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"5":{"0":{"df":0,"docs":{},"x":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"141":{"tf":1.0},"58":{"tf":1.0}}},"df":27,"docs":{"113":{"tf":2.0},"116":{"tf":1.4142135623730951},"132":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.0},"142":{"tf":2.0},"143":{"tf":4.0},"144":{"tf":1.0},"200":{"tf":1.0},"222":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.449489742783178},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0}}},"6":{".":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"6":{"c":{"9":{"df":0,"docs":{},"f":{"0":{"3":{"7":{"c":{"7":{"8":{"9":{"3":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"e":{"4":{"1":{"1":{"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":1,"docs":{"141":{"tf":1.0}}},"1":{"df":2,"docs":{"141":{"tf":1.0},"20":{"tf":1.0}}},"2":{"df":1,"docs":{"141":{"tf":1.0}}},"3":{"df":2,"docs":{"141":{"tf":1.0},"52":{"tf":1.0}}},"4":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":23,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"213":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"266":{"tf":1.0},"38":{"tf":1.4142135623730951},"6":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":4.0},"97":{"tf":1.0}}},"5":{"5":{"3":{"5":{"df":3,"docs":{"213":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.0}}},"6":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.0}},"k":{"df":1,"docs":{"213":{"tf":1.0}}}},"6":{"df":2,"docs":{"142":{"tf":1.0},"20":{"tf":1.0}}},"7":{"df":1,"docs":{"20":{"tf":1.0}}},"8":{"df":1,"docs":{"142":{"tf":1.0}}},"9":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}},"df":28,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.7320508075688772},"132":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"142":{"tf":3.1622776601683795},"184":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.7320508075688772},"224":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":2.0},"255":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"77":{"tf":1.4142135623730951}},"x":{"df":1,"docs":{"258":{"tf":1.0}}}},"7":{".":{"7":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"142":{"tf":1.0}}},"1":{"df":1,"docs":{"89":{"tf":1.0}}},"2":{"df":2,"docs":{"142":{"tf":1.0},"97":{"tf":1.0}}},"3":{"df":1,"docs":{"52":{"tf":1.0}}},"4":{"df":1,"docs":{"142":{"tf":1.0}}},"5":{"df":1,"docs":{"85":{"tf":1.0}}},"6":{"df":2,"docs":{"142":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"20":{"tf":1.0}}},"8":{"df":2,"docs":{"142":{"tf":1.0},"20":{"tf":1.0}}},"df":30,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":2.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"126":{"tf":1.0},"138":{"tf":2.6457513110645907},"139":{"tf":5.830951894845301},"140":{"tf":4.123105625617661},"141":{"tf":4.123105625617661},"143":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"240":{"tf":2.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"68":{"tf":1.0},"97":{"tf":1.7320508075688772}}},"8":{",":{"1":{"6":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"9":{",":{"1":{"0":{",":{"1":{"1":{",":{"1":{"2":{",":{"1":{"3":{",":{"1":{"4":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"143":{"tf":1.0},"20":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"2":{"df":1,"docs":{"143":{"tf":1.0}}},"3":{"df":1,"docs":{"143":{"tf":1.0}}},"4":{"df":1,"docs":{"143":{"tf":1.0}}},"5":{"df":2,"docs":{"143":{"tf":1.0},"20":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"143":{"tf":1.0}}},"7":{"df":2,"docs":{"143":{"tf":1.0},"30":{"tf":1.0}}},"8":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"143":{"tf":1.0}}},"9":{"df":2,"docs":{"143":{"tf":1.0},"20":{"tf":1.0}}},"df":45,"docs":{"104":{"tf":2.6457513110645907},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"111":{"tf":3.605551275463989},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":2.0},"121":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"142":{"tf":1.0},"186":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"222":{"tf":1.7320508075688772},"224":{"tf":1.0},"232":{"tf":3.3166247903554},"233":{"tf":1.7320508075688772},"234":{"tf":3.3166247903554},"237":{"tf":1.0},"238":{"tf":2.0},"242":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"246":{"tf":1.7320508075688772},"247":{"tf":1.7320508075688772},"250":{"tf":1.4142135623730951},"252":{"tf":1.0},"258":{"tf":1.0},"29":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"97":{"tf":2.0},"99":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"244":{"tf":1.0}}}},"⋅":{"d":{"df":0,"docs":{},"−":{"1":{"df":2,"docs":{"207":{"tf":1.0},"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"9":{".":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"8":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":2,"docs":{"143":{"tf":1.0},"20":{"tf":1.0}}},"2":{"df":1,"docs":{"143":{"tf":1.0}}},"3":{"df":1,"docs":{"143":{"tf":1.0}}},"4":{"df":2,"docs":{"143":{"tf":1.0},"84":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":1,"docs":{"143":{"tf":1.0}}},"6":{"df":3,"docs":{"144":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0}}},"df":23,"docs":{"105":{"tf":1.0},"111":{"tf":2.23606797749979},"118":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"193":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"247":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"68":{"tf":1.0},"85":{"tf":2.23606797749979},"87":{"tf":1.0},"97":{"tf":1.0}}},"_":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.0}}},"a":{"+":{"1":{"df":1,"docs":{"65":{"tf":1.0}}},"7":{"df":1,"docs":{"116":{"tf":1.0}}},"b":{")":{"df":0,"docs":{},"≥":{"2":{"3":{"2":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"+":{"c":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"173":{"tf":1.0}},"⋅":{"c":{"df":1,"docs":{"177":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"′":{",":{"df":0,"docs":{},"h":{"5":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{",":{"c":{",":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{",":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"/":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":7,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"34":{"tf":1.0},"54":{"tf":2.8284271247461903},"65":{"tf":1.4142135623730951},"70":{"tf":1.0},"87":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"a":{"1":{"1":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"df":1,"docs":{"209":{"tf":1.0}},"":{",":{"a":{"2":{"df":0,"docs":{},"":{",":{"a":{"3":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{".":{"a":{"3":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"←":{"df":0,"docs":{},"−":{"a":{"0":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"df":4,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"54":{"tf":2.8284271247461903},"65":{"tf":1.4142135623730951}},"′":{"df":0,"docs":{},"←":{"df":0,"docs":{},"−":{"a":{"1":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"2":{"df":2,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":1.0}}},"3":{"df":2,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":1.0}}},"<":{"2":{"3":{"2":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":1,"docs":{"57":{"tf":1.0}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"53":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}},"=":{"0":{"df":4,"docs":{"165":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}}},"1":{"df":1,"docs":{"51":{"tf":1.0}}},"4":{"1":{"8":{"5":{"1":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":2,"docs":{"164":{"tf":1.0},"51":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"∑":{"df":0,"docs":{},"i":{"=":{"0":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},">":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"6":{"3":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":4,"docs":{"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0}}}},"i":{"df":1,"docs":{"98":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":4,"docs":{"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":95,"docs":{"104":{"tf":1.0},"106":{"tf":3.1622776601683795},"107":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":2.0},"113":{"tf":1.0},"116":{"tf":3.1622776601683795},"117":{"tf":1.7320508075688772},"118":{"tf":2.23606797749979},"120":{"tf":2.0},"122":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":2.23606797749979},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"138":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":2.23606797749979},"207":{"tf":2.0},"208":{"tf":2.0},"212":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":3.1622776601683795},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":2.23606797749979},"255":{"tf":1.7320508075688772},"256":{"tf":2.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.4142135623730951},"272":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"p":{"df":3,"docs":{"232":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"62":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.7320508075688772},"74":{"tf":1.0}}}}},"r":{"b":{"df":15,"docs":{"104":{"tf":2.23606797749979},"106":{"tf":1.0},"111":{"tf":2.6457513110645907},"115":{"tf":1.4142135623730951},"116":{"tf":2.23606797749979},"232":{"tf":2.0},"233":{"tf":1.0},"238":{"tf":2.0},"239":{"tf":2.0},"240":{"tf":2.0},"243":{"tf":1.7320508075688772},"244":{"tf":1.4142135623730951},"245":{"tf":2.0},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"116":{"tf":2.0},"99":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":1,"docs":{"166":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"15":{"tf":2.23606797749979},"220":{"tf":1.0},"88":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":32,"docs":{"116":{"tf":1.7320508075688772},"127":{"tf":1.0},"199":{"tf":2.449489742783178},"2":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"220":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.7320508075688772},"260":{"tf":1.0},"263":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":2.449489742783178},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":2.0},"72":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"257":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":15,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"259":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}}}},"r":{"d":{"df":7,"docs":{"100":{"tf":1.0},"104":{"tf":1.7320508075688772},"113":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"247":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":15,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"210":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"35":{"tf":2.23606797749979},"69":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"227":{"tf":3.0}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"231":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"105":{"tf":1.0},"111":{"tf":1.4142135623730951},"213":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{".":{"1":{"df":1,"docs":{"23":{"tf":1.0}}},"b":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":34,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":3.605551275463989},"110":{"tf":2.0},"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.449489742783178},"126":{"tf":2.23606797749979},"130":{"tf":1.7320508075688772},"140":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.7320508075688772},"2":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.7320508075688772},"23":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.0},"248":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"265":{"tf":1.0},"38":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":38,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"2":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"259":{"tf":1.0},"38":{"tf":1.4142135623730951},"48":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"133":{"tf":1.0},"221":{"tf":1.0},"255":{"tf":1.0},"271":{"tf":1.0},"45":{"tf":1.0}}}}}}},"r":{"=":{"0":{"df":1,"docs":{"264":{"tf":1.0}}},"1":{"df":1,"docs":{"264":{"tf":1.0}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"262":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"111":{"tf":2.23606797749979},"223":{"tf":1.0},"254":{"tf":2.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"261":{"tf":1.7320508075688772},"262":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":46,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"106":{"tf":3.3166247903554},"111":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":3.1622776601683795},"118":{"tf":1.4142135623730951},"121":{"tf":2.0},"126":{"tf":2.0},"128":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"17":{"tf":1.0},"200":{"tf":2.0},"201":{"tf":2.0},"202":{"tf":2.0},"203":{"tf":2.0},"204":{"tf":1.7320508075688772},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"253":{"tf":1.7320508075688772},"254":{"tf":2.23606797749979},"255":{"tf":2.449489742783178},"256":{"tf":2.8284271247461903},"257":{"tf":2.6457513110645907},"258":{"tf":3.3166247903554},"259":{"tf":2.6457513110645907},"261":{"tf":1.0},"264":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"44":{"tf":2.6457513110645907},"45":{"tf":2.0},"6":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":3.4641016151377544},"77":{"tf":1.0}}}}},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{")":{"=":{"0":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":25,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":2.8284271247461903},"112":{"tf":1.7320508075688772},"117":{"tf":3.1622776601683795},"118":{"tf":3.3166247903554},"126":{"tf":2.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"213":{"tf":1.0},"221":{"tf":1.4142135623730951},"247":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"6":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.0},"223":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"127":{"tf":1.0},"138":{"tf":1.0},"241":{"tf":1.0},"87":{"tf":1.0}}}}},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"6":{"4":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"w":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"65":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"4":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"65":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"100":{"tf":1.0},"150":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"21":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":15,"docs":{"10":{"tf":3.1622776601683795},"17":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"207":{"tf":1.0},"6":{"tf":2.6457513110645907},"62":{"tf":2.449489742783178},"65":{"tf":4.898979485566356},"68":{"tf":2.23606797749979},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"8":{"tf":2.0},"85":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"[":{"df":0,"docs":{},"k":{"]":{"df":0,"docs":{},"←":{"[":{"a":{",":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"141":{"tf":1.0},"197":{"tf":2.0}},"w":{"df":2,"docs":{"139":{"tf":1.0},"198":{"tf":2.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"137":{"tf":1.4142135623730951},"203":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"106":{"tf":1.0},"110":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":1.0},"219":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"265":{"tf":1.0},"45":{"tf":2.0},"49":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"t":{"df":21,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":1.0},"16":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0},"231":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"68":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":6,"docs":{"166":{"tf":1.0},"224":{"tf":1.0},"246":{"tf":1.4142135623730951},"247":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":2.23606797749979}}}}}},"o":{"df":1,"docs":{"31":{"tf":1.0}}}},"i":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":2,"docs":{"250":{"tf":1.4142135623730951},"99":{"tf":1.0}},"r":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":20,"docs":{"113":{"tf":1.7320508075688772},"116":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"248":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"4":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"":{"<":{"2":{"3":{"2":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"∀":{"df":0,"docs":{},"i":{"df":0,"docs":{},"∈":{"df":0,"docs":{},"{":{"0":{",":{"1":{",":{"2":{",":{"3":{"df":0,"docs":{},"}":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":1,"docs":{"274":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"222":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"128":{"tf":1.0},"254":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":14,"docs":{"111":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.0},"213":{"tf":2.0},"221":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.4142135623730951},"248":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"40":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}},"g":{"df":2,"docs":{"17":{"tf":1.0},"29":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"0":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"123":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":7,"docs":{"116":{"tf":1.0},"17":{"tf":1.0},"227":{"tf":1.0},"245":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":22,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"209":{"tf":1.0},"221":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.4142135623730951},"260":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}}},"d":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"258":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"69":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"129":{"tf":1.0},"268":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}},"z":{"df":1,"docs":{"16":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"d":{"(":{"a":{",":{"b":{")":{"=":{"3":{"3":{"1":{"3":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"⋅":{"b":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"65":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"170":{"tf":1.0},"211":{"tf":1.4142135623730951},"221":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0},"36":{"tf":1.0},"62":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"221":{"tf":1.0},"246":{"tf":1.0},"74":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":3,"docs":{"15":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772}},"i":{"c":{"df":6,"docs":{"1":{"tf":1.0},"113":{"tf":1.0},"15":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0}}},"df":20,"docs":{"113":{"tf":1.0},"121":{"tf":1.0},"135":{"tf":1.0},"19":{"tf":1.0},"206":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":2.0},"226":{"tf":1.0},"227":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"255":{"tf":1.0},"262":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":2.0},"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"111":{"tf":1.0},"209":{"tf":1.0},"251":{"tf":1.0}}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"2":{"tf":1.0},"216":{"tf":1.0},"243":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"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":3,"docs":{"23":{"tf":1.0},"265":{"tf":1.0},"270":{"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":10,"docs":{"155":{"tf":1.0},"2":{"tf":1.0},"274":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"52":{"tf":1.0},"57":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"45":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}}},"y":{"df":2,"docs":{"10":{"tf":1.0},"17":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":27,"docs":{"16":{"tf":2.449489742783178},"2":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":3.605551275463989},"35":{"tf":3.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"46":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772}},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"51":{"tf":1.0}},"w":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":5,"docs":{"140":{"tf":1.0},"151":{"tf":1.7320508075688772},"28":{"tf":1.0},"51":{"tf":1.4142135623730951},"85":{"tf":1.0}},"z":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"257":{"tf":1.0},"44":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":50,"docs":{"113":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"211":{"tf":1.0},"246":{"tf":1.4142135623730951},"258":{"tf":1.0},"268":{"tf":1.0},"34":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":3.0},"83":{"tf":3.1622776601683795},"84":{"tf":2.6457513110645907},"87":{"tf":1.0},"97":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"274":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":3.0},"111":{"tf":1.0},"129":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"104":{"tf":1.0},"115":{"tf":1.0},"22":{"tf":1.4142135623730951},"26":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"66":{"tf":1.7320508075688772},"69":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"95":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}},"y":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"′":{",":{"a":{",":{"0":{"df":1,"docs":{"117":{"tf":2.0}}},"1":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{",":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"=":{"1":{"6":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"∑":{"df":0,"docs":{},"i":{"=":{"0":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"←":{"a":{"+":{"2":{"df":2,"docs":{"65":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"q":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"−":{"a":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":2,"docs":{"256":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":2,"docs":{"254":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"257":{"tf":1.0},"258":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"←":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"4":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"→":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"−":{"b":{"df":1,"docs":{"175":{"tf":1.0}}},"c":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"≤":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}},"≥":{"2":{"3":{"2":{"df":3,"docs":{"56":{"tf":1.4142135623730951},"58":{"tf":3.3166247903554},"66":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}},"⊕":{"b":{"df":0,"docs":{},"→":{"df":0,"docs":{},"z":{"df":1,"docs":{"246":{"tf":1.0}}}}},"df":0,"docs":{}},"⋅":{"b":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"":{"=":{"0":{"df":1,"docs":{"51":{"tf":1.0}}},"1":{"df":1,"docs":{"51":{"tf":1.0}}},"b":{"df":1,"docs":{"51":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{",":{"c":{")":{"df":0,"docs":{},"←":{"a":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"0":{"df":11,"docs":{"112":{"tf":2.8284271247461903},"128":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.4142135623730951},"196":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"54":{"tf":2.0},"65":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}},"":{",":{".":{".":{".":{",":{"b":{"1":{"1":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":2,"docs":{"103":{"tf":1.0},"138":{"tf":1.0}}},"df":0,"docs":{},"j":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"1":{"df":0,"docs":{},"":{",":{"b":{"2":{"df":0,"docs":{},"":{",":{"b":{"3":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{".":{"b":{"3":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"1":{"6":{"df":3,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"6":{"1":{"df":4,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"":{"=":{"1":{"6":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"′":{"df":0,"docs":{},"":{"=":{"b":{"0":{"df":1,"docs":{"134":{"tf":1.0}},"":{"+":{"1":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"1":{"_":{"0":{"1":{"1":{"0":{"_":{"1":{"0":{"1":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"247":{"tf":1.0}}},"1":{"_":{"1":{"1":{"0":{"1":{"_":{"1":{"1":{"1":{"0":{"_":{"1":{"0":{"1":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"_":{"0":{"0":{"1":{"1":{"_":{"0":{"1":{"1":{"1":{"_":{"1":{"0":{"1":{"1":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"112":{"tf":3.0},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"138":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"54":{"tf":2.0},"65":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}},"":{",":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{",":{"b":{"1":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":2,"docs":{"128":{"tf":1.0},"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":5,"docs":{"112":{"tf":3.1622776601683795},"138":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"98":{"tf":1.4142135623730951}},"−":{"b":{"=":{"0":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":8,"docs":{"112":{"tf":3.0},"138":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"4":{"df":3,"docs":{"112":{"tf":2.0},"138":{"tf":1.0},"98":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":3,"docs":{"138":{"tf":1.0},"144":{"tf":1.0},"98":{"tf":1.4142135623730951}},"":{"=":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"144":{"tf":1.0}},"":{"=":{"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"5":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"4":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"4":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"5":{"df":1,"docs":{"138":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"b":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"=":{"0":{"df":3,"docs":{"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":2.449489742783178}}},"1":{"df":1,"docs":{"165":{"tf":1.0}}},"4":{"0":{"4":{"2":{"6":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"∑":{"df":0,"docs":{},"i":{"=":{"0":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},">":{"3":{"1":{"df":1,"docs":{"58":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"82":{"tf":3.872983346207417},"83":{"tf":4.0},"84":{"tf":1.7320508075688772}}}},"j":{"df":1,"docs":{"98":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"82":{"tf":3.872983346207417},"83":{"tf":4.0},"84":{"tf":1.7320508075688772}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"104":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"152":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"271":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"260":{"tf":1.0},"274":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"23":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"45":{"tf":1.0}}},"df":1,"docs":{"45":{"tf":3.0}}},"s":{"df":0,"docs":{},"e":{"df":20,"docs":{"0":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"113":{"tf":1.0},"124":{"tf":1.0},"147":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"259":{"tf":1.0},"274":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"49":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"126":{"tf":1.0},"2":{"tf":1.0},"242":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":19,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":3.1622776601683795},"106":{"tf":3.1622776601683795},"111":{"tf":5.916079783099616},"115":{"tf":2.449489742783178},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"121":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":4.242640687119285},"126":{"tf":2.8284271247461903},"253":{"tf":1.0},"258":{"tf":1.4142135623730951},"6":{"tf":1.0},"62":{"tf":1.0},"97":{"tf":2.8284271247461903},"99":{"tf":2.449489742783178}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}}},"z":{"df":1,"docs":{"45":{"tf":3.0}}}},"c":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"1":{"df":1,"docs":{"125":{"tf":1.0}}},"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":13,"docs":{"104":{"tf":2.449489742783178},"116":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":2.449489742783178},"233":{"tf":2.0},"245":{"tf":3.3166247903554},"259":{"tf":1.7320508075688772},"261":{"tf":1.0},"273":{"tf":1.0}},"′":{"df":0,"docs":{},"":{"=":{"b":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"116":{"tf":1.0},"245":{"tf":1.0},"263":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"+":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"263":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"263":{"tf":1.0}}},"v":{"a":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"245":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"245":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"259":{"tf":1.0}}}}},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"=":{"b":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"":{"=":{"b":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"=":{"b":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"206":{"tf":1.0},"207":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}},"i":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"b":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":57,"docs":{"100":{"tf":1.0},"106":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"198":{"tf":1.0},"23":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":2.0},"247":{"tf":2.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.0},"266":{"tf":1.7320508075688772},"271":{"tf":2.6457513110645907},"34":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":4.123105625617661},"53":{"tf":3.3166247903554},"56":{"tf":2.449489742783178},"57":{"tf":5.830951894845301},"58":{"tf":5.656854249492381},"59":{"tf":4.0},"60":{"tf":2.449489742783178},"61":{"tf":2.0},"63":{"tf":2.23606797749979},"64":{"tf":1.4142135623730951},"65":{"tf":2.449489742783178},"66":{"tf":1.0},"68":{"tf":2.0},"70":{"tf":1.0},"82":{"tf":4.123105625617661},"83":{"tf":4.47213595499958},"84":{"tf":4.0},"85":{"tf":2.0},"87":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":8,"docs":{"110":{"tf":1.0},"131":{"tf":1.0},"17":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"8":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":20,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"122":{"tf":1.0},"148":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"209":{"tf":1.0},"258":{"tf":1.0},"27":{"tf":1.0},"42":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":19,"docs":{"101":{"tf":1.0},"106":{"tf":2.8284271247461903},"11":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"17":{"tf":1.0},"222":{"tf":1.0},"234":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"33":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"66":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"122":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.0},"45":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"243":{"tf":1.0},"244":{"tf":1.0},"257":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"121":{"tf":1.0},"137":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"7":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"96":{"tf":1.0},"99":{"tf":1.0}}}},"w":{"df":115,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":2.6457513110645907},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.23606797749979},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":2.23606797749979},"208":{"tf":2.449489742783178},"209":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"246":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":2.0},"27":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"274":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"1":{"tf":1.0},"8":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"212":{"tf":1.0},"3":{"tf":1.7320508075688772},"45":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":46,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"213":{"tf":2.449489742783178},"222":{"tf":1.0},"223":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":2.0},"257":{"tf":2.6457513110645907},"258":{"tf":2.449489742783178},"259":{"tf":1.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}}}},"h":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"+":{"df":0,"docs":{},"α":{"7":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"4":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"114":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"111":{"tf":1.0},"250":{"tf":1.4142135623730951}},"g":{"df":2,"docs":{"138":{"tf":1.0},"224":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":47,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"111":{"tf":1.0},"114":{"tf":1.4142135623730951},"120":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"259":{"tf":1.0},"262":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"58":{"tf":2.0},"70":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"d":{"df":2,"docs":{"100":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":63,"docs":{"100":{"tf":1.0},"111":{"tf":2.0},"116":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":3.1622776601683795},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":2.449489742783178},"171":{"tf":2.0},"172":{"tf":1.7320508075688772},"173":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":2.0},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":1.4142135623730951},"213":{"tf":2.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0},"224":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.7320508075688772},"246":{"tf":3.0},"247":{"tf":2.8284271247461903},"250":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"255":{"tf":2.23606797749979},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":2.23606797749979},"266":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"58":{"tf":3.1622776601683795},"6":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":2.23606797749979},"80":{"tf":2.23606797749979},"81":{"tf":2.449489742783178},"82":{"tf":5.477225575051661},"83":{"tf":6.0},"84":{"tf":4.358898943540674},"88":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":19,"docs":{"116":{"tf":1.0},"179":{"tf":2.0},"180":{"tf":2.0},"2":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.4142135623730951},"246":{"tf":2.8284271247461903},"247":{"tf":1.7320508075688772},"248":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":2.449489742783178},"273":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"81":{"tf":1.0},"84":{"tf":2.0},"88":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"3":{"df":3,"docs":{"19":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"+":{"8":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"106":{"tf":5.385164807134504},"111":{"tf":2.449489742783178}}},"o":{"c":{"df":0,"docs":{},"k":{"'":{"df":5,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":2.449489742783178},"115":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":1,"docs":{"118":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"33":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":45,"docs":{"100":{"tf":1.0},"101":{"tf":3.1622776601683795},"102":{"tf":1.0},"103":{"tf":2.23606797749979},"104":{"tf":1.4142135623730951},"105":{"tf":6.164414002968976},"106":{"tf":6.0},"107":{"tf":3.0},"108":{"tf":2.8284271247461903},"109":{"tf":2.6457513110645907},"110":{"tf":3.4641016151377544},"111":{"tf":5.291502622129181},"112":{"tf":5.656854249492381},"113":{"tf":1.7320508075688772},"114":{"tf":2.0},"115":{"tf":3.3166247903554},"116":{"tf":2.449489742783178},"117":{"tf":5.0},"118":{"tf":5.291502622129181},"119":{"tf":2.449489742783178},"121":{"tf":2.0},"122":{"tf":2.449489742783178},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"147":{"tf":1.0},"229":{"tf":1.4142135623730951},"233":{"tf":1.0},"237":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"48":{"tf":1.4142135623730951},"90":{"tf":2.23606797749979},"91":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":2.0},"94":{"tf":2.23606797749979},"95":{"tf":2.8284271247461903},"96":{"tf":2.8284271247461903},"97":{"tf":2.0},"98":{"tf":5.0},"99":{"tf":3.872983346207417}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":10,"docs":{"105":{"tf":1.0},"106":{"tf":2.23606797749979},"110":{"tf":2.6457513110645907},"118":{"tf":2.0},"39":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":2.0},"94":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":34,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":2.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"124":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"172":{"tf":1.0},"19":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.4142135623730951},"23":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.7320508075688772},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"39":{"tf":1.0},"44":{"tf":1.4142135623730951},"47":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"107":{"tf":1.0},"113":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"267":{"tf":1.0},"271":{"tf":1.0}}}}},"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":5,"docs":{"232":{"tf":1.7320508075688772},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"106":{"tf":1.0},"109":{"tf":2.0},"118":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":5,"docs":{"169":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.7320508075688772},"273":{"tf":1.0}},"e":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"=":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"z":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"1":{"tf":1.0},"23":{"tf":1.0},"257":{"tf":1.0},"33":{"tf":1.0},"97":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":2.449489742783178},"3":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"244":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"213":{"tf":2.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"265":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}}}},"u":{"df":25,"docs":{"104":{"tf":1.0},"116":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.23606797749979},"224":{"tf":1.0},"228":{"tf":2.0},"229":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"252":{"tf":2.0},"259":{"tf":1.7320508075688772},"261":{"tf":1.0},"263":{"tf":2.23606797749979},"265":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951}},"g":{"df":1,"docs":{"1":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"13":{"tf":2.0},"16":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"270":{"tf":1.0},"273":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"35":{"tf":1.4142135623730951},"63":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":2.0},"80":{"tf":2.0}}}}},"}":{"df":0,"docs":{},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"′":{"=":{"1":{"6":{"df":0,"docs":{},"⋅":{"b":{"+":{"df":0,"docs":{},"∑":{"df":0,"docs":{},"i":{"=":{"0":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"=":{"b":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"b":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"←":{"(":{"a":{"+":{"1":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"159":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"¬":{"a":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"−":{"a":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"−":{"a":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"a":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"−":{"1":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"{":{"1":{",":{"0":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"53":{"tf":1.0},"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"−":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"−":{"d":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"≥":{"2":{"3":{"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{",":{"d":{")":{"df":0,"docs":{},"←":{"a":{"+":{"b":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}},"/":{"b":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}},"⋅":{"b":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"54":{"tf":2.0}},"":{",":{"c":{"1":{"df":0,"docs":{},"":{",":{"c":{"2":{"df":2,"docs":{"103":{"tf":1.0},"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"←":{"(":{"a":{"0":{"+":{"b":{"0":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{"0":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"∗":{"b":{"0":{")":{"df":0,"docs":{},"−":{"2":{"df":0,"docs":{},"∗":{"(":{"a":{"1":{"df":0,"docs":{},"∗":{"b":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"54":{"tf":2.0}},"←":{"(":{"a":{"0":{"+":{"a":{"1":{")":{"df":0,"docs":{},"∗":{"(":{"b":{"0":{"+":{"b":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"+":{"b":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"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":{}}},"=":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178}}}}},"1":{"df":4,"docs":{"164":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178}}},"c":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"c":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},">":{"1":{"df":1,"docs":{"61":{"tf":2.0}}},"df":0,"docs":{}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":3,"docs":{"82":{"tf":3.4641016151377544},"83":{"tf":2.0},"84":{"tf":3.0}}}},"k":{"df":1,"docs":{"98":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":3,"docs":{"82":{"tf":3.4641016151377544},"83":{"tf":2.0},"84":{"tf":3.0}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"116":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}}}},"df":0,"docs":{},"l":{".":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":27,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.7320508075688772},"144":{"tf":1.0},"2":{"tf":1.7320508075688772},"211":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.7320508075688772},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"42":{"tf":2.8284271247461903},"43":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":3.0},"96":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":2,"docs":{"257":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772}},"r":{"'":{"df":1,"docs":{"42":{"tf":1.0}}},"df":6,"docs":{"139":{"tf":1.0},"257":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.7320508075688772},"64":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"129":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"c":{"df":11,"docs":{"104":{"tf":1.0},"116":{"tf":1.7320508075688772},"206":{"tf":1.0},"233":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"244":{"tf":1.0},"68":{"tf":1.0},"85":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"212":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"111":{"tf":1.0},"173":{"tf":1.0},"195":{"tf":1.0},"244":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":32,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"177":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.4142135623730951},"233":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"34":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"65":{"tf":2.0},"81":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":2.0}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}},"w":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":37,"docs":{"106":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"164":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"198":{"tf":1.0},"23":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":2.8284271247461903},"53":{"tf":2.6457513110645907},"56":{"tf":1.0},"57":{"tf":4.358898943540674},"58":{"tf":4.242640687119285},"59":{"tf":3.7416573867739413},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.7320508075688772},"77":{"tf":1.0},"82":{"tf":3.605551275463989},"83":{"tf":5.656854249492381},"84":{"tf":2.8284271247461903},"85":{"tf":2.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"113":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":2.23606797749979}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"1":{"df":1,"docs":{"118":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"118":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"118":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"209":{"tf":1.0},"77":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":57,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"111":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"127":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"198":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"223":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772},"257":{"tf":2.6457513110645907},"258":{"tf":2.449489742783178},"259":{"tf":2.8284271247461903},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"264":{"tf":1.0},"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.0},"89":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"17":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{",":{"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"":{",":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"":{",":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":50,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.7320508075688772},"151":{"tf":1.0},"169":{"tf":2.449489742783178},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":2.449489742783178},"211":{"tf":2.8284271247461903},"212":{"tf":1.7320508075688772},"213":{"tf":2.0},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":1.4142135623730951},"219":{"tf":2.23606797749979},"233":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"265":{"tf":2.0},"266":{"tf":1.0},"270":{"tf":1.0},"42":{"tf":1.0},"55":{"tf":1.7320508075688772},"81":{"tf":2.0},"82":{"tf":3.0},"83":{"tf":3.0},"84":{"tf":1.0},"88":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"d":{"d":{"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"82":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"83":{"tf":1.0}},"z":{"df":1,"docs":{"83":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"83":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"169":{"tf":1.0},"217":{"tf":1.0}}},"df":10,"docs":{"169":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"221":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":9,"docs":{"105":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":2.0},"109":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":2.8284271247461903},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":12,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"_":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"221":{"tf":1.0},"226":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.0}}},"df":53,"docs":{"102":{"tf":1.0},"104":{"tf":3.0},"105":{"tf":1.0},"106":{"tf":2.449489742783178},"107":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":4.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":2.0},"205":{"tf":2.0},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"215":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":3.0},"221":{"tf":3.872983346207417},"222":{"tf":3.7416573867739413},"223":{"tf":3.605551275463989},"224":{"tf":2.449489742783178},"225":{"tf":1.0},"226":{"tf":2.8284271247461903},"227":{"tf":2.23606797749979},"228":{"tf":2.6457513110645907},"229":{"tf":2.23606797749979},"230":{"tf":2.8284271247461903},"231":{"tf":2.0},"232":{"tf":2.23606797749979},"233":{"tf":2.6457513110645907},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":3.3166247903554},"246":{"tf":1.0},"249":{"tf":1.0},"252":{"tf":2.0},"253":{"tf":1.0},"259":{"tf":2.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"262":{"tf":2.449489742783178},"263":{"tf":2.0},"264":{"tf":1.7320508075688772},"269":{"tf":2.0},"271":{"tf":1.0},"273":{"tf":2.6457513110645907},"88":{"tf":2.449489742783178},"89":{"tf":1.7320508075688772}},"’":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"4":{"tf":1.0},"7":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"270":{"tf":1.7320508075688772},"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"113":{"tf":1.0},"228":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"245":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"+":{"1":{",":{"df":0,"docs":{},"v":{"2":{",":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"df":0,"docs":{},"v":{"1":{",":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"130":{"tf":1.0},"141":{"tf":1.0},"154":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"245":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.0},"64":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"′":{"df":0,"docs":{},"−":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"+":{"1":{")":{"=":{"0":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":15,"docs":{"130":{"tf":1.4142135623730951},"154":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":2.23606797749979},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"df":25,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"33":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"62":{"tf":1.7320508075688772},"69":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":2.23606797749979}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"104":{"tf":1.0},"118":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"68":{"tf":1.0},"99":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":73,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":4.358898943540674},"106":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.6457513110645907},"113":{"tf":1.4142135623730951},"114":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.23606797749979},"120":{"tf":2.8284271247461903},"121":{"tf":2.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":3.1622776601683795},"128":{"tf":2.8284271247461903},"129":{"tf":3.0},"130":{"tf":2.0},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"169":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"211":{"tf":3.7416573867739413},"212":{"tf":2.23606797749979},"213":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":2.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":3.0},"228":{"tf":2.23606797749979},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":4.123105625617661},"234":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":2.0},"243":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":3.3166247903554},"246":{"tf":4.0},"247":{"tf":3.1622776601683795},"248":{"tf":1.0},"250":{"tf":2.6457513110645907},"251":{"tf":1.4142135623730951},"254":{"tf":3.1622776601683795},"255":{"tf":2.8284271247461903},"256":{"tf":3.0},"257":{"tf":4.0},"258":{"tf":4.358898943540674},"259":{"tf":2.449489742783178},"261":{"tf":2.8284271247461903},"262":{"tf":2.23606797749979},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"266":{"tf":4.242640687119285},"267":{"tf":1.0},"268":{"tf":2.0},"271":{"tf":2.449489742783178},"87":{"tf":2.6457513110645907},"89":{"tf":2.8284271247461903}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":27,"docs":{"116":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"208":{"tf":1.7320508075688772},"213":{"tf":1.0},"217":{"tf":1.0},"224":{"tf":1.7320508075688772},"226":{"tf":1.0},"230":{"tf":1.4142135623730951},"234":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"259":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"89":{"tf":1.0}}}}},"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":6,"docs":{"126":{"tf":1.7320508075688772},"222":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0},"272":{"tf":1.4142135623730951},"3":{"tf":1.0}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"256":{"tf":1.0},"257":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":2.8284271247461903}}}}},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"245":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"77":{"tf":1.7320508075688772},"8":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0},"33":{"tf":1.0},"67":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"69":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":12,"docs":{"116":{"tf":1.7320508075688772},"199":{"tf":1.0},"205":{"tf":1.0},"219":{"tf":1.4142135623730951},"229":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.7320508075688772}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":4,"docs":{"209":{"tf":1.0},"266":{"tf":1.0},"33":{"tf":1.4142135623730951},"83":{"tf":2.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"17":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":3.872983346207417}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":18,"docs":{"13":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":2.0},"2":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":2.0},"38":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"48":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.0},"55":{"tf":1.0}}}}}},"t":{"df":16,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"3":{"tf":1.0}}},"x":{"df":7,"docs":{"102":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"270":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"88":{"tf":1.0}}}},"i":{"df":1,"docs":{"113":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"10":{"tf":1.4142135623730951},"102":{"tf":1.0},"194":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"245":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":2.23606797749979},"271":{"tf":2.23606797749979},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772},"65":{"tf":1.0},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":3,"docs":{"224":{"tf":1.0},"245":{"tf":1.0},"6":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"111":{"tf":1.0},"127":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":94,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":2.8284271247461903},"105":{"tf":2.449489742783178},"106":{"tf":2.0},"107":{"tf":2.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"115":{"tf":2.23606797749979},"116":{"tf":2.23606797749979},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.7320508075688772},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":2.8284271247461903},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":2.449489742783178},"209":{"tf":2.449489742783178},"211":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":2.449489742783178},"224":{"tf":1.0},"228":{"tf":1.4142135623730951},"232":{"tf":3.872983346207417},"233":{"tf":2.6457513110645907},"234":{"tf":2.449489742783178},"235":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"243":{"tf":3.0},"244":{"tf":1.7320508075688772},"245":{"tf":4.242640687119285},"246":{"tf":2.23606797749979},"247":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"268":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":2.449489742783178},"274":{"tf":1.7320508075688772},"47":{"tf":1.0},"58":{"tf":3.1622776601683795},"65":{"tf":1.0},"68":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"88":{"tf":2.0},"99":{"tf":2.6457513110645907}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"247":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":6,"docs":{"232":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":18,"docs":{"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"2":{"tf":1.0},"211":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"245":{"tf":2.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"271":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.0},"49":{"tf":1.4142135623730951},"60":{"tf":2.0},"61":{"tf":1.0},"93":{"tf":1.0},"94":{"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":{"23":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"223":{"tf":2.23606797749979},"262":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"102":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.4142135623730951},"265":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"213":{"tf":1.4142135623730951},"218":{"tf":1.0},"241":{"tf":1.0},"258":{"tf":2.6457513110645907},"77":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"d":{"df":5,"docs":{"101":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"209":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"105":{"tf":2.0},"11":{"tf":1.0},"111":{"tf":1.4142135623730951},"126":{"tf":1.0},"138":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"261":{"tf":1.0},"265":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"32":{"tf":1.0},"38":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.4142135623730951},"81":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}},"t":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"1":{"=":{"3":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"1":{"=":{"1":{"0":{"0":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"=":{"2":{"0":{"0":{"+":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"1":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":3,"docs":{"111":{"tf":1.0},"39":{"tf":2.6457513110645907},"63":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"218":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951}},"t":{"_":{"_":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":130,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":3.3166247903554},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":2.6457513110645907},"117":{"tf":3.0},"118":{"tf":3.0},"119":{"tf":2.0},"120":{"tf":2.449489742783178},"121":{"tf":2.23606797749979},"122":{"tf":2.23606797749979},"123":{"tf":2.23606797749979},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":3.0},"127":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"135":{"tf":2.6457513110645907},"136":{"tf":1.7320508075688772},"137":{"tf":3.872983346207417},"138":{"tf":2.449489742783178},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.23606797749979},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":2.23606797749979},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"178":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"212":{"tf":2.449489742783178},"213":{"tf":2.0},"214":{"tf":1.0},"218":{"tf":2.0},"219":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":3.3166247903554},"225":{"tf":1.0},"226":{"tf":3.0},"227":{"tf":2.23606797749979},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":2.23606797749979},"241":{"tf":1.7320508075688772},"242":{"tf":2.449489742783178},"243":{"tf":3.0},"244":{"tf":2.0},"245":{"tf":4.47213595499958},"246":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":2.0},"251":{"tf":1.7320508075688772},"252":{"tf":2.0},"253":{"tf":1.0},"254":{"tf":2.449489742783178},"255":{"tf":2.0},"256":{"tf":2.6457513110645907},"257":{"tf":2.6457513110645907},"258":{"tf":1.7320508075688772},"259":{"tf":3.4641016151377544},"262":{"tf":2.8284271247461903},"263":{"tf":1.7320508075688772},"264":{"tf":2.449489742783178},"267":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":2.449489742783178},"4":{"tf":1.0},"87":{"tf":3.4641016151377544},"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"35":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":8,"docs":{"122":{"tf":1.0},"126":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"233":{"tf":1.0},"65":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":80,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.0},"105":{"tf":3.7416573867739413},"111":{"tf":2.23606797749979},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"130":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"217":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":1.4142135623730951},"246":{"tf":2.8284271247461903},"247":{"tf":2.23606797749979},"250":{"tf":1.7320508075688772},"255":{"tf":2.0},"256":{"tf":2.0},"257":{"tf":2.23606797749979},"258":{"tf":3.605551275463989},"259":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"43":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":3.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.0},"97":{"tf":2.8284271247461903},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"116":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"258":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"259":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":23,"docs":{"2":{"tf":2.6457513110645907},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":1.0},"257":{"tf":3.3166247903554},"258":{"tf":3.605551275463989},"259":{"tf":2.6457513110645907},"260":{"tf":1.4142135623730951},"3":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":3.7416573867739413},"42":{"tf":2.23606797749979},"43":{"tf":2.0},"44":{"tf":3.0},"45":{"tf":3.7416573867739413},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"88":{"tf":1.0},"95":{"tf":2.0},"96":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":5,"docs":{"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"77":{"tf":1.0}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":27,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":2.449489742783178},"120":{"tf":1.0},"121":{"tf":1.0},"14":{"tf":1.4142135623730951},"143":{"tf":2.0},"144":{"tf":2.449489742783178},"148":{"tf":2.0},"2":{"tf":2.0},"223":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"46":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"7":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"103":{"tf":1.0},"262":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0}}},"t":{"df":2,"docs":{"137":{"tf":1.0},"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"113":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"i":{"df":21,"docs":{"10":{"tf":1.0},"106":{"tf":2.0},"111":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"137":{"tf":1.4142135623730951},"150":{"tf":1.0},"184":{"tf":2.0},"212":{"tf":1.4142135623730951},"234":{"tf":1.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.4142135623730951},"74":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"69":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":22,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"137":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"220":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":19,"docs":{"0":{"tf":1.0},"107":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"166":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"227":{"tf":1.4142135623730951},"230":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"274":{"tf":1.0},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.7320508075688772},"126":{"tf":1.0},"138":{"tf":1.0},"208":{"tf":1.4142135623730951},"228":{"tf":1.0},"246":{"tf":1.4142135623730951},"247":{"tf":1.0},"259":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"266":{"tf":1.0},"48":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":2.0},"122":{"tf":3.1622776601683795},"123":{"tf":2.23606797749979},"124":{"tf":1.4142135623730951},"126":{"tf":2.0},"23":{"tf":2.449489742783178},"48":{"tf":2.0},"58":{"tf":1.4142135623730951},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.0},"150":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"211":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}},"u":{"df":2,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"142":{"tf":1.0},"262":{"tf":1.0},"274":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"257":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":4,"docs":{"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"274":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":7,"docs":{"2":{"tf":1.0},"205":{"tf":2.0},"229":{"tf":1.0},"274":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"140":{"tf":1.0},"192":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.0}},"w":{"df":3,"docs":{"140":{"tf":1.0},"193":{"tf":1.7320508075688772},"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{"0":{"df":1,"docs":{"45":{"tf":2.0}}},"1":{"df":1,"docs":{"45":{"tf":2.23606797749979}}},"2":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}},"df":8,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"257":{"tf":2.23606797749979},"258":{"tf":1.7320508075688772},"259":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":67,"docs":{"1":{"tf":1.0},"103":{"tf":2.0},"105":{"tf":2.23606797749979},"106":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"241":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"259":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"42":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"72":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"255":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":57,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"130":{"tf":1.7320508075688772},"150":{"tf":1.0},"154":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"222":{"tf":2.0},"228":{"tf":1.0},"23":{"tf":2.449489742783178},"231":{"tf":1.0},"232":{"tf":3.4641016151377544},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":2.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":2.0},"259":{"tf":1.0},"265":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":4.242640687119285},"53":{"tf":3.1622776601683795},"54":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951},"56":{"tf":2.6457513110645907},"57":{"tf":5.830951894845301},"58":{"tf":4.58257569495584},"59":{"tf":4.0},"60":{"tf":3.4641016151377544},"61":{"tf":2.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":2.23606797749979},"66":{"tf":3.605551275463989},"68":{"tf":2.8284271247461903},"83":{"tf":1.0},"84":{"tf":2.449489742783178},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{")":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"i":{"c":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"−":{"c":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"257":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"257":{"tf":1.0},"258":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"←":{"(":{"a":{"+":{"b":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"∧":{"b":{"df":2,"docs":{"162":{"tf":1.0},"179":{"tf":1.0}}},"df":0,"docs":{}},"∨":{"b":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"⊕":{"b":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"⋅":{"2":{"b":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"158":{"tf":1.0}},"−":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"+":{"b":{"df":1,"docs":{"57":{"tf":1.0}},"−":{"2":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"⋅":{"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"⋅":{"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"∗":{"b":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"⋅":{"b":{"df":2,"docs":{"52":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{",":{"b":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"{":{"1":{",":{"0":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"53":{"tf":2.6457513110645907},"59":{"tf":3.1622776601683795}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{",":{"b":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"59":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"⌊":{"a":{"/":{"2":{"3":{"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"57":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{",":{"c":{",":{"b":{",":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"e":{")":{"df":0,"docs":{},"←":{"a":{"+":{"b":{"+":{"c":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"c":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"}":{"df":0,"docs":{},"←":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{",":{"b":{",":{"c":{"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":{},"←":{"[":{"a":{"d":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"0":{"df":6,"docs":{"219":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":2.0},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0}}},"1":{"df":6,"docs":{"219":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":2.0},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0}}},"=":{"b":{"=":{"0":{"df":0,"docs":{},"∑":{"6":{"df":0,"docs":{},"":{"(":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"2":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"a":{",":{"b":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"192":{"tf":1.0},"193":{"tf":1.0},"61":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"n":{"df":1,"docs":{"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"77":{"tf":2.0}}}}}}},"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.7320508075688772},"270":{"tf":1.4142135623730951},"272":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"65":{"tf":3.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"8":{"tf":1.0},"88":{"tf":1.0}},"←":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"]":{".":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":21,"docs":{"116":{"tf":1.7320508075688772},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"198":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"57":{"tf":3.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":2.449489742783178},"66":{"tf":1.0},"68":{"tf":2.6457513110645907},"84":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"258":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":4,"docs":{"16":{"tf":1.0},"23":{"tf":2.449489742783178},"24":{"tf":1.0},"3":{"tf":1.4142135623730951}},"g":{"df":3,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":2.23606797749979}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"d":{"df":29,"docs":{"100":{"tf":2.449489742783178},"101":{"tf":1.4142135623730951},"102":{"tf":2.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"111":{"tf":4.123105625617661},"112":{"tf":1.4142135623730951},"113":{"tf":2.449489742783178},"116":{"tf":2.449489742783178},"119":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"138":{"tf":1.0},"147":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"269":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"2":{"df":1,"docs":{"112":{"tf":1.0}}},"4":{"df":1,"docs":{"112":{"tf":1.0}}},"6":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"246":{"tf":1.0},"250":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}}}}}},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"111":{"tf":1.0},"122":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"106":{"tf":1.0},"111":{"tf":2.0},"122":{"tf":2.8284271247461903},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"131":{"tf":1.0},"134":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"44":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":4,"docs":{"127":{"tf":1.0},"6":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"81":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"206":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":57,"docs":{"101":{"tf":1.0},"105":{"tf":1.7320508075688772},"111":{"tf":1.0},"116":{"tf":2.0},"118":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":2.449489742783178},"130":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.4142135623730951},"238":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":2.449489742783178},"252":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"260":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":3.0},"39":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"54":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"19":{"tf":1.0}}}}}}},"g":{"(":{"c":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":28,"docs":{"103":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":3.4641016151377544},"139":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":3.0},"143":{"tf":2.8284271247461903},"144":{"tf":2.0},"183":{"tf":1.0},"209":{"tf":2.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"222":{"tf":2.6457513110645907},"223":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"234":{"tf":1.0},"245":{"tf":1.4142135623730951},"257":{"tf":1.0},"274":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":2.8284271247461903}},"e":{"=":{"1":{"+":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"+":{"4":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":33,"docs":{"118":{"tf":1.4142135623730951},"126":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}},"2":{"+":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"(":{"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":32,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"133":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":2.0},"167":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"199":{"tf":1.0},"218":{"tf":1.4142135623730951},"231":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":2.449489742783178},"251":{"tf":1.4142135623730951},"259":{"tf":2.0},"262":{"tf":1.7320508075688772}},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"1":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"1":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"2":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"+":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"170":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"242":{"tf":1.0},"251":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0}},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"2":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"4":{"+":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"125":{"tf":1.7320508075688772},"142":{"tf":1.0},"147":{"tf":1.0},"231":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0}},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"3":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"5":{"df":17,"docs":{"114":{"tf":2.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"147":{"tf":1.4142135623730951},"169":{"tf":1.0},"208":{"tf":1.0},"227":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"259":{"tf":1.7320508075688772}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"6":{"df":12,"docs":{"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":2.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"259":{"tf":1.4142135623730951}}},"7":{"(":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":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":{"114":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.7320508075688772},"122":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0}}},"8":{"df":3,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0}}},"9":{"df":4,"docs":{"114":{"tf":1.0},"124":{"tf":1.0},"135":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"129":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951}}}},"t":{"a":{"df":5,"docs":{"238":{"tf":1.0},"245":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":2.0},"258":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":22,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"135":{"tf":1.4142135623730951},"138":{"tf":1.0},"170":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"250":{"tf":1.0},"252":{"tf":1.0},"263":{"tf":1.0},"36":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"112":{"tf":1.0},"126":{"tf":1.0},"169":{"tf":1.0},"244":{"tf":1.0},"266":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":30,"docs":{"127":{"tf":2.6457513110645907},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":2.449489742783178},"133":{"tf":1.0},"134":{"tf":2.23606797749979},"150":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":2.23606797749979},"191":{"tf":2.23606797749979},"196":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"239":{"tf":1.0},"4":{"tf":1.4142135623730951},"42":{"tf":2.6457513110645907},"45":{"tf":2.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":2.23606797749979},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":86,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.23606797749979},"105":{"tf":1.7320508075688772},"106":{"tf":2.6457513110645907},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":2.6457513110645907},"113":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"181":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.7320508075688772},"245":{"tf":2.449489742783178},"246":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":40,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"137":{"tf":1.0},"147":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"32":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":11,"docs":{"223":{"tf":1.0},"227":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":2.0},"270":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"r":{"df":3,"docs":{"17":{"tf":1.0},"257":{"tf":1.0},"8":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"2":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"106":{"tf":1.0},"137":{"tf":1.4142135623730951},"16":{"tf":1.0},"209":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"104":{"tf":1.0},"222":{"tf":1.0},"239":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"107":{"tf":1.4142135623730951},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"128":{"tf":1.0},"130":{"tf":1.0},"170":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"239":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":7,"docs":{"2":{"tf":1.0},"22":{"tf":1.0},"255":{"tf":1.0},"274":{"tf":1.0},"32":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":59,"docs":{"106":{"tf":3.872983346207417},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.0},"113":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":23,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":2.23606797749979},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"118":{"tf":1.4142135623730951},"24":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"255":{"tf":1.0},"256":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"36":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"18":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"243":{"tf":1.0},"82":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"137":{"tf":1.4142135623730951},"209":{"tf":1.0},"226":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"23":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":1,"docs":{"52":{"tf":1.4142135623730951}},"i":{"d":{"df":20,"docs":{"104":{"tf":2.449489742783178},"111":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"245":{"tf":1.0},"259":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"39":{"tf":1.4142135623730951},"65":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"n":{"df":1,"docs":{"98":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"220":{"tf":1.0},"226":{"tf":1.0},"32":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"4":{"tf":2.0},"40":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}}}},"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"212":{"tf":1.0},"239":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"264":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"116":{"tf":1.0},"209":{"tf":3.3166247903554},"233":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":6,"docs":{"105":{"tf":1.0},"19":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":23,"docs":{"105":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"116":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"135":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":2.0},"255":{"tf":1.4142135623730951},"259":{"tf":2.0},"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":6,"docs":{"115":{"tf":1.4142135623730951},"127":{"tf":1.0},"138":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":13,"docs":{"113":{"tf":2.449489742783178},"128":{"tf":1.0},"131":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"183":{"tf":2.0},"31":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.7320508075688772},"8":{"tf":1.0},"83":{"tf":2.0},"9":{"tf":1.0}},"w":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"126":{"tf":1.0},"68":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"18":{"tf":1.0}}}},"p":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}}},".":{"0":{"df":1,"docs":{"60":{"tf":1.0}}},"2":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"184":{"tf":1.0}}},"1":{"1":{"df":1,"docs":{"141":{"tf":1.0}}},"3":{"df":1,"docs":{"141":{"tf":1.0}}},"5":{"df":1,"docs":{"141":{"tf":1.0}}},"df":2,"docs":{"137":{"tf":1.0},"141":{"tf":1.0}}},"2":{"df":1,"docs":{"141":{"tf":1.0}}},"3":{"df":1,"docs":{"141":{"tf":1.0}}},"4":{"df":1,"docs":{"141":{"tf":1.0}}},"5":{"df":2,"docs":{"141":{"tf":1.0},"184":{"tf":1.0}}},"6":{"df":1,"docs":{"141":{"tf":1.0}}},"7":{"df":1,"docs":{"141":{"tf":1.0}}},"9":{"df":1,"docs":{"141":{"tf":1.0}}},"df":6,"docs":{"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"184":{"tf":1.0},"23":{"tf":1.0},"60":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"216":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"184":{"tf":1.0}}},"w":{".":{"0":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"60":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":22,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":2.6457513110645907},"239":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}},"←":{"(":{"a":{"+":{"b":{"+":{"c":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"b":{"+":{"c":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{"1":{",":{"0":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"⌊":{"(":{"a":{"df":0,"docs":{},"⋅":{"b":{")":{"/":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{",":{"d":{"]":{"df":0,"docs":{},"←":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"]":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"+":{"1":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"g":{"df":29,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"111":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"2":{"tf":1.0},"210":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.4142135623730951},"8":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"0":{"df":3,"docs":{"138":{"tf":1.7320508075688772},"143":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772}},"":{"df":0,"docs":{},"−":{"b":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"5":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"4":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"1":{"df":3,"docs":{"138":{"tf":1.7320508075688772},"144":{"tf":1.0},"77":{"tf":1.7320508075688772}},"":{"df":0,"docs":{},"−":{"b":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"5":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"{":{"b":{",":{"a":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"192":{"tf":1.0},"193":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":63,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"127":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.7320508075688772},"2":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.7320508075688772},"221":{"tf":1.7320508075688772},"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"226":{"tf":2.23606797749979},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.7320508075688772},"247":{"tf":1.4142135623730951},"251":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"258":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"137":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.4142135623730951},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"33":{"tf":1.0},"7":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":8,"docs":{"239":{"tf":1.0},"240":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":54,"docs":{"106":{"tf":1.0},"113":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"148":{"tf":1.0},"210":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"47":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":1,"docs":{"184":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":96,"docs":{"10":{"tf":2.0},"100":{"tf":1.7320508075688772},"104":{"tf":3.872983346207417},"109":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951},"111":{"tf":2.449489742783178},"113":{"tf":2.449489742783178},"116":{"tf":1.4142135623730951},"127":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":2.23606797749979},"169":{"tf":1.0},"17":{"tf":2.449489742783178},"170":{"tf":2.449489742783178},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"190":{"tf":2.449489742783178},"191":{"tf":2.449489742783178},"192":{"tf":2.0},"193":{"tf":2.23606797749979},"197":{"tf":1.4142135623730951},"198":{"tf":2.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"202":{"tf":1.7320508075688772},"203":{"tf":2.0},"204":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":2.0},"208":{"tf":2.23606797749979},"209":{"tf":3.4641016151377544},"210":{"tf":1.0},"232":{"tf":2.0},"233":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":3.4641016151377544},"239":{"tf":2.449489742783178},"240":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":2.0},"246":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"34":{"tf":2.8284271247461903},"42":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":1.0},"6":{"tf":2.6457513110645907},"60":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":2.449489742783178},"66":{"tf":3.872983346207417},"68":{"tf":1.4142135623730951},"70":{"tf":3.1622776601683795},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"79":{"tf":3.1622776601683795},"8":{"tf":1.4142135623730951},"80":{"tf":3.1622776601683795},"81":{"tf":1.7320508075688772},"86":{"tf":2.449489742783178},"87":{"tf":2.449489742783178},"97":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}}}}},"i":{"df":1,"docs":{"274":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":17,"docs":{"105":{"tf":2.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0},"267":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.4142135623730951},"75":{"tf":2.0},"77":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"3":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":18,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"123":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"170":{"tf":1.4142135623730951},"234":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}}},"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}},"df":57,"docs":{"100":{"tf":1.0},"101":{"tf":4.242640687119285},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":2.23606797749979},"108":{"tf":1.4142135623730951},"110":{"tf":2.449489742783178},"111":{"tf":2.6457513110645907},"112":{"tf":3.605551275463989},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":2.23606797749979},"120":{"tf":2.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"131":{"tf":1.0},"144":{"tf":1.0},"18":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"233":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"271":{"tf":1.0},"37":{"tf":2.23606797749979},"38":{"tf":2.449489742783178},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":2.23606797749979},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"68":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.4142135623730951},"9":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"138":{"tf":1.0},"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":44,"docs":{"113":{"tf":2.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"129":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"223":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":2.23606797749979},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"250":{"tf":2.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"255":{"tf":1.4142135623730951},"259":{"tf":2.0},"260":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"1":{"tf":1.0},"130":{"tf":1.0},"266":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":43,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"150":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.7320508075688772},"234":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.4142135623730951},"248":{"tf":1.0},"251":{"tf":2.23606797749979},"252":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"23":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.0},"118":{"tf":1.0},"150":{"tf":1.0},"227":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"25":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"112":{"tf":2.8284271247461903},"117":{"tf":2.0},"118":{"tf":1.7320508075688772},"17":{"tf":1.0},"233":{"tf":2.0},"245":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}}},"q":{".":{"2":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"140":{"tf":1.0},"164":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"59":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":25,"docs":{"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"151":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":2.0},"267":{"tf":1.0},"34":{"tf":1.0},"55":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":2.449489742783178},"87":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":3,"docs":{"170":{"tf":1.0},"243":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":1,"docs":{"53":{"tf":1.0}}},"z":{"df":2,"docs":{"139":{"tf":1.0},"165":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"110":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"40":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":2.449489742783178},"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"t":{"c":{"df":19,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"212":{"tf":1.0},"232":{"tf":1.4142135623730951},"239":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":1,"docs":{"274":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":6,"docs":{"118":{"tf":1.0},"133":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"19":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":10,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":1.0},"213":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":14,"docs":{"101":{"tf":1.4142135623730951},"121":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"169":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"250":{"tf":1.0},"267":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"86":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":50,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":2.449489742783178},"190":{"tf":1.0},"191":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"254":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"272":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":2.23606797749979},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":11,"docs":{"111":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"230":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"105":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"234":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"42":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":5,"docs":{"113":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"234":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{".":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"37":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":3,"docs":{"23":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951}}}}},"u":{"6":{"4":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"38":{"tf":1.0},"42":{"tf":2.449489742783178},"44":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":121,"docs":{"0":{"tf":2.0},"10":{"tf":1.4142135623730951},"100":{"tf":3.0},"101":{"tf":3.1622776601683795},"102":{"tf":1.4142135623730951},"103":{"tf":2.449489742783178},"105":{"tf":3.3166247903554},"106":{"tf":5.385164807134504},"107":{"tf":1.4142135623730951},"108":{"tf":2.6457513110645907},"109":{"tf":2.23606797749979},"11":{"tf":2.0},"110":{"tf":3.872983346207417},"111":{"tf":4.47213595499958},"112":{"tf":3.605551275463989},"113":{"tf":3.0},"114":{"tf":3.1622776601683795},"115":{"tf":2.0},"116":{"tf":2.6457513110645907},"117":{"tf":3.0},"118":{"tf":3.4641016151377544},"120":{"tf":2.6457513110645907},"121":{"tf":1.4142135623730951},"122":{"tf":2.8284271247461903},"123":{"tf":2.8284271247461903},"124":{"tf":2.0},"125":{"tf":1.4142135623730951},"126":{"tf":2.449489742783178},"127":{"tf":1.7320508075688772},"129":{"tf":1.0},"13":{"tf":2.0},"132":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"148":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":3.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"20":{"tf":2.23606797749979},"209":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"211":{"tf":1.4142135623730951},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":2.0},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":2.0},"232":{"tf":4.242640687119285},"233":{"tf":2.0},"234":{"tf":1.0},"236":{"tf":2.0},"237":{"tf":2.0},"238":{"tf":2.23606797749979},"239":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"240":{"tf":2.6457513110645907},"241":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"260":{"tf":2.0},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":2.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"38":{"tf":2.23606797749979},"41":{"tf":3.3166247903554},"42":{"tf":2.449489742783178},"43":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":4.795831523312719},"46":{"tf":1.0},"47":{"tf":2.23606797749979},"48":{"tf":1.0},"49":{"tf":2.6457513110645907},"50":{"tf":1.0},"55":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"8":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.23606797749979},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":2.23606797749979},"92":{"tf":1.7320508075688772},"93":{"tf":2.0},"94":{"tf":2.6457513110645907},"95":{"tf":2.6457513110645907},"96":{"tf":2.6457513110645907},"97":{"tf":1.4142135623730951},"98":{"tf":4.358898943540674},"99":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"|":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{":":{":":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}},"t":{"df":12,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"147":{"tf":1.0},"24":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.0}}}},"p":{".":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"c":{"df":2,"docs":{"139":{"tf":1.0},"166":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"33":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"166":{"tf":1.7320508075688772},"28":{"tf":1.0},"52":{"tf":1.7320508075688772}},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"1":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"19":{"tf":2.0},"2":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"221":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"38":{"tf":1.0},"50":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":2.8284271247461903},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"265":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"105":{"tf":1.0},"195":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}},"z":{".":{"2":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"38":{"tf":1.0},"40":{"tf":1.0}}}}},"u":{"6":{"4":{":":{":":{"a":{"d":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"38":{"tf":2.6457513110645907},"43":{"tf":1.0}}}},"s":{"df":7,"docs":{"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"132":{"tf":1.0},"137":{"tf":1.0},"199":{"tf":1.0},"35":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":10,"docs":{"118":{"tf":1.0},"134":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"33":{"tf":1.0},"39":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951}}}}}}},"t":{"2":{"a":{"d":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"139":{"tf":1.0},"167":{"tf":1.7320508075688772},"54":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"2":{"tf":1.0},"213":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":6,"docs":{"167":{"tf":1.0},"209":{"tf":1.7320508075688772},"253":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":2.23606797749979}}}},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"1":{"tf":1.0},"2":{"tf":1.4142135623730951},"33":{"tf":1.0},"38":{"tf":1.0},"8":{"tf":1.0}}}}},"r":{"a":{"df":6,"docs":{"138":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"←":{"df":0,"docs":{},"⌊":{"(":{"a":{"+":{"b":{"+":{"c":{")":{"/":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"b":{"+":{"c":{")":{"/":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"0":{"df":1,"docs":{"106":{"tf":1.4142135623730951}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"106":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}},"a":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.4142135623730951}},"":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"=":{"1":{"df":2,"docs":{"244":{"tf":1.0},"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"244":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":13,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"233":{"tf":1.0},"35":{"tf":1.0},"46":{"tf":1.0}}}}}},"t":{"df":8,"docs":{"100":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"271":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"209":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}},"d":{"d":{"3":{"_":{"df":0,"docs":{},"m":{"a":{"d":{"d":{"df":0,"docs":{},"":{"=":{"b":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"5":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"4":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"2":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":33,"docs":{"106":{"tf":2.0},"110":{"tf":1.0},"151":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":2.8284271247461903},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":3.0},"58":{"tf":3.0},"59":{"tf":2.8284271247461903},"61":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":2.0},"68":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"82":{"tf":3.0},"83":{"tf":3.0},"84":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"s":{"df":5,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"118":{"tf":1.0},"49":{"tf":1.0},"99":{"tf":1.0}},"e":{"_":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"⋅":{"(":{"b":{"2":{"df":0,"docs":{},"−":{"b":{")":{"=":{"0":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"7":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"13":{"tf":1.0},"55":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}}},"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"=":{"1":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"113":{"tf":1.0},"148":{"tf":1.0}},"i":{"df":1,"docs":{"116":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"137":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"68":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"23":{"tf":1.0},"257":{"tf":1.0},"3":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"d":{",":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"4":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"113":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"g":{"c":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"=":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":8,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"234":{"tf":1.0},"274":{"tf":1.0},"33":{"tf":1.0},"62":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"216":{"tf":1.0},"221":{"tf":1.0},"65":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}}},"g":{"1":{"df":1,"docs":{"126":{"tf":1.4142135623730951}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"2":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"4":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"=":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"c":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"2":{"df":1,"docs":{"126":{"tf":1.4142135623730951}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"c":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"df":1,"docs":{"126":{"tf":1.4142135623730951}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"c":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"c":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}},"":{"=":{"b":{"c":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}},"":{"=":{"1":{"df":3,"docs":{"234":{"tf":1.4142135623730951},"242":{"tf":1.0},"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"b":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"18":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":42,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"111":{"tf":2.0},"127":{"tf":1.0},"139":{"tf":2.6457513110645907},"140":{"tf":2.23606797749979},"155":{"tf":1.7320508075688772},"167":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.7320508075688772},"170":{"tf":2.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.7320508075688772},"209":{"tf":2.0},"210":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"246":{"tf":1.7320508075688772},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"258":{"tf":1.7320508075688772},"266":{"tf":1.7320508075688772},"34":{"tf":2.0},"39":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.0},"6":{"tf":2.23606797749979},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":2.23606797749979},"72":{"tf":1.0},"77":{"tf":2.0},"87":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"18":{"tf":2.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0}}},"l":{"df":2,"docs":{"116":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":17,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"211":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.7320508075688772},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"272":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0}}}},"d":{"df":2,"docs":{"213":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":11,"docs":{"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"129":{"tf":1.0},"17":{"tf":1.0},"231":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"267":{"tf":1.0},"49":{"tf":1.0},"8":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":71,"docs":{"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":2.8284271247461903},"106":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"111":{"tf":3.605551275463989},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.23606797749979},"120":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"147":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"246":{"tf":1.7320508075688772},"247":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":2.6457513110645907},"65":{"tf":1.7320508075688772},"66":{"tf":3.1622776601683795},"70":{"tf":1.0},"77":{"tf":3.0},"79":{"tf":2.0},"80":{"tf":2.0},"87":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979}}}}},"t":{"df":5,"docs":{"111":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"2":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"212":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":45,"docs":{"103":{"tf":2.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":2.23606797749979},"113":{"tf":3.1622776601683795},"114":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"123":{"tf":2.0},"125":{"tf":2.8284271247461903},"126":{"tf":2.0},"132":{"tf":2.6457513110645907},"133":{"tf":2.23606797749979},"135":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":4.123105625617661},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":3.0},"143":{"tf":2.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"146":{"tf":2.0},"147":{"tf":3.0},"148":{"tf":1.7320508075688772},"15":{"tf":1.0},"169":{"tf":1.0},"18":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"224":{"tf":2.23606797749979},"226":{"tf":1.7320508075688772},"234":{"tf":5.0990195135927845},"242":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"251":{"tf":1.0},"262":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"234":{"tf":1.0}}},"w":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"113":{"tf":1.0}},"":{"=":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":19,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":2.449489742783178},"148":{"tf":2.0},"2":{"tf":1.7320508075688772},"25":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"a":{"d":{"d":{"df":2,"docs":{"139":{"tf":1.0},"152":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"234":{"tf":1.4142135623730951}}},"df":5,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"234":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"153":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"":{"=":{"1":{"df":2,"docs":{"244":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"a":{"df":1,"docs":{"234":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"234":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"=":{"1":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":1,"docs":{"234":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"234":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"=":{"1":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"32":{"tf":1.0},"4":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"209":{"tf":3.7416573867739413},"72":{"tf":1.0},"77":{"tf":2.449489742783178}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":166,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.23606797749979},"105":{"tf":2.23606797749979},"106":{"tf":3.0},"108":{"tf":1.0},"111":{"tf":3.0},"112":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":2.449489742783178},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":2.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"135":{"tf":2.449489742783178},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":2.0},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"233":{"tf":2.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":2.0},"243":{"tf":2.6457513110645907},"244":{"tf":1.7320508075688772},"245":{"tf":3.1622776601683795},"246":{"tf":2.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"252":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"255":{"tf":2.0},"256":{"tf":2.0},"257":{"tf":2.0},"259":{"tf":2.6457513110645907},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"87":{"tf":2.0},"89":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"s":{":":{"[":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"'":{"df":1,"docs":{"45":{"tf":1.0}}},"df":3,"docs":{"23":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":2.8284271247461903}}},"p":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"113":{"tf":1.0},"137":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"df":5,"docs":{"122":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}},"t":{"df":2,"docs":{"63":{"tf":1.0},"87":{"tf":1.0}}}},"df":8,"docs":{"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"65":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"234":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"1":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"260":{"tf":1.0},"265":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":15,"docs":{"170":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"258":{"tf":1.0},"262":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":2.0},"70":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"138":{"tf":1.0},"167":{"tf":1.0},"35":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"":{"=":{"1":{"df":3,"docs":{"234":{"tf":1.4142135623730951},"242":{"tf":1.0},"244":{"tf":1.0}}},"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"i":{"=":{"0":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"′":{"df":0,"docs":{},"":{"=":{"1":{"df":2,"docs":{"234":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{},"k":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":1,"docs":{"133":{"tf":1.0}},"":{"=":{"(":{"b":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"1":{"6":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"135":{"tf":1.0}}},"1":{"df":3,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"113":{"tf":1.0},"123":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":2,"docs":{"113":{"tf":1.0},"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"166":{"tf":2.6457513110645907},"167":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"88":{"tf":1.0},"89":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"h":{"4":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"258":{"tf":1.0},"265":{"tf":1.0},"37":{"tf":1.0},"55":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"123":{"tf":1.4142135623730951}},"":{"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"−":{"8":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":5,"docs":{"209":{"tf":1.7320508075688772},"274":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":2.0}},"e":{"2":{"df":0,"docs":{},"f":{"4":{"df":2,"docs":{"140":{"tf":1.0},"209":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"g":{"c":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}},"":{"=":{"0":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}},"1":{"df":3,"docs":{"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"132":{"tf":1.0}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"6":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"4":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"3":{"2":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"146":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"132":{"tf":1.0},"135":{"tf":1.7320508075688772}}},"1":{"df":2,"docs":{"134":{"tf":1.0},"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"b":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}},"":{"=":{"1":{"df":3,"docs":{"234":{"tf":1.4142135623730951},"242":{"tf":1.0},"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"3":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"2":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"113":{"tf":1.0},"123":{"tf":1.4142135623730951}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"2":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"4":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"8":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{")":{"=":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"′":{"=":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"2":{"7":{"df":0,"docs":{},"−":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{")":{"=":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"3":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"113":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"=":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"3":{"2":{"a":{"d":{"d":{"3":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"d":{"d":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"":{"=":{"b":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"5":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"4":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"206":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0},"265":{"tf":1.0}},"i":{"df":4,"docs":{"105":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"2":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":28,"docs":{"11":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"221":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.7320508075688772},"35":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"213":{"tf":1.0},"90":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"6":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0}}}}}}},"g":{"0":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"106":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":2,"docs":{"106":{"tf":1.0},"111":{"tf":2.449489742783178}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"g":{"7":{"df":1,"docs":{"111":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"111":{"tf":2.449489742783178}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"g":{"7":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"111":{"tf":1.0}}},"7":{"df":1,"docs":{"111":{"tf":1.0}}},"9":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"g":{"1":{"0":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"g":{"1":{"1":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"0":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"213":{"tf":2.23606797749979},"258":{"tf":1.7320508075688772}}},"r":{"b":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"209":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":1,"docs":{"20":{"tf":2.23606797749979}}},"c":{"=":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"df":0,"docs":{},"g":{"c":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":2.23606797749979},"126":{"tf":1.0}},"⋅":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"b":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"77":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":24,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"137":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"19":{"tf":2.449489742783178},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"55":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"t":{"df":4,"docs":{"118":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"252":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"101":{"tf":1.0},"216":{"tf":1.0},"226":{"tf":1.0},"266":{"tf":1.0}},"n":{"df":27,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.4142135623730951},"19":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"24":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":2.0},"259":{"tf":1.0},"272":{"tf":1.0},"44":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"35":{"tf":2.449489742783178},"69":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":6,"docs":{"1":{"tf":1.0},"138":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"266":{"tf":1.0},"45":{"tf":1.0}},"o":{"d":{"df":3,"docs":{"1":{"tf":1.0},"106":{"tf":1.0},"274":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"15":{"tf":2.0}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":53,"docs":{"111":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"127":{"tf":1.0},"131":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":2.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":2.8284271247461903},"122":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":29,"docs":{"103":{"tf":2.23606797749979},"105":{"tf":4.358898943540674},"106":{"tf":3.3166247903554},"111":{"tf":8.888194417315589},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"122":{"tf":3.3166247903554},"123":{"tf":4.123105625617661},"124":{"tf":2.6457513110645907},"125":{"tf":3.1622776601683795},"126":{"tf":6.0},"138":{"tf":2.8284271247461903},"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":2.23606797749979},"143":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"269":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"87":{"tf":1.0},"97":{"tf":3.605551275463989}}}},"w":{"df":6,"docs":{"127":{"tf":1.0},"20":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"6":{"tf":1.0},"87":{"tf":1.0}}}}},"t":{"df":1,"docs":{"53":{"tf":1.0}},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"103":{"tf":1.0},"130":{"tf":1.0},"138":{"tf":1.0},"177":{"tf":1.0},"211":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.4142135623730951},"270":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"0":{"df":22,"docs":{"111":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":2.449489742783178},"126":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"233":{"tf":1.4142135623730951}},"":{",":{".":{".":{",":{"df":0,"docs":{},"h":{"3":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}},".":{",":{"df":0,"docs":{},"h":{"1":{"1":{"df":2,"docs":{"233":{"tf":1.0},"244":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":10,"docs":{"106":{"tf":2.23606797749979},"169":{"tf":1.0},"171":{"tf":1.7320508075688772},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"233":{"tf":1.0}}},"4":{"df":2,"docs":{"106":{"tf":1.0},"114":{"tf":1.0}}},"7":{"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":2.6457513110645907},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"h":{"2":{"df":2,"docs":{"201":{"tf":1.0},"203":{"tf":1.0}},"":{",":{"df":0,"docs":{},"h":{"3":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"1":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"1":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"−":{"(":{"(":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"1":{")":{"df":0,"docs":{},"∗":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"1":{")":{"=":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"6":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"2":{"7":{"+":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{")":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"df":11,"docs":{"106":{"tf":1.0},"111":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"233":{"tf":1.0}},"":{",":{".":{".":{".":{"df":0,"docs":{},"h":{"3":{"df":1,"docs":{"111":{"tf":1.0}}},"7":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":7,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0}}},"3":{"df":6,"docs":{"125":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0}}},"4":{"df":5,"docs":{"106":{"tf":1.7320508075688772},"114":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"h":{"1":{"1":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":3,"docs":{"125":{"tf":1.0},"233":{"tf":1.0},"244":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"h":{"7":{"df":1,"docs":{"244":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"5":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"147":{"tf":1.0}},"":{"=":{"1":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"df":1,"docs":{"110":{"tf":1.0}}},"8":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"h":{"1":{"1":{"df":1,"docs":{"244":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.4142135623730951}},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"a":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"101":{"tf":1.7320508075688772},"106":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"144":{"tf":1.0},"23":{"tf":1.0},"90":{"tf":1.0}}}},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"n":{"d":{"df":1,"docs":{"255":{"tf":1.0}},"l":{"df":2,"docs":{"111":{"tf":1.0},"116":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":10,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"122":{"tf":1.4142135623730951},"132":{"tf":1.0},"243":{"tf":1.0},"255":{"tf":1.4142135623730951},"258":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}}}}},"r":{"d":{"df":1,"docs":{"62":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"(":{"a":{"1":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"74":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}}}}}},"_":{"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"1":{"df":2,"docs":{"79":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"2":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"1":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"1":{"df":2,"docs":{"79":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"239":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"(":{"a":{",":{"0":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"(":{"a":{",":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":62,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":5.0},"105":{"tf":3.872983346207417},"106":{"tf":5.291502622129181},"107":{"tf":3.3166247903554},"108":{"tf":2.0},"109":{"tf":1.7320508075688772},"110":{"tf":2.8284271247461903},"111":{"tf":3.0},"112":{"tf":4.358898943540674},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":3.1622776601683795},"116":{"tf":3.605551275463989},"118":{"tf":5.0},"119":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"220":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":2.23606797749979},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":3.1622776601683795},"233":{"tf":2.8284271247461903},"236":{"tf":1.7320508075688772},"237":{"tf":2.23606797749979},"238":{"tf":2.449489742783178},"239":{"tf":2.23606797749979},"240":{"tf":2.449489742783178},"243":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":3.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"64":{"tf":1.0},"68":{"tf":3.1622776601683795},"72":{"tf":2.0},"74":{"tf":3.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"88":{"tf":2.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"99":{"tf":4.898979485566356}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"224":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":18,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":2.8284271247461903},"106":{"tf":3.0},"111":{"tf":3.872983346207417},"115":{"tf":3.1622776601683795},"116":{"tf":4.0},"206":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":2.23606797749979},"233":{"tf":1.4142135623730951},"236":{"tf":2.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"244":{"tf":2.0},"245":{"tf":2.8284271247461903},"85":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"(":{"a":{",":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"(":{"a":{",":{"0":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"(":{"a":{",":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"(":{"a":{",":{"0":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"123":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"217":{"tf":1.0},"232":{"tf":1.0},"8":{"tf":1.0}}}}},"df":2,"docs":{"23":{"tf":1.4142135623730951},"64":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":9,"docs":{"103":{"tf":1.0},"16":{"tf":1.7320508075688772},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":2.0},"26":{"tf":1.4142135623730951},"35":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"103":{"tf":1.0},"128":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":30,"docs":{"100":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":1.0},"106":{"tf":2.8284271247461903},"107":{"tf":1.0},"111":{"tf":2.23606797749979},"116":{"tf":1.0},"122":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"233":{"tf":1.0},"247":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"39":{"tf":1.0},"62":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"17":{"tf":2.23606797749979}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"42":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":18,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"19":{"tf":1.0},"209":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.7320508075688772},"4":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"138":{"tf":1.0},"20":{"tf":1.0},"222":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.4142135623730951},"4":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"69":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"233":{"tf":1.0},"254":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"232":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"143":{"tf":1.0},"206":{"tf":2.0},"68":{"tf":1.0}}}}}},"r":{"df":6,"docs":{"232":{"tf":2.23606797749979},"236":{"tf":2.6457513110645907},"237":{"tf":2.6457513110645907},"238":{"tf":3.7416573867739413},"239":{"tf":3.7416573867739413},"240":{"tf":5.291502622129181}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"a":{"+":{"7":{")":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"←":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"i":{".":{"df":47,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"128":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"211":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":2.0},"245":{"tf":2.6457513110645907},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.7320508075688772}}},"/":{"df":0,"docs":{},"o":{"df":5,"docs":{"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.0}}}},"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"243":{"tf":1.4142135623730951}},"∏":{"8":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{")":{"=":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"+":{"b":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":9,"docs":{"105":{"tf":3.0},"106":{"tf":4.123105625617661},"111":{"tf":2.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"117":{"tf":2.8284271247461903},"258":{"tf":1.7320508075688772},"259":{"tf":1.0}},"e":{"a":{"df":2,"docs":{"113":{"tf":1.0},"213":{"tf":1.0}},"l":{"df":2,"docs":{"255":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":14,"docs":{"103":{"tf":1.0},"120":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"272":{"tf":1.0},"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"213":{"tf":1.0}}},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"101":{"tf":1.0},"112":{"tf":1.0},"47":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"177":{"tf":1.0}}}},"i":{"df":1,"docs":{"274":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":76,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"247":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"207":{"tf":2.0},"208":{"tf":2.23606797749979}}}},"df":0,"docs":{},"m":{"0":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":14,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":3.0},"113":{"tf":1.0},"126":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"208":{"tf":1.0},"245":{"tf":1.0},"39":{"tf":1.4142135623730951},"45":{"tf":1.0},"50":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"69":{"tf":1.0},"97":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"168":{"tf":1.0},"19":{"tf":1.0},"214":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"245":{"tf":1.7320508075688772},"253":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.4142135623730951},"88":{"tf":1.0},"99":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":5,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"170":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":11,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"210":{"tf":1.0},"240":{"tf":1.0},"266":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":2.449489742783178},"39":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0}}}},"s":{"df":22,"docs":{"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.7320508075688772},"150":{"tf":1.0},"170":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"234":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"259":{"tf":1.4142135623730951},"264":{"tf":1.0},"9":{"tf":1.0}},"s":{"df":1,"docs":{"120":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"2":{"tf":1.0},"270":{"tf":1.0},"33":{"tf":1.0}}}}}}},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"120":{"tf":2.0}}}},"df":0,"docs":{}}}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":27,"docs":{"105":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":2.23606797749979},"217":{"tf":1.7320508075688772},"221":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"245":{"tf":2.6457513110645907},"252":{"tf":1.7320508075688772},"259":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"62":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"124":{"tf":1.0},"211":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":2,"docs":{"139":{"tf":1.0},"160":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"s":{"df":15,"docs":{"130":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"217":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"262":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"222":{"tf":1.0},"254":{"tf":1.0},"261":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"224":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"245":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":20,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.7320508075688772},"17":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":1.0},"239":{"tf":2.23606797749979},"240":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"245":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":2.23606797749979},"68":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}},"i":{"c":{"df":14,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"118":{"tf":1.7320508075688772},"133":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":12,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"226":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.0},"34":{"tf":1.4142135623730951},"63":{"tf":1.0},"70":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"34":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":3,"docs":{"105":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"266":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951}},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"245":{"tf":1.0}}}}},"df":42,"docs":{"10":{"tf":1.0},"101":{"tf":2.8284271247461903},"104":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":2.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":3.3166247903554},"127":{"tf":1.0},"129":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.0},"232":{"tf":2.0},"233":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"24":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":2.0},"9":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"247":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"62":{"tf":1.0},"65":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"33":{"tf":1.0},"42":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}}}}},"df":48,"docs":{"10":{"tf":1.7320508075688772},"103":{"tf":1.0},"106":{"tf":2.0},"116":{"tf":1.0},"127":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":2.6457513110645907},"179":{"tf":1.0},"180":{"tf":1.0},"194":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":2.0},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"270":{"tf":2.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":3.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"86":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":11,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.0},"23":{"tf":1.0},"267":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":2.449489742783178},"9":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"d":{"df":9,"docs":{"103":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":2.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"16":{"tf":1.0},"2":{"tf":1.0},"232":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":5,"docs":{"223":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":57,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"107":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"132":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"232":{"tf":5.0990195135927845},"233":{"tf":1.4142135623730951},"234":{"tf":2.449489742783178},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.7320508075688772},"240":{"tf":2.23606797749979},"25":{"tf":2.0},"28":{"tf":1.0},"31":{"tf":2.0},"33":{"tf":2.8284271247461903},"35":{"tf":1.7320508075688772},"36":{"tf":2.0},"37":{"tf":3.4641016151377544},"38":{"tf":3.872983346207417},"39":{"tf":1.4142135623730951},"41":{"tf":2.0},"42":{"tf":3.4641016151377544},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"45":{"tf":3.872983346207417},"47":{"tf":2.6457513110645907},"48":{"tf":2.23606797749979},"49":{"tf":2.23606797749979},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.449489742783178},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":2.8284271247461903},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":2.449489742783178},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":20,"docs":{"168":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.4142135623730951},"220":{"tf":1.0},"258":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"88":{"tf":1.0}},"r":{"df":1,"docs":{"274":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"224":{"tf":1.0},"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"22":{"tf":1.4142135623730951},"265":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":5,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"147":{"tf":1.0},"209":{"tf":1.0},"252":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":19,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"14":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":2.0},"230":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.0},"38":{"tf":2.0},"4":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"17":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":6,"docs":{"138":{"tf":1.0},"211":{"tf":1.0},"223":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"87":{"tf":1.0}},"t":{"df":4,"docs":{"0":{"tf":1.0},"265":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"139":{"tf":1.0},"159":{"tf":1.7320508075688772},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"257":{"tf":1.4142135623730951},"258":{"tf":2.0},"54":{"tf":1.0}}}}},"o":{"c":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":8,"docs":{"264":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"41":{"tf":2.0},"42":{"tf":3.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":8,"docs":{"113":{"tf":1.0},"210":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"255":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"118":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"110":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.7320508075688772}}}}}},"o":{"d":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"2":{"tf":1.0},"270":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"211":{"tf":1.0},"223":{"tf":1.0}}}}},"t":{"'":{"df":3,"docs":{"272":{"tf":1.0},"274":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":17,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"127":{"tf":3.1622776601683795},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"137":{"tf":2.6457513110645907},"140":{"tf":1.0},"141":{"tf":1.0},"42":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"60":{"tf":2.449489742783178},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"r":{"df":4,"docs":{"101":{"tf":1.0},"2":{"tf":1.0},"49":{"tf":1.0},"94":{"tf":1.0}}}},"h":{"df":1,"docs":{"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"129":{"tf":1.0},"207":{"tf":1.0},"37":{"tf":1.0},"8":{"tf":1.0}}}}}}},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":0,"docs":{},"−":{"1":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":2,"docs":{"256":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"255":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"∈":{"2":{",":{"3":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"0":{",":{"1":{"5":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":1,"docs":{"125":{"tf":1.0}}},"4":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"114":{"tf":1.0}}},"7":{"df":2,"docs":{"111":{"tf":1.0},"114":{"tf":1.0}}},"8":{"df":2,"docs":{"189":{"tf":1.4142135623730951},"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"8":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{",":{"8":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"0":{",":{"1":{",":{"2":{",":{"3":{"df":5,"docs":{"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"56":{"tf":1.0}},"}":{"df":0,"docs":{},"∋":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"≥":{"2":{"3":{"2":{"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":{}},"df":0,"docs":{}},"df":2,"docs":{"162":{"tf":1.0},"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"92":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"101":{"tf":2.23606797749979},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":2.23606797749979},"108":{"tf":2.23606797749979},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.23606797749979},"143":{"tf":1.0},"92":{"tf":2.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.0}}}}},"∈":{"[":{"0":{",":{"4":{"df":1,"docs":{"244":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"0":{"df":5,"docs":{"130":{"tf":1.4142135623730951},"135":{"tf":1.0},"233":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.4142135623730951}},"":{",":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"":{",":{"b":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"244":{"tf":1.0}}},"1":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951}},"":{"=":{"0":{"df":1,"docs":{"252":{"tf":1.0}}},"1":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"(":{"a":{"df":0,"docs":{},"⋅":{"1":{"6":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{")":{")":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"(":{"b":{"df":0,"docs":{},"⋅":{"1":{"6":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{")":{")":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{")":{"=":{"0":{"df":1,"docs":{"249":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"−":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"2":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"245":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"b":{"df":1,"docs":{"20":{"tf":3.4641016151377544}}},"df":2,"docs":{"65":{"tf":3.3166247903554},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":23,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"117":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":21,"docs":{"116":{"tf":2.6457513110645907},"2":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"231":{"tf":2.0},"260":{"tf":2.23606797749979},"261":{"tf":1.7320508075688772},"262":{"tf":2.23606797749979},"263":{"tf":2.6457513110645907},"264":{"tf":2.8284271247461903},"269":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":3.1622776601683795},"45":{"tf":1.0},"88":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}}}},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"df":7,"docs":{"10":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":2.449489742783178},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":3.3166247903554}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"1":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"z":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"0":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"207":{"tf":1.0},"264":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":4,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":11,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"246":{"tf":1.0},"55":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"116":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"α":{"6":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"7":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"∣":{"df":0,"docs":{},"∣":{"b":{",":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":20,"docs":{"104":{"tf":2.449489742783178},"116":{"tf":2.6457513110645907},"179":{"tf":1.0},"180":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"224":{"tf":2.0},"228":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"252":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"210":{"tf":1.0},"212":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"170":{"tf":1.0},"44":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":41,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.7320508075688772},"142":{"tf":1.0},"144":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.0},"223":{"tf":1.7320508075688772},"226":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"242":{"tf":1.0},"245":{"tf":1.7320508075688772},"246":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"262":{"tf":1.0},"264":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"87":{"tf":1.0},"97":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"212":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":1.0},"259":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"11":{"tf":1.0},"118":{"tf":1.0},"129":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"37":{"tf":1.0},"97":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"170":{"tf":1.0},"62":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}}}}},"df":2,"docs":{"209":{"tf":2.8284271247461903},"77":{"tf":2.6457513110645907}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"128":{"tf":1.0},"233":{"tf":1.0},"258":{"tf":1.0},"44":{"tf":1.7320508075688772}}}}}}},"df":1,"docs":{"68":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"f":{"'":{"df":1,"docs":{"239":{"tf":1.0}}},"df":14,"docs":{"107":{"tf":1.0},"17":{"tf":1.7320508075688772},"207":{"tf":1.0},"233":{"tf":1.4142135623730951},"239":{"tf":2.0},"240":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"74":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"255":{"tf":1.0},"274":{"tf":1.0},"4":{"tf":1.0}}}},"v":{"df":4,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"239":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":35,"docs":{"106":{"tf":1.0},"118":{"tf":1.0},"131":{"tf":2.6457513110645907},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":2.0},"140":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"147":{"tf":2.8284271247461903},"151":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.4142135623730951},"31":{"tf":1.0},"58":{"tf":1.4142135623730951},"68":{"tf":1.0},"84":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"112":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"230":{"tf":1.4142135623730951},"266":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"111":{"tf":1.0},"13":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":2.6457513110645907},"234":{"tf":2.449489742783178},"242":{"tf":1.4142135623730951},"245":{"tf":1.0},"259":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":2.0}}}},"t":{"'":{"df":11,"docs":{"101":{"tf":1.0},"112":{"tf":1.4142135623730951},"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"170":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"247":{"tf":1.4142135623730951},"262":{"tf":1.0},"45":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"34":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":18,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"209":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":2.23606797749979},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"86":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"2":{"tf":2.0},"32":{"tf":1.4142135623730951},"38":{"tf":2.0},"43":{"tf":1.7320508075688772},"69":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"m":{"b":{"df":15,"docs":{"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"66":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":12,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"232":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"253":{"tf":1.0},"35":{"tf":1.4142135623730951},"6":{"tf":1.0},"97":{"tf":1.0}}}},"df":3,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"40":{"tf":1.0}},"r":{"df":1,"docs":{"243":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"113":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"55":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":5,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.7320508075688772},"210":{"tf":1.0},"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"c":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"0":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"37":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.0}},"w":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"37":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.0}}}}}}}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":2,"docs":{"39":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":10,"docs":{"2":{"tf":1.0},"37":{"tf":2.449489742783178},"38":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":2.23606797749979},"62":{"tf":1.7320508075688772},"64":{"tf":1.0},"66":{"tf":3.872983346207417},"88":{"tf":1.0},"89":{"tf":1.0}}},"t":{"df":17,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"233":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.0},"29":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"2":{"(":{"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"6":{"tf":1.0},"74":{"tf":1.0}},"i":{"c":{"df":5,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"113":{"tf":1.0},"2":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"216":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":27,"docs":{"111":{"tf":2.23606797749979},"112":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"150":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"85":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":8,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"265":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772}}}}},"p":{"'":{"df":2,"docs":{"106":{"tf":2.0},"110":{"tf":1.4142135623730951}}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":22,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":3.0},"110":{"tf":4.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.449489742783178},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"2":{"tf":1.4142135623730951},"24":{"tf":1.0},"35":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":2.6457513110645907},"94":{"tf":2.6457513110645907},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"w":{"df":10,"docs":{"106":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"209":{"tf":1.4142135623730951},"274":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"222":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"53":{"tf":1.0}},"e":{"df":1,"docs":{"53":{"tf":1.0}}}}},"m":{"1":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"21":{"tf":1.0}}},"=":{"(":{"2":{"3":{"2":{"df":0,"docs":{},"−":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"k":{"1":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"p":{"df":2,"docs":{"104":{"tf":1.0},"116":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"0":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"35":{"tf":1.0},"6":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"33":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"215":{"tf":1.0},"233":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"272":{"tf":1.0},"38":{"tf":1.7320508075688772},"41":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"230":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":48,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.4142135623730951},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"250":{"tf":2.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"259":{"tf":2.0},"264":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"33":{"tf":2.0},"7":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"101":{"tf":1.0},"127":{"tf":1.4142135623730951},"199":{"tf":1.0},"2":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":15,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.4142135623730951},"24":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"33":{"tf":1.0},"72":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"10":{"tf":1.0},"181":{"tf":1.4142135623730951},"42":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"104":{"tf":1.0},"111":{"tf":2.0},"118":{"tf":1.0},"226":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"35":{"tf":1.0},"42":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":12,"docs":{"10":{"tf":2.0},"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"6":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"m":{"df":2,"docs":{"16":{"tf":1.0},"23":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"21":{"tf":1.0}}}}},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"16":{"tf":1.0},"33":{"tf":2.0},"35":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"245":{"tf":1.0},"264":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"111":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"274":{"tf":1.0},"4":{"tf":1.4142135623730951}}}}},"h":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"212":{"tf":1.0},"228":{"tf":1.0},"271":{"tf":1.0}}}}}},"x":{"(":{"a":{",":{"b":{")":{">":{"1":{"df":1,"docs":{"52":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"≥":{"2":{"3":{"2":{"df":3,"docs":{"57":{"tf":3.605551275463989},"58":{"tf":1.7320508075688772},"59":{"tf":3.7416573867739413}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},",":{"c":{")":{"df":0,"docs":{},"≥":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"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}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"2":{"tf":1.0},"212":{"tf":1.0},"60":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"20":{"tf":2.6457513110645907}},"p":{"df":2,"docs":{"104":{"tf":1.0},"116":{"tf":1.0}}}},"df":7,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0},"245":{"tf":1.0},"68":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":27,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"138":{"tf":1.0},"2":{"tf":1.0},"217":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}},"t":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"240":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"[":{"8":{"7":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"30":{"tf":1.0}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.4142135623730951}},"w":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.4142135623730951}},"e":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"1":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":2,"docs":{"23":{"tf":1.0},"29":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":47,"docs":{"10":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":3.1622776601683795},"2":{"tf":2.0},"200":{"tf":2.8284271247461903},"201":{"tf":2.8284271247461903},"202":{"tf":3.0},"203":{"tf":3.0},"204":{"tf":3.0},"209":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":2.0},"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"253":{"tf":2.23606797749979},"254":{"tf":2.449489742783178},"255":{"tf":3.1622776601683795},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":3.872983346207417},"259":{"tf":2.6457513110645907},"273":{"tf":1.4142135623730951},"29":{"tf":2.449489742783178},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"41":{"tf":1.0},"44":{"tf":3.4641016151377544},"45":{"tf":2.23606797749979},"6":{"tf":2.23606797749979},"62":{"tf":2.6457513110645907},"64":{"tf":1.4142135623730951},"65":{"tf":2.0},"66":{"tf":4.47213595499958},"72":{"tf":1.0},"74":{"tf":2.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"88":{"tf":2.0},"89":{"tf":1.4142135623730951}}},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"255":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"256":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}},"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":15,"docs":{"111":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"130":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"10":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"90":{"tf":1.0}}}},"l":{"df":23,"docs":{"10":{"tf":2.6457513110645907},"104":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":2.23606797749979},"220":{"tf":1.0},"232":{"tf":3.872983346207417},"233":{"tf":2.0},"239":{"tf":2.6457513110645907},"240":{"tf":2.6457513110645907},"243":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":3.3166247903554},"6":{"tf":2.0},"65":{"tf":1.7320508075688772},"68":{"tf":3.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":2.449489742783178},"77":{"tf":1.0},"8":{"tf":1.7320508075688772},"88":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"220":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"104":{"tf":1.7320508075688772},"115":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"116":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":81,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"11":{"tf":3.3166247903554},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"127":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":2.23606797749979},"138":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.7320508075688772},"155":{"tf":1.0},"16":{"tf":3.4641016151377544},"168":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":3.4641016151377544},"20":{"tf":1.0},"205":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"22":{"tf":2.8284271247461903},"220":{"tf":1.0},"23":{"tf":2.0},"232":{"tf":1.0},"24":{"tf":2.449489742783178},"25":{"tf":1.7320508075688772},"253":{"tf":1.0},"258":{"tf":1.7320508075688772},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"3":{"tf":1.7320508075688772},"31":{"tf":1.0},"32":{"tf":2.8284271247461903},"33":{"tf":4.242640687119285},"35":{"tf":3.3166247903554},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"4":{"tf":2.449489742783178},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":2.23606797749979},"7":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"213":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"118":{"tf":1.0},"206":{"tf":1.0}}}},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"139":{"tf":1.0},"201":{"tf":1.7320508075688772}},"w":{"df":2,"docs":{"140":{"tf":1.0},"200":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":2.449489742783178}}}}}},"df":1,"docs":{"74":{"tf":3.0}}},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":1,"docs":{"84":{"tf":1.7320508075688772}},"e":{"df":1,"docs":{"13":{"tf":1.0}},"l":{"df":1,"docs":{"255":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"262":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"33":{"tf":1.0}}}},"df":23,"docs":{"177":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":2.0},"225":{"tf":1.0},"262":{"tf":1.0},"273":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":4.795831523312719},"39":{"tf":1.4142135623730951},"43":{"tf":2.449489742783178},"71":{"tf":2.23606797749979},"72":{"tf":2.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"'":{"df":3,"docs":{"221":{"tf":1.0},"226":{"tf":1.0},"262":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"u":{"df":7,"docs":{"127":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"253":{"tf":1.0},"34":{"tf":1.0},"6":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"259":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":40,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":2.0},"122":{"tf":1.0},"137":{"tf":1.4142135623730951},"148":{"tf":1.0},"16":{"tf":1.0},"211":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"248":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":2.0},"4":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"86":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"110":{"tf":1.0},"45":{"tf":1.0},"77":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"v":{"d":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}},"2":{"df":2,"docs":{"139":{"tf":1.0},"191":{"tf":1.0}}},"3":{"df":1,"docs":{"139":{"tf":1.0}}},"4":{"df":1,"docs":{"139":{"tf":1.0}}},"5":{"df":1,"docs":{"139":{"tf":1.0}}},"6":{"df":1,"docs":{"139":{"tf":1.0}}},"7":{"df":1,"docs":{"139":{"tf":1.0}}},"8":{"df":1,"docs":{"139":{"tf":1.0}}},"df":2,"docs":{"191":{"tf":1.0},"60":{"tf":1.0}},"w":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":17,"docs":{"115":{"tf":1.0},"130":{"tf":1.4142135623730951},"190":{"tf":2.0},"191":{"tf":1.7320508075688772},"194":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"254":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"45":{"tf":2.23606797749979},"60":{"tf":2.0},"62":{"tf":2.23606797749979},"65":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.4142135623730951}}}},"2":{"df":2,"docs":{"139":{"tf":1.0},"190":{"tf":1.0}}},"3":{"df":1,"docs":{"139":{"tf":1.0}}},"4":{"df":1,"docs":{"139":{"tf":1.0}}},"5":{"df":1,"docs":{"139":{"tf":1.0}}},"6":{"df":1,"docs":{"139":{"tf":1.0}}},"7":{"df":1,"docs":{"139":{"tf":1.0}}},"8":{"df":1,"docs":{"139":{"tf":1.0}}},"df":2,"docs":{"190":{"tf":1.0},"60":{"tf":1.0}},"w":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"p":{"a":{"df":3,"docs":{"232":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0}}},"df":3,"docs":{"232":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0}},"u":{"df":1,"docs":{"240":{"tf":1.0}}},"v":{"df":1,"docs":{"240":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"143":{"tf":1.0},"207":{"tf":2.0}}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"208":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":4,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":4.0},"21":{"tf":2.0},"23":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"140":{"tf":1.0},"203":{"tf":1.7320508075688772}},"w":{"df":2,"docs":{"140":{"tf":1.0},"202":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"143":{"tf":1.0},"204":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"68":{"tf":1.0},"8":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"u":{"a":{"df":2,"docs":{"232":{"tf":1.0},"240":{"tf":1.0}}},"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"33":{"tf":1.0},"8":{"tf":1.0}}}},"df":2,"docs":{"232":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772}},"l":{"6":{"4":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":4,"docs":{"140":{"tf":1.0},"158":{"tf":1.7320508075688772},"38":{"tf":1.0},"52":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.0},"222":{"tf":1.0},"246":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":21,"docs":{"104":{"tf":1.4142135623730951},"113":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"217":{"tf":1.0},"232":{"tf":3.3166247903554},"233":{"tf":1.0},"234":{"tf":3.3166247903554},"238":{"tf":1.0},"242":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"25":{"tf":1.0},"271":{"tf":1.0},"41":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}},"i":{"df":19,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"138":{"tf":1.0},"169":{"tf":1.0},"212":{"tf":1.7320508075688772},"226":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.4142135623730951},"265":{"tf":2.0},"266":{"tf":1.7320508075688772},"270":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"113":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":2,"docs":{"232":{"tf":1.0},"240":{"tf":1.0}}},"df":3,"docs":{"232":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"6":{"tf":1.0}}}},"n":{"+":{"1":{"df":2,"docs":{"190":{"tf":1.0},"191":{"tf":1.0}}},"df":0,"docs":{}},"/":{"8":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"0":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"257":{"tf":1.0},"259":{"tf":1.0}},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"(":{"c":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"c":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{"=":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"257":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"257":{"tf":1.4142135623730951},"259":{"tf":1.0}}},"df":0,"docs":{},"δ":{"c":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"δ":{"a":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":1,"docs":{"259":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"df":2,"docs":{"257":{"tf":1.0},"259":{"tf":1.0}},"":{"=":{"0":{"df":1,"docs":{"257":{"tf":1.0}}},"1":{"df":1,"docs":{"257":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"=":{"0":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{")":{"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"=":{"0":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"<":{"2":{"5":{"6":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"256":{"tf":1.4142135623730951}}},"1":{"4":{"df":1,"docs":{"104":{"tf":1.0}}},"df":1,"docs":{"256":{"tf":1.4142135623730951}}},"df":0,"docs":{}},">":{"2":{"1":{"6":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"148":{"tf":1.0},"212":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"113":{"tf":1.4142135623730951},"137":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":4,"docs":{"71":{"tf":2.0},"73":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"2":{"tf":1.4142135623730951},"232":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":19,"docs":{"104":{"tf":1.7320508075688772},"18":{"tf":1.0},"184":{"tf":1.4142135623730951},"190":{"tf":2.0},"191":{"tf":2.23606797749979},"209":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"216":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":2.0},"256":{"tf":1.0},"31":{"tf":1.4142135623730951},"60":{"tf":2.8284271247461903},"65":{"tf":2.0},"74":{"tf":2.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":85,"docs":{"0":{"tf":1.0},"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":2.6457513110645907},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":2.6457513110645907},"111":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"120":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":2.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"16":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":2.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"227":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":2.0},"251":{"tf":1.7320508075688772},"253":{"tf":1.0},"254":{"tf":2.6457513110645907},"255":{"tf":3.0},"256":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.7320508075688772},"259":{"tf":2.23606797749979},"264":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":3,"docs":{"139":{"tf":1.0},"157":{"tf":1.7320508075688772},"52":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"q":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"59":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}},"t":{"df":1,"docs":{"106":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"105":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"75":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}},"df":38,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":2.8284271247461903},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":2.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"141":{"tf":1.0},"208":{"tf":2.6457513110645907},"209":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"240":{"tf":1.7320508075688772},"243":{"tf":2.0},"245":{"tf":3.3166247903554},"255":{"tf":1.7320508075688772},"256":{"tf":1.7320508075688772},"257":{"tf":2.0},"258":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"t":{"df":52,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":3.0},"111":{"tf":3.605551275463989},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"120":{"tf":2.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":2.0},"124":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"166":{"tf":2.0},"167":{"tf":1.4142135623730951},"209":{"tf":2.6457513110645907},"211":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"234":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":2.0},"243":{"tf":1.4142135623730951},"244":{"tf":2.0},"246":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"266":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"g":{"=":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"124":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.7320508075688772}}}}}}},"df":23,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"207":{"tf":2.449489742783178},"208":{"tf":3.3166247903554},"232":{"tf":2.6457513110645907},"233":{"tf":1.7320508075688772},"239":{"tf":2.449489742783178},"240":{"tf":3.0},"243":{"tf":2.0},"244":{"tf":1.0},"245":{"tf":2.8284271247461903},"65":{"tf":1.0},"68":{"tf":2.0},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}}}}}}}},"df":27,"docs":{"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"128":{"tf":1.0},"130":{"tf":1.0},"170":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"222":{"tf":1.0},"239":{"tf":1.0},"256":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"55":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":3,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"'":{"df":1,"docs":{"111":{"tf":1.0}}},"df":9,"docs":{"100":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"122":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"150":{"tf":1.7320508075688772},"23":{"tf":1.0},"97":{"tf":2.23606797749979},"99":{"tf":2.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":8,"docs":{"113":{"tf":1.0},"241":{"tf":1.0},"252":{"tf":1.0},"263":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"70":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":52,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"143":{"tf":1.0},"159":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"246":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"87":{"tf":1.0}}},"h":{"df":4,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0}}},"i":{"c":{"df":11,"docs":{"111":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"254":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"w":{"df":8,"docs":{"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"255":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":2.8284271247461903}}}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":3.1622776601683795}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":37,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"111":{"tf":3.1622776601683795},"116":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"14":{"tf":1.0},"169":{"tf":1.4142135623730951},"17":{"tf":2.449489742783178},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":1.0},"258":{"tf":1.0},"37":{"tf":2.23606797749979},"39":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"8":{"tf":2.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"208":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"=":{"0":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"106":{"tf":1.0}}}},"∈":{"[":{"2":{",":{"9":{"df":2,"docs":{"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"0":{",":{".":{".":{".":{",":{"1":{"5":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"7":{",":{"9":{",":{"1":{"1":{",":{"1":{"3":{",":{"1":{"5":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"2":{",":{"3":{"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":{}},"1":{",":{".":{".":{".":{",":{"1":{"5":{"df":1,"docs":{"60":{"tf":1.0}}},"6":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"3":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{".":{".":{".":{",":{"1":{"5":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"−":{"1":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":0,"docs":{},"−":{"1":{")":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"116":{"tf":1.0},"228":{"tf":1.0},"245":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"d":{"d":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"18":{"tf":1.4142135623730951}},"f":{"a":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":5,"docs":{"102":{"tf":1.0},"228":{"tf":1.4142135623730951},"232":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"211":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0}}}}}}},"l":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":10,"docs":{"208":{"tf":2.449489742783178},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"240":{"tf":1.4142135623730951},"245":{"tf":2.0},"255":{"tf":2.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"68":{"tf":1.0},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"137":{"tf":1.0},"169":{"tf":1.0},"244":{"tf":1.0},"254":{"tf":1.0},"37":{"tf":1.0},"63":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":2.0}}}}}},"n":{"c":{"df":16,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":2.23606797749979},"16":{"tf":1.0},"19":{"tf":1.4142135623730951},"209":{"tf":1.0},"219":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"98":{"tf":1.0}}},"df":60,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"111":{"tf":3.0},"113":{"tf":1.7320508075688772},"122":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"130":{"tf":1.0},"138":{"tf":1.4142135623730951},"150":{"tf":1.0},"170":{"tf":2.0},"190":{"tf":1.0},"191":{"tf":1.0},"2":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":2.6457513110645907},"233":{"tf":2.449489742783178},"234":{"tf":1.7320508075688772},"24":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"248":{"tf":1.0},"25":{"tf":2.23606797749979},"250":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":2.6457513110645907},"50":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":2.449489742783178},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":29,"docs":{"10":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.0},"130":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.7320508075688772},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":3.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}},"p":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"1":{"1":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"123":{"tf":1.0}}},"9":{"df":1,"docs":{"123":{"tf":1.7320508075688772}}},"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"6":{"df":0,"docs":{},"":{"(":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"2":{"df":0,"docs":{},"i":{")":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"106":{"tf":1.0},"111":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"252":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":16,"docs":{"100":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.7320508075688772},"116":{"tf":2.0},"123":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"103":{"tf":1.0},"105":{"tf":2.449489742783178},"106":{"tf":2.23606797749979},"111":{"tf":5.656854249492381},"116":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":3.7416573867739413},"138":{"tf":3.3166247903554},"139":{"tf":5.656854249492381},"140":{"tf":4.123105625617661},"141":{"tf":4.123105625617661},"142":{"tf":3.0},"143":{"tf":2.8284271247461903},"144":{"tf":2.8284271247461903},"269":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":16,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"127":{"tf":1.0},"150":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"62":{"tf":2.0},"65":{"tf":2.23606797749979},"66":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":2.8284271247461903},"75":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"103":{"tf":1.0}}},"(":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{},"s":{"1":{"df":2,"docs":{"101":{"tf":2.449489742783178},"112":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":163,"docs":{"10":{"tf":1.0},"100":{"tf":2.0},"101":{"tf":2.23606797749979},"102":{"tf":1.0},"103":{"tf":3.4641016151377544},"104":{"tf":1.0},"105":{"tf":3.1622776601683795},"106":{"tf":6.48074069840786},"108":{"tf":2.0},"109":{"tf":1.0},"110":{"tf":3.7416573867739413},"111":{"tf":8.12403840463596},"112":{"tf":2.6457513110645907},"113":{"tf":2.8284271247461903},"114":{"tf":3.3166247903554},"115":{"tf":2.6457513110645907},"116":{"tf":4.0},"117":{"tf":3.4641016151377544},"118":{"tf":3.4641016151377544},"120":{"tf":3.1622776601683795},"121":{"tf":2.6457513110645907},"122":{"tf":3.872983346207417},"123":{"tf":4.0},"124":{"tf":3.3166247903554},"125":{"tf":3.4641016151377544},"126":{"tf":3.1622776601683795},"127":{"tf":1.4142135623730951},"130":{"tf":2.0},"131":{"tf":1.7320508075688772},"137":{"tf":3.872983346207417},"138":{"tf":4.69041575982343},"139":{"tf":2.6457513110645907},"140":{"tf":2.6457513110645907},"141":{"tf":2.6457513110645907},"142":{"tf":3.605551275463989},"143":{"tf":2.6457513110645907},"144":{"tf":2.23606797749979},"145":{"tf":1.0},"146":{"tf":2.23606797749979},"147":{"tf":2.449489742783178},"148":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":2.23606797749979},"170":{"tf":1.0},"171":{"tf":2.0},"172":{"tf":1.7320508075688772},"173":{"tf":2.0},"174":{"tf":2.0},"175":{"tf":2.0},"176":{"tf":2.0},"177":{"tf":2.23606797749979},"178":{"tf":2.0},"179":{"tf":2.8284271247461903},"180":{"tf":2.8284271247461903},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.7320508075688772},"184":{"tf":2.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772},"190":{"tf":2.0},"191":{"tf":2.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"195":{"tf":2.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"2":{"tf":2.0},"20":{"tf":1.0},"200":{"tf":2.23606797749979},"201":{"tf":2.23606797749979},"202":{"tf":2.449489742783178},"203":{"tf":2.449489742783178},"204":{"tf":2.449489742783178},"205":{"tf":2.0},"206":{"tf":2.0},"207":{"tf":2.6457513110645907},"208":{"tf":2.23606797749979},"209":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"210":{"tf":2.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":2.6457513110645907},"228":{"tf":2.8284271247461903},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"245":{"tf":2.0},"246":{"tf":3.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"251":{"tf":2.0},"252":{"tf":2.23606797749979},"254":{"tf":1.0},"255":{"tf":2.23606797749979},"258":{"tf":2.8284271247461903},"259":{"tf":2.449489742783178},"260":{"tf":1.0},"263":{"tf":2.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.0},"50":{"tf":2.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":2.23606797749979},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":2.6457513110645907},"82":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":2.6457513110645907},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":4.0},"98":{"tf":2.449489742783178},"99":{"tf":2.23606797749979}}},"x":{"df":1,"docs":{"272":{"tf":1.0}}}},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"116":{"tf":1.0},"263":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"206":{"tf":1.0},"245":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}}}}}}},"df":1,"docs":{"259":{"tf":1.0}}}},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"208":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"207":{"tf":1.0},"208":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":18,"docs":{"13":{"tf":2.23606797749979},"19":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"220":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"258":{"tf":1.4142135623730951},"265":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":1.0},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.0},"65":{"tf":1.0}}}}}},"u":{"3":{"2":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"111":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"204":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":2.23606797749979},"228":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"35":{"tf":2.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"115":{"tf":1.0},"138":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"209":{"tf":1.0},"247":{"tf":1.0},"42":{"tf":1.0},"86":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"62":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":30,"docs":{"103":{"tf":1.4142135623730951},"105":{"tf":2.0},"106":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"122":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"207":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"42":{"tf":1.0},"68":{"tf":1.4142135623730951},"77":{"tf":1.0},"83":{"tf":4.242640687119285},"84":{"tf":2.449489742783178},"86":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":20,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"17":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"259":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":43,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":2.449489742783178},"194":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":2.0},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"233":{"tf":1.7320508075688772},"236":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"25":{"tf":1.0},"251":{"tf":2.23606797749979},"258":{"tf":1.0},"270":{"tf":2.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":2.0},"75":{"tf":1.7320508075688772},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":2.449489742783178},"80":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"2":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"255":{"tf":1.0}}}},"df":24,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":1.0},"220":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"246":{"tf":1.0},"251":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":13,"docs":{"128":{"tf":1.0},"129":{"tf":2.6457513110645907},"130":{"tf":2.23606797749979},"131":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"134":{"tf":1.0},"135":{"tf":2.449489742783178},"17":{"tf":1.4142135623730951},"177":{"tf":1.0},"209":{"tf":1.0},"269":{"tf":1.0},"82":{"tf":2.8284271247461903},"84":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}},"r":{"df":1,"docs":{"84":{"tf":1.0}}}},"u":{"b":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"101":{"tf":1.0},"4":{"tf":1.0},"6":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"198":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772}}}}}}}}},"x":{"df":2,"docs":{"103":{"tf":1.0},"124":{"tf":1.7320508075688772}}}},"p":{"0":{"df":2,"docs":{"211":{"tf":1.7320508075688772},"212":{"tf":2.23606797749979}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"p":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{")":{"=":{"0":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"1":{"df":6,"docs":{"105":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"129":{"tf":2.23606797749979},"233":{"tf":2.0},"240":{"tf":1.7320508075688772},"245":{"tf":2.6457513110645907}},"":{"=":{"1":{"df":2,"docs":{"136":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"p":{"1":{"df":3,"docs":{"117":{"tf":1.0},"135":{"tf":1.4142135623730951},"245":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.0}}}},"v":{"df":2,"docs":{"117":{"tf":1.0},"135":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"=":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"117":{"tf":1.0},"135":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"2":{"df":2,"docs":{"105":{"tf":2.0},"118":{"tf":1.7320508075688772}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"118":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"=":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"3":{"df":2,"docs":{"105":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"=":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"=":{"2":{"6":{"4":{"df":0,"docs":{},"−":{"2":{"3":{"2":{"+":{"1":{"df":3,"docs":{"6":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"74":{"tf":1.0}}}},"d":{"df":15,"docs":{"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"141":{"tf":1.0},"182":{"tf":1.7320508075688772},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"262":{"tf":1.0},"266":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.4142135623730951}},"w":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"16":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"105":{"tf":2.6457513110645907},"106":{"tf":2.449489742783178},"117":{"tf":2.0},"43":{"tf":1.0},"88":{"tf":1.0}}}}},"t":{"df":10,"docs":{"102":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"245":{"tf":2.23606797749979},"264":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"71":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"169":{"tf":1.0}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"113":{"tf":1.0},"222":{"tf":1.0},"270":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"69":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"42":{"tf":1.0},"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":15,"docs":{"10":{"tf":1.7320508075688772},"101":{"tf":1.0},"104":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":2.449489742783178},"208":{"tf":2.0},"232":{"tf":3.1622776601683795},"233":{"tf":1.0},"239":{"tf":2.23606797749979},"240":{"tf":2.449489742783178},"243":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"6":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":2.0}}}}}}}},"df":5,"docs":{"23":{"tf":1.7320508075688772},"267":{"tf":2.449489742783178},"268":{"tf":1.4142135623730951},"34":{"tf":1.0},"77":{"tf":2.0}},"e":{"=":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"74":{"tf":2.0}}}},"df":1,"docs":{"209":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}},"r":{"df":10,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"124":{"tf":1.0},"210":{"tf":1.4142135623730951},"217":{"tf":1.0},"23":{"tf":1.0},"254":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":2.23606797749979},"80":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":34,"docs":{"104":{"tf":1.0},"111":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"215":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.4142135623730951},"255":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":3.7416573867739413},"84":{"tf":3.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"223":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"36":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":18,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"206":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"68":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"112":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"143":{"tf":1.0}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":13,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"239":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.4142135623730951},"33":{"tf":1.0},"72":{"tf":1.0}}},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"115":{"tf":1.0},"224":{"tf":1.0}}}},"o":{"df":2,"docs":{"209":{"tf":1.0},"74":{"tf":1.7320508075688772}},"e":{"df":1,"docs":{"209":{"tf":1.7320508075688772}},"′":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"4":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"19":{"tf":1.0},"209":{"tf":2.23606797749979},"24":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"77":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"115":{"tf":1.0},"209":{"tf":1.0},"77":{"tf":2.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"274":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"98":{"tf":1.0}}}},"p":{"df":21,"docs":{"10":{"tf":1.0},"106":{"tf":3.4641016151377544},"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":2.449489742783178},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"98":{"tf":2.6457513110645907}},"u":{"df":0,"docs":{},"l":{"df":11,"docs":{"106":{"tf":2.449489742783178},"111":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"257":{"tf":1.0},"45":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"2":{"tf":1.0},"231":{"tf":1.0},"244":{"tf":1.0},"85":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":60,"docs":{"105":{"tf":2.449489742783178},"111":{"tf":2.23606797749979},"126":{"tf":1.0},"137":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.23606797749979},"230":{"tf":1.0},"239":{"tf":1.0},"60":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":12,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"124":{"tf":1.0},"170":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"272":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"274":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"2":{"df":4,"docs":{"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"52":{"tf":1.0},"84":{"tf":2.449489742783178}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"112":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"260":{"tf":1.0},"48":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":1,"docs":{"2":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":7,"docs":{"138":{"tf":2.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"81":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"105":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":19,"docs":{"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"31":{"tf":1.0},"42":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"s":{"df":31,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"209":{"tf":1.0},"245":{"tf":1.4142135623730951},"258":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"55":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":18,"docs":{"127":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.4142135623730951},"220":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":2.23606797749979},"70":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"170":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"23":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"10":{"tf":1.0},"207":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"106":{"tf":4.123105625617661},"111":{"tf":2.0}}}},"o":{"c":{".":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{">":{".":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"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":{}}},"b":{"a":{"df":0,"docs":{},"r":{".":{"1":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"2":{"df":1,"docs":{"37":{"tf":1.0}}},"3":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"23":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"38":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":44,"docs":{"116":{"tf":2.6457513110645907},"2":{"tf":1.7320508075688772},"220":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"233":{"tf":1.0},"260":{"tf":2.0},"262":{"tf":1.4142135623730951},"263":{"tf":2.0},"264":{"tf":2.0},"269":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":3.872983346207417},"38":{"tf":4.58257569495584},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.6457513110645907},"42":{"tf":3.605551275463989},"43":{"tf":2.8284271247461903},"44":{"tf":2.449489742783178},"45":{"tf":2.449489742783178},"62":{"tf":1.7320508075688772},"66":{"tf":3.3166247903554},"69":{"tf":2.0},"7":{"tf":1.0},"71":{"tf":2.23606797749979},"72":{"tf":2.8284271247461903},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":2.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":2.0},"82":{"tf":2.6457513110645907},"83":{"tf":3.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"'":{"df":2,"docs":{"45":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":3,"docs":{"111":{"tf":1.4142135623730951},"45":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":10,"docs":{"100":{"tf":1.0},"101":{"tf":2.6457513110645907},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"224":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"233":{"tf":1.0},"81":{"tf":1.0}},"t":{"df":20,"docs":{"1":{"tf":1.0},"105":{"tf":1.7320508075688772},"129":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"211":{"tf":2.23606797749979},"212":{"tf":2.23606797749979},"217":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":2.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"266":{"tf":3.872983346207417},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":2,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":5,"docs":{"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"42":{"tf":1.0},"62":{"tf":1.0},"99":{"tf":1.0}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"118":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":58,"docs":{"0":{"tf":2.0},"10":{"tf":1.0},"100":{"tf":3.4641016151377544},"101":{"tf":2.8284271247461903},"104":{"tf":1.4142135623730951},"105":{"tf":2.8284271247461903},"106":{"tf":1.4142135623730951},"107":{"tf":2.23606797749979},"11":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":2.23606797749979},"113":{"tf":2.23606797749979},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"129":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":2.8284271247461903},"17":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"23":{"tf":3.0},"263":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":2.0},"3":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":2.8284271247461903},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":3.1622776601683795},"39":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":2.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"62":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":2.0},"8":{"tf":2.23606797749979},"88":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979},"99":{"tf":3.0}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":17,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"19":{"tf":2.8284271247461903},"2":{"tf":1.0},"20":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":2.23606797749979},"3":{"tf":2.0},"72":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"119":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"209":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"265":{"tf":1.0},"270":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":17,"docs":{"113":{"tf":1.0},"16":{"tf":1.4142135623730951},"20":{"tf":2.0},"207":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.4142135623730951},"223":{"tf":1.0},"228":{"tf":1.0},"246":{"tf":1.0},"265":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"3":{"tf":1.0},"4":{"tf":1.4142135623730951},"69":{"tf":1.0},"87":{"tf":1.0}},"r":{"df":47,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"106":{"tf":2.8284271247461903},"107":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":2.23606797749979},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":1.0},"266":{"tf":1.4142135623730951},"268":{"tf":1.7320508075688772},"272":{"tf":1.0},"6":{"tf":1.0},"87":{"tf":1.0}}}},"i":{"d":{"df":54,"docs":{"10":{"tf":2.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"11":{"tf":1.0},"113":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"2":{"tf":2.449489742783178},"207":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"252":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"38":{"tf":1.0},"4":{"tf":2.449489742783178},"46":{"tf":1.0},"50":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"65":{"tf":2.6457513110645907},"66":{"tf":2.23606797749979},"67":{"tf":1.0},"68":{"tf":2.6457513110645907},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":2.0},"8":{"tf":2.8284271247461903},"87":{"tf":1.4142135623730951},"88":{"tf":2.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}}}},"u":{"b":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"17":{"tf":1.7320508075688772},"8":{"tf":2.6457513110645907},"86":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":8,"docs":{"111":{"tf":1.0},"137":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"265":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{".":{"0":{"df":2,"docs":{"49":{"tf":1.0},"60":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"2":{"3":{"4":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"a":{"b":{"c":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"4":{".":{"0":{"df":0,"docs":{},"x":{"a":{"b":{"c":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{".":{"0":{"df":1,"docs":{"38":{"tf":1.0}}},"2":{".":{"3":{".":{"4":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0}}},"2":{".":{"0":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0}}},"3":{"df":3,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0}}},"4":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}},"5":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"1":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"2":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":35,"docs":{"10":{"tf":1.0},"111":{"tf":2.23606797749979},"113":{"tf":1.7320508075688772},"122":{"tf":2.23606797749979},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":2.0},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.7320508075688772},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":2.0},"63":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":3.0},"66":{"tf":1.4142135623730951},"88":{"tf":1.0},"97":{"tf":2.449489742783178}}}},"t":{"df":9,"docs":{"111":{"tf":1.0},"142":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"198":{"tf":1.0},"43":{"tf":1.0},"8":{"tf":1.0}}}},"′":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"p":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"q":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"q":{"3":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"(":{"df":0,"docs":{},"v":{"0":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"":{"=":{"(":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"":{"=":{"(":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"5":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":0,"docs":{},"":{"=":{"(":{"df":0,"docs":{},"v":{"6":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"7":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"23":{"tf":1.0},"82":{"tf":1.4142135623730951}},"u":{"a":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"209":{"tf":1.7320508075688772},"77":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"]":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{")":{".":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"77":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"24":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"178":{"tf":1.0},"65":{"tf":1.0}}}}}}}}}},"r":{"+":{"1":{"5":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"r":{"3":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"r":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"r":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"}":{"df":0,"docs":{},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"a":{"7":{"df":0,"docs":{},"":{",":{"b":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"b":{"7":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"g":{"df":2,"docs":{"239":{"tf":1.0},"240":{"tf":1.0}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":22,"docs":{"105":{"tf":1.7320508075688772},"129":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":39,"docs":{"124":{"tf":1.0},"142":{"tf":1.7320508075688772},"169":{"tf":2.8284271247461903},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"210":{"tf":2.23606797749979},"211":{"tf":2.23606797749979},"212":{"tf":1.7320508075688772},"213":{"tf":2.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":2.8284271247461903},"221":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.4142135623730951},"34":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"84":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"104":{"tf":1.0},"116":{"tf":1.4142135623730951},"206":{"tf":1.0},"233":{"tf":1.7320508075688772},"238":{"tf":1.0},"245":{"tf":1.0},"68":{"tf":1.0},"85":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"4":{"tf":1.0},"87":{"tf":1.0}}}},"df":1,"docs":{"253":{"tf":1.0}}}}}},"w":{"df":2,"docs":{"33":{"tf":2.449489742783178},"50":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"14":{"tf":1.0}}}}}},"c":{"_":{"1":{"6":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":12,"docs":{"104":{"tf":1.4142135623730951},"15":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"23":{"tf":1.0},"240":{"tf":1.0},"261":{"tf":1.0},"65":{"tf":2.449489742783178},"68":{"tf":3.605551275463989},"82":{"tf":1.4142135623730951}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"111":{"tf":2.23606797749979},"112":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"df":26,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":2.23606797749979},"258":{"tf":3.0},"259":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"44":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":2.449489742783178},"8":{"tf":1.0}},"i":{"df":1,"docs":{"1":{"tf":1.0}}},"–":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"–":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"3":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"105":{"tf":1.0},"130":{"tf":1.0},"142":{"tf":1.0},"19":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"142":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":5,"docs":{"107":{"tf":1.0},"15":{"tf":1.0},"3":{"tf":1.4142135623730951},"37":{"tf":1.0},"90":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":29,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"129":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"69":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":4,"docs":{"103":{"tf":1.0},"138":{"tf":1.0},"143":{"tf":1.4142135623730951},"209":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"0":{"tf":1.0},"38":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":2.0},"220":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":1.7320508075688772},"39":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"62":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"87":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"101":{"tf":1.0},"133":{"tf":1.0},"221":{"tf":1.0},"245":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"10":{"tf":1.0},"44":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":35,"docs":{"103":{"tf":3.605551275463989},"104":{"tf":1.0},"106":{"tf":4.47213595499958},"111":{"tf":3.7416573867739413},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"123":{"tf":2.23606797749979},"125":{"tf":1.7320508075688772},"138":{"tf":3.0},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"259":{"tf":1.0},"99":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"103":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.7320508075688772},"55":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"232":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0}}}},"df":2,"docs":{"1":{"tf":1.0},"212":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"v":{"df":9,"docs":{"104":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"169":{"tf":1.4142135623730951},"243":{"tf":1.0},"245":{"tf":1.0}}}},"i":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"130":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"220":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.0},"274":{"tf":1.0},"88":{"tf":1.0}}}},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":2.23606797749979}}}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"178":{"tf":1.0},"65":{"tf":1.0},"77":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}},"df":38,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":2.23606797749979},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":2.0},"259":{"tf":1.0},"261":{"tf":1.7320508075688772},"31":{"tf":1.0},"44":{"tf":1.4142135623730951},"8":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":31,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":2.23606797749979},"108":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":3.7416573867739413},"112":{"tf":2.23606797749979},"117":{"tf":2.6457513110645907},"118":{"tf":2.8284271247461903},"123":{"tf":1.4142135623730951},"126":{"tf":3.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"131":{"tf":2.0},"135":{"tf":1.7320508075688772},"140":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"51":{"tf":2.0},"66":{"tf":2.0},"86":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{".":{"1":{"0":{"df":1,"docs":{"48":{"tf":1.0}}},"6":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"101":{"tf":1.0},"106":{"tf":2.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":2.0},"118":{"tf":2.0},"144":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"246":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":7,"docs":{"111":{"tf":1.0},"13":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"240":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"16":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":2.8284271247461903},"25":{"tf":1.0},"26":{"tf":1.0}}},"o":{"df":1,"docs":{"22":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":41,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":2.0},"118":{"tf":2.6457513110645907},"126":{"tf":2.23606797749979},"128":{"tf":1.0},"129":{"tf":1.0},"17":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"233":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"111":{"tf":1.0},"128":{"tf":1.0},"138":{"tf":1.0},"170":{"tf":1.0},"224":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"58":{"tf":2.8284271247461903},"63":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":2.449489742783178},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"215":{"tf":1.0},"219":{"tf":1.7320508075688772},"224":{"tf":1.0},"228":{"tf":2.23606797749979},"229":{"tf":2.0},"252":{"tf":1.0},"259":{"tf":1.4142135623730951},"263":{"tf":1.0},"271":{"tf":2.6457513110645907},"272":{"tf":1.7320508075688772},"41":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":45,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"119":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"170":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"230":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"272":{"tf":1.0},"274":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":12,"docs":{"2":{"tf":1.0},"206":{"tf":1.4142135623730951},"220":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"258":{"tf":1.0},"68":{"tf":2.23606797749979},"88":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"2":{"tf":1.0},"233":{"tf":1.4142135623730951},"44":{"tf":2.0},"45":{"tf":1.0}}}},"t":{"df":2,"docs":{"120":{"tf":1.0},"42":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"207":{"tf":1.0},"223":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"274":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":17,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.7320508075688772},"111":{"tf":2.449489742783178},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":2.449489742783178},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"144":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"111":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"226":{"tf":1.0},"245":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":11,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":2.23606797749979},"229":{"tf":1.0},"252":{"tf":1.0},"271":{"tf":2.449489742783178},"272":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}}}}}},"t":{"df":55,"docs":{"111":{"tf":1.0},"137":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"31":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"2":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"50":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":53,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.449489742783178},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":1.7320508075688772},"118":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"246":{"tf":2.23606797749979},"247":{"tf":2.0},"25":{"tf":1.0},"252":{"tf":1.0},"265":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.4142135623730951},"55":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.449489742783178},"9":{"tf":1.0},"97":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"35":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"111":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":19,"docs":{"104":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"66":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}},"e":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"111":{"tf":1.0},"117":{"tf":1.0},"138":{"tf":1.0}}},"t":{"df":2,"docs":{"224":{"tf":1.0},"31":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"a":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":1,"docs":{"268":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":29,"docs":{"106":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.6457513110645907},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":2.0},"137":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"146":{"tf":2.23606797749979},"147":{"tf":1.0},"154":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"243":{"tf":1.7320508075688772},"39":{"tf":1.0},"45":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"68":{"tf":1.0},"84":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0}}}}},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"0":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"1":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"2":{",":{"df":0,"docs":{},"i":{"df":2,"docs":{"129":{"tf":1.0},"268":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}}},"m":{"'":{"df":2,"docs":{"262":{"tf":1.0},"263":{"tf":1.0}}},"df":13,"docs":{"116":{"tf":1.7320508075688772},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"260":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"269":{"tf":1.0},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"75":{"tf":1.0}}}}},"df":29,"docs":{"100":{"tf":1.0},"105":{"tf":2.23606797749979},"107":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":1.0},"2":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":2.23606797749979},"232":{"tf":2.23606797749979},"233":{"tf":2.23606797749979},"240":{"tf":1.7320508075688772},"243":{"tf":1.0},"245":{"tf":3.1622776601683795},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"41":{"tf":2.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"75":{"tf":3.0},"8":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":2.0},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"19":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951}}}}}},"n":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":10,"docs":{"166":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"240":{"tf":2.449489742783178},"244":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"'":{"df":1,"docs":{"251":{"tf":1.0}}},"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"2":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"6":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":67,"docs":{"103":{"tf":1.0},"104":{"tf":2.449489742783178},"105":{"tf":3.0},"106":{"tf":4.0},"110":{"tf":1.7320508075688772},"111":{"tf":4.123105625617661},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":3.3166247903554},"118":{"tf":2.8284271247461903},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":2.449489742783178},"126":{"tf":3.1622776601683795},"128":{"tf":1.0},"129":{"tf":3.872983346207417},"130":{"tf":2.449489742783178},"131":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"211":{"tf":2.23606797749979},"213":{"tf":2.449489742783178},"217":{"tf":2.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"223":{"tf":3.1622776601683795},"226":{"tf":1.0},"227":{"tf":2.0},"231":{"tf":1.4142135623730951},"233":{"tf":2.6457513110645907},"234":{"tf":4.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"244":{"tf":2.23606797749979},"245":{"tf":3.0},"246":{"tf":3.0},"247":{"tf":2.8284271247461903},"250":{"tf":2.449489742783178},"251":{"tf":2.449489742783178},"252":{"tf":2.0},"254":{"tf":2.6457513110645907},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.7320508075688772},"259":{"tf":2.0},"261":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":3.1622776601683795},"268":{"tf":2.23606797749979},"87":{"tf":1.7320508075688772},"97":{"tf":1.0}}}},"p":{"c":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":9,"docs":{"113":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":24,"docs":{"105":{"tf":1.7320508075688772},"112":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":2.23606797749979},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"211":{"tf":2.23606797749979},"212":{"tf":2.23606797749979},"217":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.7320508075688772},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":3.872983346207417},"267":{"tf":1.0},"271":{"tf":1.7320508075688772},"32":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"37":{"tf":1.0},"66":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"11":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"r":{")":{"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"3":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{",":{"d":{")":{")":{"df":0,"docs":{},"r":{"df":0,"docs":{},"′":{"df":0,"docs":{},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{",":{"d":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"0":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":9,"docs":{"161":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":23,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"126":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.4142135623730951},"217":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.4142135623730951},"258":{"tf":2.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},",":{".":{".":{".":{",":{"df":0,"docs":{},"s":{"1":{"4":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},".":{".":{".":{"df":0,"docs":{},"s":{"1":{"5":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"0":{"df":3,"docs":{"212":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"263":{"tf":1.0}}},"1":{"df":3,"docs":{"212":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"263":{"tf":1.0}}},"2":{"4":{"8":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"=":{"0":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"1":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"3":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"2":{"4":{"8":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"2":{"4":{"8":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"":{"=":{"0":{"df":2,"docs":{"159":{"tf":1.0},"165":{"tf":1.0}}},"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"′":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"166":{"tf":1.0},"175":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"182":{"tf":1.0}}},"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"2":{"df":4,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"2":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"+":{"1":{")":{"=":{"0":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{")":{"=":{"0":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"=":{"0":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"158":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"184":{"tf":1.0},"190":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"⋅":{"(":{"df":0,"docs":{},"f":{"a":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"1":{"2":{"df":1,"docs":{"204":{"tf":1.0}},"":{"+":{"1":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":3,"docs":{"212":{"tf":1.0},"218":{"tf":1.0},"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"s":{"1":{"2":{"df":0,"docs":{},"":{"+":{"2":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"5":{"df":2,"docs":{"131":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951}}},"df":10,"docs":{"162":{"tf":1.0},"163":{"tf":1.0},"212":{"tf":1.4142135623730951},"217":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.4142135623730951},"258":{"tf":2.0},"259":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"s":{"1":{"5":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"0":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"212":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"⋅":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"′":{"df":0,"docs":{},"":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":7,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"1":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"≤":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}}}}},"2":{"df":5,"docs":{"223":{"tf":1.4142135623730951},"227":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0}},"":{"=":{"1":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{")":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"∗":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"−":{"df":0,"docs":{},"s":{"=":{"0":{"df":1,"docs":{"249":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"3":{"df":1,"docs":{"227":{"tf":1.0}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"∗":{"2":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{"+":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"=":{"0":{"df":1,"docs":{"249":{"tf":1.0}}},"1":{"df":1,"docs":{"249":{"tf":1.0}}},"df":0,"docs":{}},"_":{"1":{"df":1,"docs":{"259":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":46,"docs":{"101":{"tf":1.0},"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"127":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.4142135623730951},"150":{"tf":1.0},"184":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.7320508075688772},"233":{"tf":1.7320508075688772},"240":{"tf":2.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":2.0},"249":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":2.0},"256":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":2.6457513110645907},"259":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"267":{"tf":1.0},"271":{"tf":2.0},"272":{"tf":1.4142135623730951},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"60":{"tf":2.23606797749979},"89":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":37,"docs":{"133":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"243":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"202":{"tf":1.0},"203":{"tf":1.0},"24":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}},"c":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"110":{"tf":1.0},"27":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"138":{"tf":1.0},"274":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"141":{"tf":1.0},"196":{"tf":1.7320508075688772},"64":{"tf":1.0}}}}}}},"df":3,"docs":{"23":{"tf":1.0},"248":{"tf":1.0},"65":{"tf":2.449489742783178}},"e":{"c":{"df":2,"docs":{"20":{"tf":2.8284271247461903},"21":{"tf":2.0}},"o":{"df":0,"docs":{},"n":{"d":{"df":25,"docs":{"105":{"tf":1.7320508075688772},"108":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"211":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"245":{"tf":1.7320508075688772},"254":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.7320508075688772},"2":{"tf":1.0},"8":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":36,"docs":{"100":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":2.23606797749979},"123":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"217":{"tf":1.0},"219":{"tf":1.0},"232":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"25":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"37":{"tf":1.0},"4":{"tf":1.7320508075688772},"42":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"1":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"266":{"tf":1.4142135623730951},"274":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"17":{"tf":1.0},"209":{"tf":1.0},"62":{"tf":1.0},"71":{"tf":1.0}},"n":{"df":4,"docs":{"138":{"tf":1.0},"20":{"tf":1.0},"223":{"tf":1.0},"89":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"209":{"tf":1.4142135623730951},"221":{"tf":1.0},"273":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"226":{"tf":1.0},"233":{"tf":1.4142135623730951},"245":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0},"47":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"224":{"tf":1.0}}},"df":25,"docs":{"104":{"tf":1.7320508075688772},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"169":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.7320508075688772},"223":{"tf":1.7320508075688772},"224":{"tf":2.0},"226":{"tf":1.7320508075688772},"227":{"tf":4.358898943540674},"230":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":3.4641016151377544},"242":{"tf":1.4142135623730951},"245":{"tf":1.0},"249":{"tf":1.7320508075688772},"251":{"tf":1.0},"258":{"tf":2.0},"259":{"tf":1.0},"262":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"168":{"tf":1.0},"195":{"tf":1.0},"240":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"63":{"tf":1.0},"90":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"d":{"df":7,"docs":{"116":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"245":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.0}}},"t":{"df":9,"docs":{"116":{"tf":1.0},"219":{"tf":1.4142135623730951},"224":{"tf":1.0},"228":{"tf":2.0},"229":{"tf":1.0},"245":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":2.23606797749979},"87":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"2":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.0},"36":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":18,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"18":{"tf":1.0},"246":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"88":{"tf":1.0},"97":{"tf":2.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"104":{"tf":2.0},"106":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.4142135623730951},"220":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"35":{"tf":1.0},"69":{"tf":1.0}}}},"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"v":{"df":4,"docs":{"103":{"tf":1.0},"142":{"tf":1.0},"245":{"tf":1.0},"6":{"tf":1.0}}}},"t":{"df":104,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.23606797749979},"105":{"tf":2.0},"106":{"tf":3.605551275463989},"11":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":2.6457513110645907},"113":{"tf":2.23606797749979},"114":{"tf":1.4142135623730951},"116":{"tf":2.8284271247461903},"117":{"tf":2.0},"118":{"tf":2.0},"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":2.449489742783178},"124":{"tf":2.0},"125":{"tf":2.23606797749979},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":2.449489742783178},"132":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"138":{"tf":2.23606797749979},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"223":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":2.449489742783178},"234":{"tf":4.358898943540674},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"242":{"tf":2.0},"243":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":2.0},"258":{"tf":3.0},"259":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"274":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"100":{"tf":1.0},"246":{"tf":1.4142135623730951}}},"r":{"df":9,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"145":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"33":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"88":{"tf":1.0}}}}}},"h":{"a":{"2":{"5":{"6":{"df":2,"docs":{"72":{"tf":1.0},"80":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.0},"230":{"tf":1.0},"245":{"tf":1.0},"69":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":45,"docs":{"127":{"tf":1.0},"130":{"tf":2.6457513110645907},"131":{"tf":2.449489742783178},"132":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"135":{"tf":2.6457513110645907},"137":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":2.23606797749979},"147":{"tf":3.0},"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"81":{"tf":1.0},"84":{"tf":4.123105625617661}}}},"p":{"df":1,"docs":{"2":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":4,"docs":{"100":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"w":{"df":2,"docs":{"138":{"tf":1.0},"169":{"tf":1.0}},"n":{"df":15,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":2.449489742783178},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"138":{"tf":1.0},"246":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"272":{"tf":1.0},"89":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"i":{"+":{"1":{"2":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"8":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"187":{"tf":1.0},"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"162":{"tf":1.0},"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"208":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":2.0},"245":{"tf":3.1622776601683795},"269":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"259":{"tf":1.0},"263":{"tf":1.0}}}},"df":1,"docs":{"238":{"tf":1.0}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"221":{"tf":1.0}}}}}}},"df":13,"docs":{"111":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951},"258":{"tf":1.0},"33":{"tf":1.0},"81":{"tf":1.0}}},"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":2.0},"118":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.4142135623730951},"44":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"115":{"tf":1.0},"147":{"tf":1.0},"184":{"tf":1.0},"210":{"tf":1.0},"257":{"tf":1.0},"43":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"112":{"tf":1.0},"18":{"tf":1.0},"212":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.4142135623730951},"33":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"211":{"tf":1.0},"254":{"tf":1.0}}}}},"i":{"c":{"df":3,"docs":{"170":{"tf":1.0},"222":{"tf":1.0},"247":{"tf":1.0}}},"df":6,"docs":{"111":{"tf":1.4142135623730951},"130":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"35":{"tf":1.0},"87":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":24,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"33":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"240":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":44,"docs":{"103":{"tf":1.4142135623730951},"105":{"tf":2.449489742783178},"11":{"tf":1.0},"111":{"tf":3.1622776601683795},"112":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"134":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"20":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"219":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"236":{"tf":1.4142135623730951},"239":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":2.23606797749979},"25":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":2.23606797749979},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"271":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.0},"97":{"tf":3.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"257":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":8,"docs":{"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":2.0},"209":{"tf":1.7320508075688772},"70":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"+":{"1":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"187":{"tf":1.0},"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":6,"docs":{"104":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"49":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951}}},"w":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.0},"232":{"tf":1.0},"266":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"246":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"105":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"211":{"tf":1.0},"23":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"19":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":7,"docs":{"2":{"tf":1.0},"209":{"tf":1.4142135623730951},"23":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"3":{"tf":1.0},"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"232":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0}}}}},"p":{"=":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":8,"docs":{"130":{"tf":1.0},"2":{"tf":1.0},"221":{"tf":1.0},"25":{"tf":1.0},"266":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":2.23606797749979}}}},"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":25,"docs":{"101":{"tf":3.1622776601683795},"103":{"tf":2.0},"105":{"tf":2.0},"106":{"tf":2.6457513110645907},"107":{"tf":1.4142135623730951},"111":{"tf":5.291502622129181},"112":{"tf":3.1622776601683795},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"122":{"tf":3.0},"123":{"tf":2.23606797749979},"124":{"tf":2.0},"125":{"tf":1.7320508075688772},"126":{"tf":2.23606797749979},"143":{"tf":1.0},"2":{"tf":1.0},"41":{"tf":1.0},"97":{"tf":2.23606797749979},"99":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"10":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":2.449489742783178}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"103":{"tf":1.0},"120":{"tf":2.23606797749979},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"220":{"tf":1.4142135623730951},"228":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"44":{"tf":1.4142135623730951},"68":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":26,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"16":{"tf":1.0},"209":{"tf":1.0},"220":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"232":{"tf":1.0},"233":{"tf":1.0},"244":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.7320508075688772},"36":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":35,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"120":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":2.23606797749979},"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"226":{"tf":1.0},"261":{"tf":1.0},"270":{"tf":1.4142135623730951},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":3.7416573867739413},"88":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"2":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"101":{"tf":2.23606797749979},"103":{"tf":1.0},"106":{"tf":2.23606797749979},"109":{"tf":1.7320508075688772},"112":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"93":{"tf":2.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"=":{"0":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"′":{"=":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"δ":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"33":{"tf":1.0}}}},"l":{"df":2,"docs":{"1":{"tf":1.0},"33":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"75":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"4":{")":{",":{"a":{"d":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}}}},"df":147,"docs":{"10":{"tf":2.0},"101":{"tf":1.4142135623730951},"105":{"tf":2.449489742783178},"106":{"tf":3.4641016151377544},"109":{"tf":1.0},"110":{"tf":3.872983346207417},"111":{"tf":2.0},"112":{"tf":3.872983346207417},"113":{"tf":4.123105625617661},"114":{"tf":1.7320508075688772},"117":{"tf":4.0},"118":{"tf":2.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":4.0},"128":{"tf":3.0},"129":{"tf":2.449489742783178},"130":{"tf":3.1622776601683795},"131":{"tf":3.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":2.6457513110645907},"135":{"tf":1.4142135623730951},"137":{"tf":3.3166247903554},"139":{"tf":4.58257569495584},"140":{"tf":2.449489742783178},"141":{"tf":4.0},"142":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"150":{"tf":2.0},"151":{"tf":1.7320508075688772},"152":{"tf":2.0},"153":{"tf":1.7320508075688772},"154":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":1.7320508075688772},"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"166":{"tf":2.0},"167":{"tf":2.8284271247461903},"17":{"tf":2.0},"171":{"tf":1.7320508075688772},"172":{"tf":2.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"183":{"tf":1.7320508075688772},"184":{"tf":3.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772},"190":{"tf":2.6457513110645907},"191":{"tf":2.449489742783178},"192":{"tf":2.0},"193":{"tf":2.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":2.23606797749979},"197":{"tf":2.23606797749979},"198":{"tf":2.449489742783178},"199":{"tf":1.0},"200":{"tf":2.0},"201":{"tf":2.0},"202":{"tf":2.23606797749979},"203":{"tf":2.0},"204":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"206":{"tf":2.23606797749979},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"209":{"tf":3.1622776601683795},"215":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.7320508075688772},"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":1.7320508075688772},"24":{"tf":1.0},"245":{"tf":1.7320508075688772},"252":{"tf":1.0},"259":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"28":{"tf":2.6457513110645907},"31":{"tf":2.0},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.0},"45":{"tf":2.8284271247461903},"47":{"tf":1.0},"49":{"tf":2.23606797749979},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"6":{"tf":3.0},"60":{"tf":5.0990195135927845},"62":{"tf":2.6457513110645907},"63":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":5.0990195135927845},"66":{"tf":4.123105625617661},"68":{"tf":1.0},"74":{"tf":2.8284271247461903},"75":{"tf":2.449489742783178},"79":{"tf":2.0},"8":{"tf":2.449489742783178},"80":{"tf":2.0},"81":{"tf":2.23606797749979},"82":{"tf":3.872983346207417},"83":{"tf":4.69041575982343},"84":{"tf":3.0},"85":{"tf":1.7320508075688772},"86":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"9":{"tf":2.23606797749979},"93":{"tf":2.0},"94":{"tf":2.8284271247461903},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"32":{"tf":1.4142135623730951},"38":{"tf":1.0},"69":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"258":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":9,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"274":{"tf":4.123105625617661},"4":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":95,"docs":{"105":{"tf":2.23606797749979},"107":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":1.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":2.0},"127":{"tf":1.0},"137":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":2.23606797749979},"233":{"tf":1.0},"234":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"245":{"tf":2.0},"261":{"tf":1.0},"271":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"74":{"tf":1.7320508075688772},"8":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}}}},"t":{"df":1,"docs":{"16":{"tf":1.4142135623730951}},"e":{"df":43,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":2.23606797749979},"106":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":2.23606797749979},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"150":{"tf":1.4142135623730951},"172":{"tf":1.0},"18":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":2.23606797749979},"233":{"tf":2.449489742783178},"236":{"tf":2.449489742783178},"237":{"tf":2.0},"238":{"tf":2.6457513110645907},"239":{"tf":2.6457513110645907},"24":{"tf":1.0},"240":{"tf":2.6457513110645907},"243":{"tf":1.4142135623730951},"244":{"tf":2.23606797749979},"245":{"tf":3.3166247903554},"28":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"2":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":3,"docs":{"255":{"tf":1.0},"256":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":1.0}}}},"y":{"df":6,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"217":{"tf":1.0},"249":{"tf":1.0},"262":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"6":{"4":{"df":2,"docs":{"72":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"f":{"4":{"df":2,"docs":{"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"76":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"3":{"df":2,"docs":{"72":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":2,"docs":{"72":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"u":{"6":{"4":{"df":4,"docs":{"38":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"71":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"72":{"tf":1.0},"85":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"72":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"255":{"tf":1.0}}}},"p":{"df":16,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":2.449489742783178},"112":{"tf":2.23606797749979},"130":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":2.23606797749979},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"242":{"tf":1.0},"267":{"tf":1.0},"99":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"110":{"tf":1.0},"137":{"tf":1.0},"212":{"tf":1.0},"255":{"tf":1.0},"63":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"6":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"10":{"tf":1.7320508075688772},"114":{"tf":1.0},"128":{"tf":1.0},"17":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"265":{"tf":1.0},"267":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"6":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":2.23606797749979},"79":{"tf":2.0},"80":{"tf":2.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"219":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":2.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":16,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"17":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"233":{"tf":1.0},"255":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"16":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"52":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"34":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":9,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"137":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"262":{"tf":1.0},"37":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"82":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"65":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"h":{"df":21,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"121":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.7320508075688772},"233":{"tf":1.0},"245":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"29":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"170":{"tf":1.0},"199":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":4,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"207":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"17":{"tf":2.23606797749979},"2":{"tf":1.4142135623730951},"55":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"138":{"tf":1.0},"2":{"tf":2.449489742783178},"212":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"270":{"tf":1.0},"3":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"39":{"tf":1.4142135623730951},"7":{"tf":1.0},"88":{"tf":1.0}}}},"s":{"df":2,"docs":{"239":{"tf":1.0},"240":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":26,"docs":{"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"114":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"218":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"250":{"tf":2.0},"254":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":2.0},"264":{"tf":1.0},"9":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"p":{".":{"1":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"w":{"df":3,"docs":{"139":{"tf":1.0},"189":{"tf":1.7320508075688772},"60":{"tf":1.0}}}},"df":11,"docs":{"139":{"tf":1.0},"185":{"tf":2.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"60":{"tf":2.6457513110645907}},"w":{".":{"1":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":2,"docs":{"139":{"tf":1.0},"187":{"tf":1.7320508075688772}}},"3":{"df":2,"docs":{"139":{"tf":1.0},"188":{"tf":1.7320508075688772}}},"df":3,"docs":{"139":{"tf":1.0},"186":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951}}}},"y":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"246":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"33":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":2.0},"144":{"tf":1.0},"220":{"tf":1.0},"229":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":2.6457513110645907},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"64":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":3.0},"99":{"tf":1.0}},"l":{".":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"245":{"tf":1.0}}},"df":16,"docs":{"111":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"149":{"tf":1.4142135623730951},"169":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"4":{"tf":1.4142135623730951},"72":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"c":{"'":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"⋅":{"(":{"df":0,"docs":{},"z":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"1":{"6":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"2":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{")":{")":{"=":{"0":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"0":{"df":4,"docs":{"105":{"tf":1.7320508075688772},"129":{"tf":1.0},"131":{"tf":1.0},"170":{"tf":1.0}},"":{",":{"df":0,"docs":{},"t":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"df":5,"docs":{"105":{"tf":1.4142135623730951},"129":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"170":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"t":{"4":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":6,"docs":{"105":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"170":{"tf":1.0}}},"3":{"df":1,"docs":{"170":{"tf":1.0}}},"5":{"df":1,"docs":{"105":{"tf":1.0}}},"6":{"df":1,"docs":{"105":{"tf":1.0}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"77":{"tf":2.0}}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":51,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":6.244997998398398},"106":{"tf":5.291502622129181},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":3.0},"111":{"tf":4.898979485566356},"112":{"tf":4.358898943540674},"113":{"tf":2.6457513110645907},"115":{"tf":2.0},"117":{"tf":4.123105625617661},"118":{"tf":4.123105625617661},"119":{"tf":1.4142135623730951},"126":{"tf":4.358898943540674},"128":{"tf":1.0},"129":{"tf":3.4641016151377544},"130":{"tf":2.8284271247461903},"131":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":2.8284271247461903},"17":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.4142135623730951},"221":{"tf":1.0},"230":{"tf":3.0},"231":{"tf":2.23606797749979},"233":{"tf":3.0},"244":{"tf":1.0},"245":{"tf":3.3166247903554},"246":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"248":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":3.1622776601683795},"265":{"tf":1.7320508075688772},"267":{"tf":2.8284271247461903},"268":{"tf":2.0},"269":{"tf":3.1622776601683795},"50":{"tf":1.0},"55":{"tf":1.4142135623730951},"67":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"21":{"tf":1.0},"55":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.449489742783178}},"n":{"df":2,"docs":{"101":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"13":{"tf":1.0},"15":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"24":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"35":{"tf":1.4142135623730951},"7":{"tf":1.0},"71":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"101":{"tf":1.0},"13":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0}}}}},"df":5,"docs":{"256":{"tf":1.4142135623730951},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0},"64":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"104":{"tf":1.0},"116":{"tf":1.7320508075688772},"118":{"tf":2.23606797749979},"127":{"tf":1.0},"18":{"tf":1.0},"206":{"tf":1.0},"34":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"37":{"tf":1.0},"45":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"274":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"69":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"t":{"'":{"df":3,"docs":{"271":{"tf":1.0},"272":{"tf":1.0},"55":{"tf":1.0}}},":":{"1":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"111":{"tf":1.0},"184":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"230":{"tf":1.0},"71":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"116":{"tf":1.0},"223":{"tf":1.7320508075688772},"262":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}},"g":{"df":3,"docs":{"2":{"tf":1.0},"24":{"tf":1.4142135623730951},"60":{"tf":1.0}}}},"r":{"d":{"df":10,"docs":{"105":{"tf":1.4142135623730951},"112":{"tf":1.0},"138":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"23":{"tf":1.0},"245":{"tf":1.4142135623730951},"35":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"215":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0},"270":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"111":{"tf":1.0},"212":{"tf":1.0}},"t":{"df":6,"docs":{"105":{"tf":1.7320508075688772},"111":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.0},"232":{"tf":1.0},"266":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":9,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"123":{"tf":1.0},"143":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.4142135623730951},"42":{"tf":1.0},"6":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"23":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.0},"249":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}}}}}}}}},"u":{"df":77,"docs":{"100":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":2.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"138":{"tf":2.449489742783178},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"147":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"238":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.7320508075688772},"271":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.7320508075688772},"7":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":2.0},"98":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":1,"docs":{"238":{"tf":1.0}},"e":{"df":2,"docs":{"233":{"tf":1.0},"245":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":25,"docs":{"105":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"129":{"tf":1.0},"19":{"tf":3.0},"20":{"tf":2.449489742783178},"209":{"tf":1.0},"21":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"226":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951},"263":{"tf":1.0},"267":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":6,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"211":{"tf":1.0},"240":{"tf":1.4142135623730951},"245":{"tf":1.0},"65":{"tf":1.0},"87":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"116":{"tf":1.0}}},"l":{"df":5,"docs":{"16":{"tf":1.0},"22":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0}}}},"p":{"df":71,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":3.3166247903554},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.6457513110645907},"114":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"42":{"tf":1.7320508075688772},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":3.1622776601683795},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":2.449489742783178},"68":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"93":{"tf":2.0},"94":{"tf":2.8284271247461903},"98":{"tf":2.23606797749979}}},"t":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"106":{"tf":1.0},"111":{"tf":2.0},"138":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"258":{"tf":1.0},"37":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":49,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":2.0},"128":{"tf":1.0},"136":{"tf":1.7320508075688772},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":2.449489742783178},"218":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":3.872983346207417},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"230":{"tf":1.0},"233":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"258":{"tf":2.23606797749979},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"265":{"tf":2.8284271247461903},"266":{"tf":3.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772}}},"k":{"df":16,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"117":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.4142135623730951},"260":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"89":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"19":{"tf":1.0},"258":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":58,"docs":{"113":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"223":{"tf":2.6457513110645907},"231":{"tf":1.4142135623730951},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"41":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":24,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"17":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":2.0},"220":{"tf":1.0},"239":{"tf":2.23606797749979},"240":{"tf":2.449489742783178},"33":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":3.1622776601683795},"75":{"tf":3.1622776601683795},"77":{"tf":1.0},"8":{"tf":2.449489742783178},"88":{"tf":1.0},"90":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"255":{"tf":1.0}}}}},"df":4,"docs":{"213":{"tf":1.0},"35":{"tf":1.0},"66":{"tf":1.0},"98":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"223":{"tf":1.0},"252":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"42":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"106":{"tf":3.605551275463989},"111":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"135":{"tf":1.4142135623730951},"17":{"tf":1.0},"77":{"tf":1.7320508075688772}},"e":{".":{"2":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}},"n":{"df":4,"docs":{"112":{"tf":1.0},"138":{"tf":1.0},"169":{"tf":1.0},"36":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"233":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"'":{"df":1,"docs":{"175":{"tf":1.0}}},"df":64,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"115":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"148":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":2.0},"227":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":2.8284271247461903},"259":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"269":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":3.872983346207417},"83":{"tf":4.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":10,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.0},"234":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"266":{"tf":1.0},"270":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}}}},"←":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"u":{"3":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"2":{"a":{"d":{"d":{"3":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772}}},"df":2,"docs":{"142":{"tf":1.0},"173":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"140":{"tf":1.0},"179":{"tf":1.7320508075688772},"248":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"1":{"df":1,"docs":{"56":{"tf":1.0}}},"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":2,"docs":{"142":{"tf":1.0},"172":{"tf":1.7320508075688772}}},"df":1,"docs":{"56":{"tf":1.0}},"w":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{".":{"b":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"27":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"57":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"28":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"u":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"142":{"tf":1.0},"178":{"tf":1.7320508075688772}}}}},"df":10,"docs":{"140":{"tf":1.4142135623730951},"142":{"tf":3.1622776601683795},"168":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.0},"55":{"tf":1.0},"81":{"tf":1.0}},"m":{"a":{"d":{"d":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"142":{"tf":1.0},"176":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"3":{"df":1,"docs":{"57":{"tf":1.0}}},"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"d":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"56":{"tf":1.0}}}}}},"u":{"b":{"df":2,"docs":{"142":{"tf":1.0},"175":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}},"w":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"57":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"3":{"df":1,"docs":{"57":{"tf":1.0}}},"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"d":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"140":{"tf":1.0},"180":{"tf":1.7320508075688772},"248":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0}}}}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"65":{"tf":1.0},"81":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"1":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"+":{"df":0,"docs":{},"α":{"4":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"z":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"d":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"213":{"tf":1.0},"252":{"tf":1.7320508075688772},"263":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"b":{"df":0,"docs":{},"h":{"+":{"df":0,"docs":{},"α":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"5":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":1,"docs":{"252":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"tf":1.4142135623730951}},"":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{",":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{",":{"2":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"4":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"+":{"df":0,"docs":{},"v":{"df":2,"docs":{"200":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"113":{"tf":2.23606797749979},"167":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"238":{"tf":1.0},"259":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"55":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951}},"e":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"82":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"83":{"tf":1.0}},"z":{"df":1,"docs":{"83":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"83":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"242":{"tf":1.0},"244":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"55":{"tf":1.0},"57":{"tf":3.605551275463989},"58":{"tf":2.23606797749979},"59":{"tf":2.449489742783178},"77":{"tf":1.0},"81":{"tf":1.0}}}}},"r":{"df":9,"docs":{"135":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"19":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"38":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"82":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":2,"docs":{"24":{"tf":1.0},"31":{"tf":2.449489742783178}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":32,"docs":{"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"252":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"272":{"tf":1.0},"89":{"tf":1.0},"99":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"234":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"87":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":7,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"127":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":8,"docs":{"168":{"tf":1.0},"2":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"120":{"tf":1.0},"23":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"139":{"tf":1.0},"143":{"tf":2.8284271247461903}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":22,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"232":{"tf":2.23606797749979},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"240":{"tf":1.7320508075688772},"243":{"tf":1.0},"245":{"tf":2.23606797749979},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":17,"docs":{"105":{"tf":1.4142135623730951},"111":{"tf":2.0},"138":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"238":{"tf":1.0},"258":{"tf":1.7320508075688772},"6":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"77":{"tf":1.0},"97":{"tf":2.0},"98":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"266":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"11":{"tf":1.0},"32":{"tf":1.0},"71":{"tf":1.0}}}},"df":136,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":1.0},"105":{"tf":2.0},"106":{"tf":2.449489742783178},"107":{"tf":1.0},"11":{"tf":2.0},"111":{"tf":3.0},"113":{"tf":2.0},"115":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":1.0},"118":{"tf":1.7320508075688772},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":3.0},"14":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"147":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"199":{"tf":1.0},"2":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"210":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":1.0},"220":{"tf":2.0},"223":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":2.449489742783178},"233":{"tf":3.4641016151377544},"234":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":2.0},"243":{"tf":1.0},"245":{"tf":3.4641016151377544},"246":{"tf":1.4142135623730951},"247":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.449489742783178},"266":{"tf":1.7320508075688772},"267":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":2.0},"38":{"tf":2.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":2.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"77":{"tf":2.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.872983346207417},"87":{"tf":1.7320508075688772},"88":{"tf":3.0},"89":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.0},"99":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"u":{"6":{"4":{"df":2,"docs":{"38":{"tf":1.4142135623730951},"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"97":{"tf":1.0}}},"df":11,"docs":{"17":{"tf":1.0},"2":{"tf":1.7320508075688772},"23":{"tf":1.7320508075688772},"32":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"69":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"d":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"72":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"52":{"tf":1.0}}}}},"v":{"0":{".":{"7":{"df":2,"docs":{"1":{"tf":1.0},"11":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"258":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"v":{"7":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"3":{"df":3,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"7":{"df":1,"docs":{"130":{"tf":1.0}}},"8":{"df":1,"docs":{"130":{"tf":1.0}}},"df":3,"docs":{"126":{"tf":1.0},"130":{"tf":1.0},"258":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"2":{"df":3,"docs":{"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"258":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"258":{"tf":1.0}}},"8":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"v":{"1":{"5":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":2,"docs":{"200":{"tf":1.0},"202":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"264":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"1":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"1":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":2,"docs":{"201":{"tf":1.0},"203":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"245":{"tf":1.0}},"l":{"df":2,"docs":{"166":{"tf":1.4142135623730951},"255":{"tf":2.6457513110645907}},"i":{"d":{"df":13,"docs":{"107":{"tf":1.0},"170":{"tf":2.449489742783178},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"25":{"tf":1.0},"60":{"tf":2.8284271247461903},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":157,"docs":{"10":{"tf":2.0},"100":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":3.605551275463989},"105":{"tf":4.0},"106":{"tf":4.795831523312719},"110":{"tf":1.7320508075688772},"111":{"tf":5.477225575051661},"113":{"tf":2.0},"114":{"tf":2.8284271247461903},"116":{"tf":4.123105625617661},"117":{"tf":3.3166247903554},"118":{"tf":3.605551275463989},"120":{"tf":3.0},"121":{"tf":2.0},"122":{"tf":2.0},"123":{"tf":3.0},"124":{"tf":2.23606797749979},"126":{"tf":4.58257569495584},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":3.7416573867739413},"130":{"tf":2.8284271247461903},"131":{"tf":3.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":2.449489742783178},"138":{"tf":2.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.4142135623730951},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":2.0},"17":{"tf":2.0},"170":{"tf":2.23606797749979},"171":{"tf":2.0},"172":{"tf":1.7320508075688772},"173":{"tf":2.0},"174":{"tf":2.0},"175":{"tf":2.0},"176":{"tf":2.23606797749979},"177":{"tf":2.23606797749979},"178":{"tf":1.7320508075688772},"179":{"tf":2.0},"180":{"tf":2.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"199":{"tf":2.0},"200":{"tf":2.23606797749979},"201":{"tf":2.23606797749979},"202":{"tf":2.0},"203":{"tf":2.23606797749979},"204":{"tf":2.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"207":{"tf":2.23606797749979},"208":{"tf":2.8284271247461903},"209":{"tf":3.1622776601683795},"210":{"tf":1.0},"211":{"tf":4.242640687119285},"212":{"tf":3.0},"213":{"tf":2.23606797749979},"216":{"tf":1.4142135623730951},"217":{"tf":2.8284271247461903},"218":{"tf":1.7320508075688772},"219":{"tf":2.23606797749979},"224":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"23":{"tf":2.0},"231":{"tf":2.449489742783178},"232":{"tf":2.0},"233":{"tf":3.1622776601683795},"234":{"tf":2.449489742783178},"238":{"tf":1.4142135623730951},"239":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":2.8284271247461903},"244":{"tf":1.0},"245":{"tf":3.7416573867739413},"246":{"tf":3.4641016151377544},"247":{"tf":2.8284271247461903},"250":{"tf":2.6457513110645907},"251":{"tf":2.23606797749979},"252":{"tf":2.0},"253":{"tf":1.7320508075688772},"254":{"tf":3.605551275463989},"255":{"tf":2.23606797749979},"256":{"tf":2.23606797749979},"257":{"tf":2.23606797749979},"258":{"tf":3.7416573867739413},"259":{"tf":3.4641016151377544},"261":{"tf":2.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":2.23606797749979},"267":{"tf":2.449489742783178},"268":{"tf":2.23606797749979},"271":{"tf":2.0},"272":{"tf":3.0},"29":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.0},"47":{"tf":1.7320508075688772},"49":{"tf":2.449489742783178},"50":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.7320508075688772},"60":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":2.449489742783178},"64":{"tf":1.0},"65":{"tf":2.8284271247461903},"68":{"tf":2.0},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":3.872983346207417},"77":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":2.449489742783178},"80":{"tf":1.0},"81":{"tf":2.23606797749979},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.872983346207417},"85":{"tf":1.0},"87":{"tf":2.0},"89":{"tf":1.4142135623730951},"97":{"tf":2.23606797749979},"98":{"tf":2.8284271247461903},"99":{"tf":2.23606797749979}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":26,"docs":{"103":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"219":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}},"df":1,"docs":{"169":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"135":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"16":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"72":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}},"b":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"c":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"d":{"df":1,"docs":{"245":{"tf":1.0}}},"df":12,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":3.1622776601683795},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"66":{"tf":2.0},"68":{"tf":2.8284271247461903}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"266":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"111":{"tf":1.0},"144":{"tf":1.0},"18":{"tf":1.0},"210":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"262":{"tf":1.0},"274":{"tf":1.0},"33":{"tf":1.0},"68":{"tf":1.0}},"f":{"df":10,"docs":{"100":{"tf":1.0},"19":{"tf":1.4142135623730951},"207":{"tf":1.0},"232":{"tf":2.6457513110645907},"233":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"35":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0}},"i":{"df":42,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":2.0},"107":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"22":{"tf":1.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.7320508075688772},"245":{"tf":1.0},"252":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":2,"docs":{"132":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"11":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}}}},"h":{"df":1,"docs":{"245":{"tf":1.0}},"i":{"df":0,"docs":{},"":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"3":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"t":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"":{"=":{"2":{"3":{"2":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"a":{"df":34,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":2.23606797749979},"126":{"tf":1.4142135623730951},"148":{"tf":1.0},"15":{"tf":1.4142135623730951},"169":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"259":{"tf":1.0},"267":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"42":{"tf":2.449489742783178},"44":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":2.449489742783178},"75":{"tf":1.4142135623730951},"8":{"tf":1.0},"88":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"132":{"tf":1.0},"257":{"tf":1.0}}}},"df":2,"docs":{"252":{"tf":1.4142135623730951},"259":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"111":{"tf":1.0},"19":{"tf":1.0},"258":{"tf":1.0},"35":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":21,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"129":{"tf":1.0},"2":{"tf":1.4142135623730951},"223":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":2.449489742783178},"231":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"262":{"tf":1.0},"264":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"268":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"k":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{")":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"c":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"6":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"h":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"245":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"b":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"":{"+":{"b":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"d":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"c":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"7":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"":{"=":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"'":{"df":9,"docs":{"2":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"77":{"tf":1.0}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":105,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":2.0},"10":{"tf":2.23606797749979},"100":{"tf":2.6457513110645907},"101":{"tf":2.449489742783178},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"105":{"tf":2.449489742783178},"106":{"tf":4.47213595499958},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"11":{"tf":2.8284271247461903},"110":{"tf":2.8284271247461903},"111":{"tf":2.6457513110645907},"112":{"tf":1.0},"113":{"tf":2.6457513110645907},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"14":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"16":{"tf":2.0},"168":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":4.123105625617661},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":2.6457513110645907},"220":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"3":{"tf":2.0},"32":{"tf":2.0},"33":{"tf":3.0},"35":{"tf":1.4142135623730951},"4":{"tf":2.23606797749979},"42":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.4142135623730951},"6":{"tf":2.8284271247461903},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"8":{"tf":2.23606797749979},"87":{"tf":1.7320508075688772},"88":{"tf":2.6457513110645907},"89":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772},"90":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":2.0},"98":{"tf":3.7416573867739413},"99":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"c":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"7":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"b":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"s":{"df":4,"docs":{"137":{"tf":1.0},"212":{"tf":1.0},"274":{"tf":1.0},"43":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"i":{"+":{"b":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"b":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"h":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"230":{"tf":1.0},"264":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"+":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":1,"docs":{"264":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{")":{"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":2,"docs":{"211":{"tf":1.0},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"←":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"i":{"]":{"[":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"]":{"[":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"→":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"i":{"]":{"[":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"]":{"[":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":18,"docs":{"121":{"tf":1.0},"130":{"tf":1.4142135623730951},"170":{"tf":1.0},"18":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.4142135623730951},"246":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.7320508075688772},"262":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0},"8":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}}}},"y":{"df":19,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"42":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.7320508075688772},"86":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":5,"docs":{"211":{"tf":1.0},"213":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":15,"docs":{"128":{"tf":1.0},"129":{"tf":2.449489742783178},"132":{"tf":1.0},"133":{"tf":1.0},"212":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"263":{"tf":1.0},"268":{"tf":1.7320508075688772}}}},"v":{"df":2,"docs":{"110":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"2":{"tf":1.0},"209":{"tf":1.0},"260":{"tf":1.0},"62":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"245":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"133":{"tf":1.0},"170":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"81":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"49":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"222":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"204":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"255":{"tf":1.0},"264":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"265":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":23,"docs":{"10":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"227":{"tf":1.0},"245":{"tf":2.0},"253":{"tf":1.0},"258":{"tf":2.23606797749979},"34":{"tf":2.23606797749979},"37":{"tf":1.0},"44":{"tf":2.449489742783178},"6":{"tf":1.0},"60":{"tf":2.8284271247461903},"62":{"tf":1.0},"65":{"tf":2.8284271247461903},"66":{"tf":3.4641016151377544},"68":{"tf":2.449489742783178},"70":{"tf":2.23606797749979},"75":{"tf":2.0},"85":{"tf":2.23606797749979},"87":{"tf":2.0}},"s":{".":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":18,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"116":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"241":{"tf":1.0},"255":{"tf":1.4142135623730951},"258":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"1":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"258":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"213":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"258":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"85":{"tf":2.8284271247461903}}}}}},"df":19,"docs":{"137":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"22":{"tf":1.0},"25":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":2.449489742783178},"258":{"tf":3.0},"259":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":2.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"0":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}}}}},"x":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"1":{"df":1,"docs":{"247":{"tf":1.0}}},"2":{"df":1,"docs":{"247":{"tf":1.0}}},"3":{"df":1,"docs":{"247":{"tf":1.0}}},"=":{"1":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"138":{"tf":4.0},"209":{"tf":1.7320508075688772},"211":{"tf":2.449489742783178},"241":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"213":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"(":{"a":{",":{"b":{")":{"=":{"a":{"+":{"b":{"df":0,"docs":{},"−":{"2":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"⋅":{"b":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"180":{"tf":1.7320508075688772},"220":{"tf":1.0},"246":{"tf":2.0},"52":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"x":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"′":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"x":{"+":{"df":0,"docs":{},"y":{")":{"=":{"0":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"1":{"df":1,"docs":{"247":{"tf":1.0}}},"2":{"df":1,"docs":{"247":{"tf":1.0}}},"3":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"z":{"=":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{")":{"4":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"":{"+":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{")":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"":{"+":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"0":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"219":{"tf":1.0},"246":{"tf":1.7320508075688772},"247":{"tf":2.449489742783178},"251":{"tf":1.0},"252":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":20,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"111":{"tf":1.0},"124":{"tf":1.0},"170":{"tf":1.7320508075688772},"2":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":2.23606797749979},"246":{"tf":1.4142135623730951},"259":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"49":{"tf":1.0},"66":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}},"k":{"df":2,"docs":{"274":{"tf":1.0},"3":{"tf":1.0}}},"p":{"df":3,"docs":{"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"251":{"tf":1.0}}}}}},"breadcrumbs":{"root":{"0":{"'":{"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"233":{"tf":1.0}}},",":{"0":{",":{"0":{",":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"1":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"224":{"tf":1.0},"234":{"tf":1.0}}},"1":{"df":2,"docs":{"224":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"0":{",":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"1":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"1":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"3":{",":{"4":{",":{"5":{",":{"6":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"2":{"df":2,"docs":{"6":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":2,"docs":{"124":{"tf":1.0},"189":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":2,"docs":{"34":{"tf":1.0},"70":{"tf":1.0}}}},".":{"9":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"1":{"0":{"0":{"1":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.0}}},"1":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":104,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":2.23606797749979},"106":{"tf":4.898979485566356},"109":{"tf":1.0},"110":{"tf":2.8284271247461903},"111":{"tf":5.0990195135927845},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":2.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":2.449489742783178},"120":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":2.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":2.0},"137":{"tf":2.0},"138":{"tf":3.4641016151377544},"139":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"154":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":2.8284271247461903},"227":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":3.605551275463989},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":2.23606797749979},"259":{"tf":1.7320508075688772},"261":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"28":{"tf":4.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":6.928203230275509},"34":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":2.23606797749979},"65":{"tf":2.6457513110645907},"66":{"tf":2.8284271247461903},"70":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"83":{"tf":4.0},"84":{"tf":2.449489742783178},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.0},"98":{"tf":2.0}},"s":{"df":1,"docs":{"239":{"tf":1.0}}},"x":{"7":{"b":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"":{"+":{"df":0,"docs":{},"v":{")":{"2":{"df":1,"docs":{"212":{"tf":1.0}}},"4":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"212":{"tf":1.0}}},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"a":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"r":{"+":{"7":{")":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"+":{"8":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"α":{"4":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"n":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"r":{"+":{"7":{")":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},",":{".":{".":{".":{",":{"df":0,"docs":{},"α":{"3":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"α":{"1":{"df":3,"docs":{"252":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0}},"":{",":{"df":0,"docs":{},"α":{"2":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"→":{"1":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"1":{"+":{"a":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"′":{")":{"df":0,"docs":{},"⋅":{"(":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":0,"docs":{},"−":{"1":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{")":{"=":{"0":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},",":{"0":{",":{"0":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"222":{"tf":1.0},"224":{"tf":1.4142135623730951}}},"1":{",":{"0":{",":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"1":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"222":{"tf":1.0},"224":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951}}},"1":{",":{"0":{"df":2,"docs":{"222":{"tf":1.0},"224":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"224":{"tf":1.0},"234":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"3":{",":{"4":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"6":{"7":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"/":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"7":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"1":{"1":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"138":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"266":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0}}},"1":{"0":{"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"138":{"tf":1.0},"274":{"tf":1.0}}},"2":{"4":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"144":{"tf":1.0}}},"6":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"144":{"tf":1.0}}},"df":9,"docs":{"123":{"tf":1.0},"139":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.4142135623730951},"247":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.0}}},"1":{"0":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"1":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"144":{"tf":1.0}}},"6":{"df":1,"docs":{"144":{"tf":1.0}}},"d":{"b":{"b":{"d":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"2":{"7":{"df":0,"docs":{},"e":{"2":{"6":{"df":0,"docs":{},"e":{"4":{"8":{"b":{"df":0,"docs":{},"e":{"3":{"1":{"9":{"8":{"1":{"3":{"3":{"d":{"df":0,"docs":{},"f":{"8":{"c":{"b":{"df":0,"docs":{},"e":{"d":{"6":{"c":{"5":{"8":{"7":{"5":{"d":{"0":{"df":0,"docs":{},"f":{"b":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.0}}},"2":{",":{"1":{"3":{",":{"1":{"4":{",":{"1":{"5":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"144":{"tf":1.0}}},"2":{"df":1,"docs":{"20":{"tf":1.0}}},"3":{"df":2,"docs":{"36":{"tf":1.0},"63":{"tf":1.0}}},"4":{"df":1,"docs":{"144":{"tf":1.0}}},"6":{"df":1,"docs":{"20":{"tf":1.0}}},"8":{"df":3,"docs":{"20":{"tf":1.0},"266":{"tf":1.0},"68":{"tf":1.0}}},"9":{"df":1,"docs":{"247":{"tf":1.4142135623730951}}},"df":12,"docs":{"123":{"tf":1.0},"139":{"tf":1.0},"187":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"246":{"tf":1.0},"258":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"3":{"5":{"6":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"20":{"tf":1.0}}},"df":2,"docs":{"139":{"tf":1.0},"222":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"204":{"tf":1.0}}}}},"4":{"df":2,"docs":{"139":{"tf":1.0},"20":{"tf":1.0}}},"5":{".":{"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"247":{"tf":1.0}}},"df":7,"docs":{"111":{"tf":1.0},"139":{"tf":1.0},"20":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"53":{"tf":1.0},"85":{"tf":1.0}}},"6":{"3":{"df":1,"docs":{"247":{"tf":1.0}}},"df":54,"docs":{"127":{"tf":2.449489742783178},"128":{"tf":2.23606797749979},"129":{"tf":1.0},"131":{"tf":2.0},"133":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"210":{"tf":2.0},"213":{"tf":2.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.0},"23":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":2.23606797749979},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"42":{"tf":2.449489742783178},"45":{"tf":2.0},"52":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":2.23606797749979},"88":{"tf":1.0},"9":{"tf":2.23606797749979},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"85":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}}},"7":{"df":6,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"53":{"tf":1.0},"89":{"tf":1.0}}},"8":{"df":2,"docs":{"139":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"9":{"df":3,"docs":{"128":{"tf":1.0},"139":{"tf":1.0},"53":{"tf":1.0}}},"df":118,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"106":{"tf":4.58257569495584},"109":{"tf":1.0},"110":{"tf":2.449489742783178},"111":{"tf":3.4641016151377544},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":2.23606797749979},"116":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":2.6457513110645907},"120":{"tf":2.0},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":2.23606797749979},"126":{"tf":1.7320508075688772},"129":{"tf":1.4142135623730951},"130":{"tf":2.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"138":{"tf":3.1622776601683795},"139":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":2.0},"148":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":2.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":2.0},"232":{"tf":1.4142135623730951},"233":{"tf":2.6457513110645907},"234":{"tf":4.795831523312719},"237":{"tf":1.7320508075688772},"238":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"245":{"tf":1.7320508075688772},"247":{"tf":4.47213595499958},"250":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":2.449489742783178},"259":{"tf":1.4142135623730951},"261":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.4142135623730951},"274":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":2.0},"34":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":2.8284271247461903},"53":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"60":{"tf":2.6457513110645907},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":2.0},"68":{"tf":2.23606797749979},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"83":{"tf":3.7416573867739413},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"−":{"b":{"6":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"4":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"4":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{")":{"=":{"0":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{")":{"=":{"0":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"b":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"1":{"6":{")":{"=":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{")":{"=":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"k":{"0":{"df":1,"docs":{"234":{"tf":1.0}}},"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"⋅":{"(":{"2":{"3":{"2":{"df":0,"docs":{},"−":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{")":{"=":{"1":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"δ":{"a":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"1":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{"=":{"1":{"df":2,"docs":{"257":{"tf":1.0},"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"δ":{"c":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"z":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"1":{"6":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{")":{"=":{"0":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"159":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"2":{"'":{"df":1,"docs":{"212":{"tf":1.0}}},".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"5":{"df":0,"docs":{},"x":{"df":1,"docs":{"258":{"tf":1.0}}}},"6":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"7":{"0":{"df":1,"docs":{"247":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"139":{"tf":1.0},"20":{"tf":1.0},"68":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"6":{"df":12,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.4142135623730951},"210":{"tf":1.0},"259":{"tf":1.0},"37":{"tf":1.0}}},"8":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"df":1,"docs":{"139":{"tf":1.0}}},"2":{"0":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}},"df":1,"docs":{"139":{"tf":1.0}}},"3":{"0":{"+":{"3":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"37":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"1":{"df":1,"docs":{"45":{"tf":1.0}}},"2":{"df":16,"docs":{"127":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"246":{"tf":1.0},"258":{"tf":1.7320508075688772},"55":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0}},"−":{"1":{"df":4,"docs":{"170":{"tf":1.0},"44":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"139":{"tf":1.0},"56":{"tf":1.0}}},"4":{".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"20":{"tf":1.0}}},"8":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"3":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"t":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":3,"docs":{"102":{"tf":1.0},"139":{"tf":1.0},"247":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"2":{"6":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":2,"docs":{"211":{"tf":1.7320508075688772},"65":{"tf":1.0}}},"6":{"df":1,"docs":{"258":{"tf":1.0}}},"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"≤":{"2":{"1":{"6":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"139":{"tf":1.0}}},"6":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"1":{"5":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"2":{"6":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"−":{"2":{"3":{"2":{"+":{"1":{"df":5,"docs":{"127":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"253":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"39":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"139":{"tf":1.0}}},"7":{".":{"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"21":{"tf":1.0}}},"df":3,"docs":{"111":{"tf":1.0},"123":{"tf":1.0},"139":{"tf":1.0}}},"8":{"df":3,"docs":{"139":{"tf":1.0},"20":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"df":2,"docs":{"139":{"tf":1.0},"68":{"tf":1.0}}},"^":{"3":{"2":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"82":{"tf":3.0},"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":74,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":1.0},"209":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"266":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":2.0},"51":{"tf":1.4142135623730951},"52":{"tf":2.449489742783178},"53":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":3.3166247903554},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":2.0},"68":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":2.0},"79":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":2.23606797749979},"87":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"'":{"df":1,"docs":{"212":{"tf":1.0}}},".":{"1":{"df":1,"docs":{"21":{"tf":1.0}}},"6":{"df":1,"docs":{"21":{"tf":1.0}}},"7":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"7":{"2":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"139":{"tf":1.0},"20":{"tf":1.0}}},"1":{"0":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}},"df":2,"docs":{"139":{"tf":1.0},"170":{"tf":1.0}}},"2":{"df":31,"docs":{"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":2.23606797749979},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"258":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"58":{"tf":2.0},"65":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":2.8284271247461903},"80":{"tf":2.8284271247461903},"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"88":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"1":{"3":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"140":{"tf":1.0},"58":{"tf":1.0}}},"4":{"df":1,"docs":{"140":{"tf":1.0}}},"5":{"df":2,"docs":{"140":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"140":{"tf":1.0},"58":{"tf":1.0}}},"7":{"df":3,"docs":{"140":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}},"8":{"df":1,"docs":{"140":{"tf":1.0}}},"9":{"df":1,"docs":{"140":{"tf":1.0}}},"df":49,"docs":{"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":2.23606797749979},"111":{"tf":1.0},"113":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"250":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":2.0},"45":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":3.3166247903554},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"66":{"tf":2.23606797749979},"68":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":1,"docs":{"213":{"tf":1.0}}},"r":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"4":{",":{"5":{",":{"6":{",":{"7":{",":{"8":{",":{"9":{",":{"1":{"0":{",":{"1":{"1":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":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":{"186":{"tf":1.0},"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":3,"docs":{"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0}}},"df":0,"docs":{}},".":{"6":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"0":{"4":{"2":{"6":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"140":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"1":{"8":{"5":{"1":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"140":{"tf":1.0}}},"2":{"df":1,"docs":{"140":{"tf":1.0}}},"3":{"df":1,"docs":{"140":{"tf":1.0}}},"4":{"df":3,"docs":{"140":{"tf":1.0},"58":{"tf":1.0},"84":{"tf":1.0}}},"5":{"df":1,"docs":{"140":{"tf":1.0}}},"6":{"df":1,"docs":{"140":{"tf":1.0}}},"7":{"df":3,"docs":{"140":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.7320508075688772}}},"8":{"df":2,"docs":{"141":{"tf":1.0},"85":{"tf":1.0}}},"9":{"df":1,"docs":{"141":{"tf":1.0}}},"]":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":54,"docs":{"104":{"tf":2.0},"105":{"tf":2.0},"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":2.6457513110645907},"116":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"138":{"tf":2.0},"139":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":2.8284271247461903},"166":{"tf":1.7320508075688772},"167":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"200":{"tf":1.0},"202":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":2.0},"209":{"tf":1.7320508075688772},"217":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"247":{"tf":2.23606797749979},"258":{"tf":1.7320508075688772},"269":{"tf":1.0},"31":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":3.3166247903554},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"65":{"tf":1.7320508075688772},"66":{"tf":2.6457513110645907},"72":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"77":{"tf":2.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}},"n":{"df":2,"docs":{"212":{"tf":1.0},"216":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}}},"5":{",":{"6":{",":{"7":{",":{"8":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":2,"docs":{"141":{"tf":1.0},"39":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"2":{"df":2,"docs":{"141":{"tf":1.0},"20":{"tf":1.0}}},"3":{"df":1,"docs":{"141":{"tf":1.0}}},"4":{"df":1,"docs":{"141":{"tf":1.0}}},"5":{"df":1,"docs":{"141":{"tf":1.0}}},"6":{"df":1,"docs":{"141":{"tf":1.0}}},"7":{"df":2,"docs":{"141":{"tf":1.0},"20":{"tf":1.0}}},"8":{"df":2,"docs":{"141":{"tf":1.0},"85":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"5":{"0":{"df":0,"docs":{},"x":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"141":{"tf":1.0},"58":{"tf":1.0}}},"df":27,"docs":{"113":{"tf":2.0},"116":{"tf":1.4142135623730951},"132":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.0},"142":{"tf":2.0},"143":{"tf":4.0},"144":{"tf":1.0},"200":{"tf":1.0},"222":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.449489742783178},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0}}},"6":{".":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"6":{"c":{"9":{"df":0,"docs":{},"f":{"0":{"3":{"7":{"c":{"7":{"8":{"9":{"3":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"e":{"4":{"1":{"1":{"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":1,"docs":{"141":{"tf":1.0}}},"1":{"df":2,"docs":{"141":{"tf":1.0},"20":{"tf":1.0}}},"2":{"df":1,"docs":{"141":{"tf":1.0}}},"3":{"df":2,"docs":{"141":{"tf":1.0},"52":{"tf":1.0}}},"4":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":23,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"213":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"266":{"tf":1.0},"38":{"tf":1.4142135623730951},"6":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.7320508075688772},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":4.0},"97":{"tf":1.0}}},"5":{"5":{"3":{"5":{"df":3,"docs":{"213":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.0}}},"6":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.0}},"k":{"df":1,"docs":{"213":{"tf":1.0}}}},"6":{"df":2,"docs":{"142":{"tf":1.0},"20":{"tf":1.0}}},"7":{"df":1,"docs":{"20":{"tf":1.0}}},"8":{"df":1,"docs":{"142":{"tf":1.0}}},"9":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}},"df":28,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.7320508075688772},"132":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"142":{"tf":3.1622776601683795},"184":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.7320508075688772},"224":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":2.0},"255":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"77":{"tf":1.4142135623730951}},"x":{"df":1,"docs":{"258":{"tf":1.0}}}},"7":{".":{"7":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"142":{"tf":1.0}}},"1":{"df":1,"docs":{"89":{"tf":1.0}}},"2":{"df":2,"docs":{"142":{"tf":1.0},"97":{"tf":1.0}}},"3":{"df":1,"docs":{"52":{"tf":1.0}}},"4":{"df":1,"docs":{"142":{"tf":1.0}}},"5":{"df":1,"docs":{"85":{"tf":1.0}}},"6":{"df":2,"docs":{"142":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"20":{"tf":1.0}}},"8":{"df":2,"docs":{"142":{"tf":1.0},"20":{"tf":1.0}}},"df":30,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":2.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"126":{"tf":1.0},"138":{"tf":2.6457513110645907},"139":{"tf":5.830951894845301},"140":{"tf":4.123105625617661},"141":{"tf":4.123105625617661},"143":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"240":{"tf":2.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"68":{"tf":1.0},"97":{"tf":1.7320508075688772}}},"8":{",":{"1":{"6":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"9":{",":{"1":{"0":{",":{"1":{"1":{",":{"1":{"2":{",":{"1":{"3":{",":{"1":{"4":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"143":{"tf":1.0},"20":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"2":{"df":1,"docs":{"143":{"tf":1.0}}},"3":{"df":1,"docs":{"143":{"tf":1.0}}},"4":{"df":1,"docs":{"143":{"tf":1.0}}},"5":{"df":2,"docs":{"143":{"tf":1.0},"20":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"143":{"tf":1.0}}},"7":{"df":2,"docs":{"143":{"tf":1.0},"30":{"tf":1.0}}},"8":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"143":{"tf":1.0}}},"9":{"df":2,"docs":{"143":{"tf":1.0},"20":{"tf":1.0}}},"df":45,"docs":{"104":{"tf":2.6457513110645907},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"111":{"tf":3.605551275463989},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":2.0},"121":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"142":{"tf":1.0},"186":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"213":{"tf":1.0},"222":{"tf":1.7320508075688772},"224":{"tf":1.0},"232":{"tf":3.3166247903554},"233":{"tf":1.7320508075688772},"234":{"tf":3.3166247903554},"237":{"tf":1.0},"238":{"tf":2.0},"242":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"246":{"tf":1.7320508075688772},"247":{"tf":1.7320508075688772},"250":{"tf":1.4142135623730951},"252":{"tf":1.0},"258":{"tf":1.0},"29":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"97":{"tf":2.0},"99":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"244":{"tf":1.0}}}},"⋅":{"d":{"df":0,"docs":{},"−":{"1":{"df":2,"docs":{"207":{"tf":1.0},"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"9":{".":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"8":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":2,"docs":{"143":{"tf":1.0},"20":{"tf":1.0}}},"2":{"df":1,"docs":{"143":{"tf":1.0}}},"3":{"df":1,"docs":{"143":{"tf":1.0}}},"4":{"df":2,"docs":{"143":{"tf":1.0},"84":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":1,"docs":{"143":{"tf":1.0}}},"6":{"df":3,"docs":{"144":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0}}},"df":23,"docs":{"105":{"tf":1.0},"111":{"tf":2.23606797749979},"118":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"193":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"247":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"68":{"tf":1.0},"85":{"tf":2.23606797749979},"87":{"tf":1.0},"97":{"tf":1.0}}},"_":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.0}}},"a":{"+":{"1":{"df":1,"docs":{"65":{"tf":1.0}}},"7":{"df":1,"docs":{"116":{"tf":1.0}}},"b":{")":{"df":0,"docs":{},"≥":{"2":{"3":{"2":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"+":{"c":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"173":{"tf":1.0}},"⋅":{"c":{"df":1,"docs":{"177":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"′":{",":{"df":0,"docs":{},"h":{"5":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{",":{"c":{",":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{",":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"/":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":7,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"34":{"tf":1.0},"54":{"tf":2.8284271247461903},"65":{"tf":1.4142135623730951},"70":{"tf":1.0},"87":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"a":{"1":{"1":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"df":1,"docs":{"209":{"tf":1.0}},"":{",":{"a":{"2":{"df":0,"docs":{},"":{",":{"a":{"3":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{".":{"a":{"3":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"←":{"df":0,"docs":{},"−":{"a":{"0":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"df":4,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"54":{"tf":2.8284271247461903},"65":{"tf":1.4142135623730951}},"′":{"df":0,"docs":{},"←":{"df":0,"docs":{},"−":{"a":{"1":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"2":{"df":2,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":1.0}}},"3":{"df":2,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":1.0}}},"<":{"2":{"3":{"2":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":1,"docs":{"57":{"tf":1.0}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"53":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}},"=":{"0":{"df":4,"docs":{"165":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}}},"1":{"df":1,"docs":{"51":{"tf":1.0}}},"4":{"1":{"8":{"5":{"1":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":2,"docs":{"164":{"tf":1.0},"51":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"∑":{"df":0,"docs":{},"i":{"=":{"0":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},">":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"6":{"3":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":4,"docs":{"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0}}}},"i":{"df":1,"docs":{"98":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":4,"docs":{"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":95,"docs":{"104":{"tf":1.0},"106":{"tf":3.1622776601683795},"107":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":2.0},"113":{"tf":1.0},"116":{"tf":3.1622776601683795},"117":{"tf":1.7320508075688772},"118":{"tf":2.23606797749979},"120":{"tf":2.0},"122":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":2.23606797749979},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"138":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":2.23606797749979},"207":{"tf":2.0},"208":{"tf":2.0},"212":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":3.1622776601683795},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":2.23606797749979},"255":{"tf":1.7320508075688772},"256":{"tf":2.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.4142135623730951},"272":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"p":{"df":3,"docs":{"232":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"62":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.7320508075688772},"74":{"tf":1.0}}}}},"r":{"b":{"df":15,"docs":{"104":{"tf":2.23606797749979},"106":{"tf":1.0},"111":{"tf":2.6457513110645907},"115":{"tf":1.4142135623730951},"116":{"tf":2.23606797749979},"232":{"tf":2.0},"233":{"tf":1.0},"238":{"tf":2.0},"239":{"tf":2.0},"240":{"tf":2.0},"243":{"tf":1.7320508075688772},"244":{"tf":1.4142135623730951},"245":{"tf":2.0},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"116":{"tf":2.0},"99":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":1,"docs":{"166":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"15":{"tf":2.449489742783178},"220":{"tf":1.0},"88":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":32,"docs":{"116":{"tf":1.7320508075688772},"127":{"tf":1.0},"199":{"tf":2.6457513110645907},"2":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"220":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.7320508075688772},"260":{"tf":1.0},"263":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":2.449489742783178},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":2.23606797749979},"72":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"257":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":15,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"259":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}}}},"r":{"d":{"df":7,"docs":{"100":{"tf":1.0},"104":{"tf":1.7320508075688772},"113":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"247":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":15,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"210":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"35":{"tf":2.23606797749979},"69":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"227":{"tf":3.0}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"231":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"105":{"tf":1.0},"111":{"tf":1.4142135623730951},"213":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{".":{"1":{"df":1,"docs":{"23":{"tf":1.0}}},"b":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":34,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":3.605551275463989},"110":{"tf":2.0},"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.449489742783178},"126":{"tf":2.23606797749979},"130":{"tf":1.7320508075688772},"140":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":2.0},"2":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.7320508075688772},"23":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.0},"248":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"265":{"tf":1.0},"38":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":38,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"2":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"233":{"tf":1.0},"234":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"259":{"tf":1.0},"38":{"tf":1.4142135623730951},"48":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"133":{"tf":1.0},"221":{"tf":1.0},"255":{"tf":1.0},"271":{"tf":1.0},"45":{"tf":1.0}}}}}}},"r":{"=":{"0":{"df":1,"docs":{"264":{"tf":1.0}}},"1":{"df":1,"docs":{"264":{"tf":1.0}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"262":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"111":{"tf":2.23606797749979},"223":{"tf":1.0},"254":{"tf":2.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"261":{"tf":1.7320508075688772},"262":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":46,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"106":{"tf":3.3166247903554},"111":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":3.1622776601683795},"118":{"tf":1.4142135623730951},"121":{"tf":2.23606797749979},"126":{"tf":2.0},"128":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"17":{"tf":1.0},"200":{"tf":2.0},"201":{"tf":2.0},"202":{"tf":2.0},"203":{"tf":2.0},"204":{"tf":1.7320508075688772},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"253":{"tf":1.7320508075688772},"254":{"tf":2.23606797749979},"255":{"tf":2.449489742783178},"256":{"tf":2.8284271247461903},"257":{"tf":2.6457513110645907},"258":{"tf":3.3166247903554},"259":{"tf":2.6457513110645907},"261":{"tf":1.0},"264":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"44":{"tf":2.6457513110645907},"45":{"tf":2.0},"6":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":3.4641016151377544},"77":{"tf":1.0}}}}},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{")":{"=":{"0":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":25,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":2.8284271247461903},"112":{"tf":1.7320508075688772},"117":{"tf":3.1622776601683795},"118":{"tf":3.3166247903554},"126":{"tf":2.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"213":{"tf":1.0},"221":{"tf":1.4142135623730951},"247":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"6":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.0},"223":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"127":{"tf":1.0},"138":{"tf":1.0},"241":{"tf":1.0},"87":{"tf":1.0}}}}},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"6":{"4":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"w":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"65":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"4":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"65":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"100":{"tf":1.0},"150":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"21":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":15,"docs":{"10":{"tf":3.1622776601683795},"17":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"207":{"tf":1.0},"6":{"tf":2.6457513110645907},"62":{"tf":2.449489742783178},"65":{"tf":4.898979485566356},"68":{"tf":2.23606797749979},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"8":{"tf":2.0},"85":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"[":{"df":0,"docs":{},"k":{"]":{"df":0,"docs":{},"←":{"[":{"a":{",":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"141":{"tf":1.0},"197":{"tf":2.23606797749979}},"w":{"df":2,"docs":{"139":{"tf":1.0},"198":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"137":{"tf":1.4142135623730951},"203":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"106":{"tf":1.0},"110":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":1.0},"219":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"265":{"tf":1.0},"45":{"tf":2.0},"49":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"t":{"df":21,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":1.0},"16":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0},"231":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"68":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":6,"docs":{"166":{"tf":1.0},"224":{"tf":1.0},"246":{"tf":1.4142135623730951},"247":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":2.449489742783178}}}}}},"o":{"df":1,"docs":{"31":{"tf":1.0}}}},"i":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":2,"docs":{"250":{"tf":1.4142135623730951},"99":{"tf":1.0}},"r":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":20,"docs":{"113":{"tf":2.0},"116":{"tf":1.0},"132":{"tf":1.4142135623730951},"149":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"241":{"tf":1.7320508075688772},"248":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"4":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"":{"<":{"2":{"3":{"2":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"∀":{"df":0,"docs":{},"i":{"df":0,"docs":{},"∈":{"df":0,"docs":{},"{":{"0":{",":{"1":{",":{"2":{",":{"3":{"df":0,"docs":{},"}":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":1,"docs":{"274":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"222":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"128":{"tf":1.0},"254":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":14,"docs":{"111":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.0},"213":{"tf":2.0},"221":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.4142135623730951},"248":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"40":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}},"g":{"df":2,"docs":{"17":{"tf":1.0},"29":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"0":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"123":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"254":{"tf":1.7320508075688772}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":7,"docs":{"116":{"tf":1.0},"17":{"tf":1.0},"227":{"tf":1.0},"245":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":22,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"209":{"tf":1.0},"221":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.4142135623730951},"260":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}}},"d":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"258":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"69":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"129":{"tf":1.0},"268":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}},"z":{"df":1,"docs":{"16":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"d":{"(":{"a":{",":{"b":{")":{"=":{"3":{"3":{"1":{"3":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"⋅":{"b":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"65":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"170":{"tf":1.0},"211":{"tf":1.4142135623730951},"221":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0},"36":{"tf":1.0},"62":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"221":{"tf":1.0},"246":{"tf":1.0},"74":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":3,"docs":{"15":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772}},"i":{"c":{"df":6,"docs":{"1":{"tf":1.0},"113":{"tf":1.0},"15":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0}}},"df":20,"docs":{"113":{"tf":1.0},"121":{"tf":1.0},"135":{"tf":1.0},"19":{"tf":1.0},"206":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":2.0},"226":{"tf":1.0},"227":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"255":{"tf":1.0},"262":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"254":{"tf":1.0},"258":{"tf":2.23606797749979},"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"111":{"tf":1.0},"209":{"tf":1.0},"251":{"tf":1.0}}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"2":{"tf":1.0},"216":{"tf":1.0},"243":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"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":3,"docs":{"23":{"tf":1.0},"265":{"tf":1.0},"270":{"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":10,"docs":{"155":{"tf":1.0},"2":{"tf":1.0},"274":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"87":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"45":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}}},"y":{"df":2,"docs":{"10":{"tf":1.0},"17":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":48,"docs":{"16":{"tf":2.449489742783178},"2":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":3.872983346207417},"34":{"tf":1.0},"35":{"tf":3.1622776601683795},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772}},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"51":{"tf":1.0}},"w":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":5,"docs":{"140":{"tf":1.0},"151":{"tf":2.0},"28":{"tf":1.0},"51":{"tf":1.7320508075688772},"85":{"tf":1.0}},"z":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"257":{"tf":1.0},"44":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":50,"docs":{"113":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"211":{"tf":1.0},"246":{"tf":1.4142135623730951},"258":{"tf":1.0},"268":{"tf":1.0},"34":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":3.0},"83":{"tf":3.1622776601683795},"84":{"tf":2.6457513110645907},"87":{"tf":1.0},"97":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"274":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":3.0},"111":{"tf":1.0},"129":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"104":{"tf":1.0},"115":{"tf":1.0},"22":{"tf":1.4142135623730951},"26":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"66":{"tf":1.7320508075688772},"69":{"tf":1.0},"72":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"95":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}},"y":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"′":{",":{"a":{",":{"0":{"df":1,"docs":{"117":{"tf":2.0}}},"1":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{",":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"=":{"1":{"6":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"∑":{"df":0,"docs":{},"i":{"=":{"0":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"←":{"a":{"+":{"2":{"df":2,"docs":{"65":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"q":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"−":{"a":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":2,"docs":{"256":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":2,"docs":{"254":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"257":{"tf":1.0},"258":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"←":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"4":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"→":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"−":{"b":{"df":1,"docs":{"175":{"tf":1.0}}},"c":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"≤":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}},"≥":{"2":{"3":{"2":{"df":3,"docs":{"56":{"tf":1.4142135623730951},"58":{"tf":3.3166247903554},"66":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}},"⊕":{"b":{"df":0,"docs":{},"→":{"df":0,"docs":{},"z":{"df":1,"docs":{"246":{"tf":1.0}}}}},"df":0,"docs":{}},"⋅":{"b":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"":{"=":{"0":{"df":1,"docs":{"51":{"tf":1.0}}},"1":{"df":1,"docs":{"51":{"tf":1.0}}},"b":{"df":1,"docs":{"51":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{",":{"c":{")":{"df":0,"docs":{},"←":{"a":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"0":{"df":11,"docs":{"112":{"tf":2.8284271247461903},"128":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.4142135623730951},"196":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"54":{"tf":2.0},"65":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}},"":{",":{".":{".":{".":{",":{"b":{"1":{"1":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":2,"docs":{"103":{"tf":1.0},"138":{"tf":1.0}}},"df":0,"docs":{},"j":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"1":{"df":0,"docs":{},"":{",":{"b":{"2":{"df":0,"docs":{},"":{",":{"b":{"3":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{".":{"b":{"3":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"1":{"6":{"df":3,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"6":{"1":{"df":4,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"":{"=":{"1":{"6":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"′":{"df":0,"docs":{},"":{"=":{"b":{"0":{"df":1,"docs":{"134":{"tf":1.0}},"":{"+":{"1":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"1":{"_":{"0":{"1":{"1":{"0":{"_":{"1":{"0":{"1":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"247":{"tf":1.0}}},"1":{"_":{"1":{"1":{"0":{"1":{"_":{"1":{"1":{"1":{"0":{"_":{"1":{"0":{"1":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"_":{"0":{"0":{"1":{"1":{"_":{"0":{"1":{"1":{"1":{"_":{"1":{"0":{"1":{"1":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"112":{"tf":3.0},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"138":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"54":{"tf":2.0},"65":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}},"":{",":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{",":{"b":{"1":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":2,"docs":{"128":{"tf":1.0},"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":5,"docs":{"112":{"tf":3.1622776601683795},"138":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"98":{"tf":1.4142135623730951}},"−":{"b":{"=":{"0":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":8,"docs":{"112":{"tf":3.0},"138":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"4":{"df":3,"docs":{"112":{"tf":2.0},"138":{"tf":1.0},"98":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":3,"docs":{"138":{"tf":1.0},"144":{"tf":1.0},"98":{"tf":1.4142135623730951}},"":{"=":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"144":{"tf":1.0}},"":{"=":{"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"5":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"4":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"4":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"5":{"df":1,"docs":{"138":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"b":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"=":{"0":{"df":3,"docs":{"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":2.449489742783178}}},"1":{"df":1,"docs":{"165":{"tf":1.0}}},"4":{"0":{"4":{"2":{"6":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"∑":{"df":0,"docs":{},"i":{"=":{"0":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},">":{"3":{"1":{"df":1,"docs":{"58":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"82":{"tf":3.872983346207417},"83":{"tf":4.0},"84":{"tf":1.7320508075688772}}}},"j":{"df":1,"docs":{"98":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"82":{"tf":3.872983346207417},"83":{"tf":4.0},"84":{"tf":1.7320508075688772}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"104":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"152":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"271":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"260":{"tf":1.0},"274":{"tf":1.7320508075688772},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"23":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"45":{"tf":1.0}}},"df":1,"docs":{"45":{"tf":3.0}}},"s":{"df":0,"docs":{},"e":{"df":20,"docs":{"0":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"113":{"tf":1.0},"124":{"tf":1.0},"147":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"259":{"tf":1.0},"274":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"49":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"126":{"tf":1.0},"2":{"tf":1.0},"242":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":19,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":3.1622776601683795},"106":{"tf":3.1622776601683795},"111":{"tf":5.916079783099616},"115":{"tf":2.449489742783178},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"121":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":4.358898943540674},"126":{"tf":2.8284271247461903},"253":{"tf":1.0},"258":{"tf":1.4142135623730951},"6":{"tf":1.0},"62":{"tf":1.0},"97":{"tf":2.8284271247461903},"99":{"tf":2.449489742783178}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}}},"z":{"df":1,"docs":{"45":{"tf":3.0}}}},"c":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"1":{"df":1,"docs":{"125":{"tf":1.0}}},"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":13,"docs":{"104":{"tf":2.449489742783178},"116":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":2.449489742783178},"233":{"tf":2.0},"245":{"tf":3.3166247903554},"259":{"tf":1.7320508075688772},"261":{"tf":1.0},"273":{"tf":1.0}},"′":{"df":0,"docs":{},"":{"=":{"b":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"116":{"tf":1.0},"245":{"tf":1.0},"263":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"+":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"263":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"263":{"tf":1.0}}},"v":{"a":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"245":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"245":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"259":{"tf":1.0}}}}},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"=":{"b":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"":{"=":{"b":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"=":{"b":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"206":{"tf":1.0},"207":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}},"i":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"b":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":57,"docs":{"100":{"tf":1.0},"106":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"198":{"tf":1.0},"23":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":2.0},"247":{"tf":2.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.0},"266":{"tf":1.7320508075688772},"271":{"tf":2.6457513110645907},"34":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":4.123105625617661},"53":{"tf":3.3166247903554},"56":{"tf":2.449489742783178},"57":{"tf":5.830951894845301},"58":{"tf":5.656854249492381},"59":{"tf":4.0},"60":{"tf":2.449489742783178},"61":{"tf":2.0},"63":{"tf":2.23606797749979},"64":{"tf":1.4142135623730951},"65":{"tf":2.449489742783178},"66":{"tf":1.0},"68":{"tf":2.0},"70":{"tf":1.0},"82":{"tf":4.123105625617661},"83":{"tf":4.47213595499958},"84":{"tf":4.0},"85":{"tf":2.0},"87":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":8,"docs":{"110":{"tf":1.0},"131":{"tf":1.0},"17":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"8":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":20,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"122":{"tf":1.0},"148":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"209":{"tf":1.0},"258":{"tf":1.0},"27":{"tf":1.0},"42":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":19,"docs":{"101":{"tf":1.0},"106":{"tf":2.8284271247461903},"11":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"17":{"tf":1.0},"222":{"tf":1.0},"234":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"33":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"66":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"122":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.0},"45":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"243":{"tf":1.0},"244":{"tf":1.0},"257":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"121":{"tf":1.0},"137":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"7":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"96":{"tf":1.0},"99":{"tf":1.0}}}},"w":{"df":115,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":2.6457513110645907},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.23606797749979},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":2.23606797749979},"208":{"tf":2.449489742783178},"209":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"246":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":2.0},"27":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"274":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"1":{"tf":1.0},"8":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"212":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"45":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":46,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"213":{"tf":2.449489742783178},"222":{"tf":1.0},"223":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":2.0},"257":{"tf":2.6457513110645907},"258":{"tf":2.449489742783178},"259":{"tf":1.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}}}},"h":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"+":{"df":0,"docs":{},"α":{"7":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"4":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"114":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"111":{"tf":1.0},"250":{"tf":1.4142135623730951}},"g":{"df":2,"docs":{"138":{"tf":1.0},"224":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":47,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"111":{"tf":1.0},"114":{"tf":1.4142135623730951},"120":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"259":{"tf":1.0},"262":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"58":{"tf":2.0},"70":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"d":{"df":2,"docs":{"100":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":63,"docs":{"100":{"tf":1.0},"111":{"tf":2.0},"116":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":3.1622776601683795},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":2.449489742783178},"171":{"tf":2.0},"172":{"tf":1.7320508075688772},"173":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":2.0},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":1.7320508075688772},"213":{"tf":2.23606797749979},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0},"224":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.7320508075688772},"246":{"tf":3.0},"247":{"tf":2.8284271247461903},"250":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"255":{"tf":2.23606797749979},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":2.23606797749979},"266":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"58":{"tf":3.1622776601683795},"6":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":2.23606797749979},"80":{"tf":2.23606797749979},"81":{"tf":2.6457513110645907},"82":{"tf":5.477225575051661},"83":{"tf":6.0},"84":{"tf":4.358898943540674},"88":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":20,"docs":{"116":{"tf":1.0},"179":{"tf":2.0},"180":{"tf":2.0},"2":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.4142135623730951},"246":{"tf":3.1622776601683795},"247":{"tf":2.0},"248":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":2.6457513110645907},"273":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"81":{"tf":1.0},"84":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"3":{"df":3,"docs":{"19":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":2.23606797749979}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"+":{"8":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"106":{"tf":5.385164807134504},"111":{"tf":2.449489742783178}}},"o":{"c":{"df":0,"docs":{},"k":{"'":{"df":5,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":2.449489742783178},"115":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":1,"docs":{"118":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"33":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":45,"docs":{"100":{"tf":1.0},"101":{"tf":3.1622776601683795},"102":{"tf":1.0},"103":{"tf":2.23606797749979},"104":{"tf":1.7320508075688772},"105":{"tf":6.164414002968976},"106":{"tf":6.0},"107":{"tf":3.0},"108":{"tf":3.0},"109":{"tf":2.8284271247461903},"110":{"tf":3.605551275463989},"111":{"tf":5.385164807134504},"112":{"tf":5.656854249492381},"113":{"tf":1.7320508075688772},"114":{"tf":2.0},"115":{"tf":3.4641016151377544},"116":{"tf":2.449489742783178},"117":{"tf":5.0990195135927845},"118":{"tf":5.385164807134504},"119":{"tf":2.6457513110645907},"121":{"tf":2.23606797749979},"122":{"tf":2.449489742783178},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"147":{"tf":1.0},"229":{"tf":1.4142135623730951},"233":{"tf":1.0},"237":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"48":{"tf":1.4142135623730951},"90":{"tf":2.23606797749979},"91":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"93":{"tf":2.23606797749979},"94":{"tf":2.449489742783178},"95":{"tf":3.0},"96":{"tf":3.0},"97":{"tf":2.23606797749979},"98":{"tf":5.0},"99":{"tf":3.872983346207417}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":10,"docs":{"105":{"tf":1.0},"106":{"tf":2.23606797749979},"110":{"tf":2.6457513110645907},"118":{"tf":2.0},"39":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":2.0},"94":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":34,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":2.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"124":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"172":{"tf":1.0},"19":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.4142135623730951},"23":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.7320508075688772},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"39":{"tf":1.0},"44":{"tf":1.4142135623730951},"47":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"107":{"tf":1.0},"113":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"267":{"tf":1.0},"271":{"tf":1.0}}}}},"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":5,"docs":{"232":{"tf":1.7320508075688772},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"106":{"tf":1.0},"109":{"tf":2.0},"118":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":5,"docs":{"169":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.7320508075688772},"273":{"tf":1.0}},"e":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"=":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"z":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"1":{"tf":1.0},"23":{"tf":1.0},"257":{"tf":1.0},"33":{"tf":1.0},"97":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":2.449489742783178},"3":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"244":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"213":{"tf":2.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"265":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}}}},"u":{"df":25,"docs":{"104":{"tf":1.0},"116":{"tf":2.449489742783178},"169":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.449489742783178},"224":{"tf":1.0},"228":{"tf":2.23606797749979},"229":{"tf":2.0},"245":{"tf":1.4142135623730951},"252":{"tf":2.23606797749979},"259":{"tf":1.7320508075688772},"261":{"tf":1.0},"263":{"tf":2.449489742783178},"265":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":2.0},"273":{"tf":1.4142135623730951}},"g":{"df":1,"docs":{"1":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"13":{"tf":2.0},"16":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"270":{"tf":1.4142135623730951},"273":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"35":{"tf":1.4142135623730951},"63":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":2.0},"80":{"tf":2.0}}}}},"}":{"df":0,"docs":{},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"′":{"=":{"1":{"6":{"df":0,"docs":{},"⋅":{"b":{"+":{"df":0,"docs":{},"∑":{"df":0,"docs":{},"i":{"=":{"0":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"=":{"b":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"b":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"←":{"(":{"a":{"+":{"1":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"159":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"¬":{"a":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"−":{"a":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"−":{"a":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"a":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"−":{"1":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"{":{"1":{",":{"0":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"53":{"tf":1.0},"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"−":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"−":{"d":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"≥":{"2":{"3":{"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{",":{"d":{")":{"df":0,"docs":{},"←":{"a":{"+":{"b":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}},"/":{"b":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}},"⋅":{"b":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"54":{"tf":2.0}},"":{",":{"c":{"1":{"df":0,"docs":{},"":{",":{"c":{"2":{"df":2,"docs":{"103":{"tf":1.0},"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"←":{"(":{"a":{"0":{"+":{"b":{"0":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{"0":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"∗":{"b":{"0":{")":{"df":0,"docs":{},"−":{"2":{"df":0,"docs":{},"∗":{"(":{"a":{"1":{"df":0,"docs":{},"∗":{"b":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"54":{"tf":2.0}},"←":{"(":{"a":{"0":{"+":{"a":{"1":{")":{"df":0,"docs":{},"∗":{"(":{"b":{"0":{"+":{"b":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"+":{"b":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"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":{}}},"=":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178}}}}},"1":{"df":4,"docs":{"164":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178}}},"c":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"c":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},">":{"1":{"df":1,"docs":{"61":{"tf":2.0}}},"df":0,"docs":{}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":3,"docs":{"82":{"tf":3.4641016151377544},"83":{"tf":2.0},"84":{"tf":3.0}}}},"k":{"df":1,"docs":{"98":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":3,"docs":{"82":{"tf":3.4641016151377544},"83":{"tf":2.0},"84":{"tf":3.0}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"116":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}}}},"df":0,"docs":{},"l":{".":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":27,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.7320508075688772},"144":{"tf":1.0},"2":{"tf":1.7320508075688772},"211":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.7320508075688772},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"42":{"tf":2.8284271247461903},"43":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":3.1622776601683795},"96":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":2,"docs":{"257":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772}},"r":{"'":{"df":1,"docs":{"42":{"tf":1.0}}},"df":6,"docs":{"139":{"tf":1.0},"257":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.7320508075688772},"64":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"129":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"214":{"tf":1.0},"216":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"c":{"df":11,"docs":{"104":{"tf":1.0},"116":{"tf":1.7320508075688772},"206":{"tf":1.0},"233":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"244":{"tf":1.0},"68":{"tf":1.0},"85":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"212":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"111":{"tf":1.0},"173":{"tf":1.0},"195":{"tf":1.0},"244":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":32,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"177":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.4142135623730951},"233":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"34":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"65":{"tf":2.0},"81":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":2.0}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}},"w":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":37,"docs":{"106":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"164":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"198":{"tf":1.0},"23":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":2.8284271247461903},"53":{"tf":2.6457513110645907},"56":{"tf":1.0},"57":{"tf":4.358898943540674},"58":{"tf":4.242640687119285},"59":{"tf":3.7416573867739413},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.7320508075688772},"77":{"tf":1.0},"82":{"tf":3.605551275463989},"83":{"tf":5.656854249492381},"84":{"tf":2.8284271247461903},"85":{"tf":2.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"113":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":2.23606797749979}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"1":{"df":1,"docs":{"118":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"118":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"118":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"209":{"tf":1.0},"77":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":57,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"111":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"127":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"198":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"223":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772},"257":{"tf":2.6457513110645907},"258":{"tf":2.449489742783178},"259":{"tf":2.8284271247461903},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"264":{"tf":1.0},"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.0},"89":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"17":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{",":{"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"":{",":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"":{",":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":56,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.7320508075688772},"151":{"tf":1.0},"169":{"tf":2.6457513110645907},"17":{"tf":1.0},"170":{"tf":1.7320508075688772},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":2.449489742783178},"211":{"tf":3.0},"212":{"tf":1.7320508075688772},"213":{"tf":2.23606797749979},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":1.4142135623730951},"219":{"tf":2.23606797749979},"233":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.7320508075688772},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"265":{"tf":2.449489742783178},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"42":{"tf":1.0},"55":{"tf":1.7320508075688772},"81":{"tf":2.0},"82":{"tf":3.0},"83":{"tf":3.0},"84":{"tf":1.0},"88":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"d":{"d":{"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"82":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"83":{"tf":1.0}},"z":{"df":1,"docs":{"83":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"83":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"169":{"tf":1.0},"217":{"tf":1.0}}},"df":16,"docs":{"169":{"tf":1.0},"210":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":2.0},"221":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":9,"docs":{"105":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":2.0},"109":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":2.8284271247461903},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":12,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"_":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"221":{"tf":1.0},"226":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.0}}},"df":67,"docs":{"102":{"tf":1.0},"104":{"tf":3.0},"105":{"tf":1.0},"106":{"tf":2.449489742783178},"107":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":4.123105625617661},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":2.0},"205":{"tf":2.0},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"215":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":3.3166247903554},"221":{"tf":4.123105625617661},"222":{"tf":4.0},"223":{"tf":3.7416573867739413},"224":{"tf":2.6457513110645907},"225":{"tf":1.7320508075688772},"226":{"tf":3.1622776601683795},"227":{"tf":2.6457513110645907},"228":{"tf":3.0},"229":{"tf":2.6457513110645907},"230":{"tf":3.1622776601683795},"231":{"tf":2.449489742783178},"232":{"tf":2.8284271247461903},"233":{"tf":3.1622776601683795},"234":{"tf":2.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"237":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"240":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":3.605551275463989},"246":{"tf":2.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":1.7320508075688772},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"252":{"tf":2.6457513110645907},"253":{"tf":2.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"259":{"tf":2.449489742783178},"260":{"tf":2.23606797749979},"261":{"tf":1.7320508075688772},"262":{"tf":2.8284271247461903},"263":{"tf":2.6457513110645907},"264":{"tf":2.23606797749979},"269":{"tf":2.0},"271":{"tf":1.0},"273":{"tf":2.6457513110645907},"88":{"tf":2.449489742783178},"89":{"tf":1.7320508075688772}},"’":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"4":{"tf":1.0},"7":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"270":{"tf":1.7320508075688772},"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"113":{"tf":1.0},"228":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"245":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"+":{"1":{",":{"df":0,"docs":{},"v":{"2":{",":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"df":0,"docs":{},"v":{"1":{",":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"130":{"tf":1.0},"141":{"tf":1.0},"154":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"245":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.0},"64":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"′":{"df":0,"docs":{},"−":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"+":{"1":{")":{"=":{"0":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":15,"docs":{"130":{"tf":1.4142135623730951},"154":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":2.23606797749979},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"df":27,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"33":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.0},"62":{"tf":1.7320508075688772},"69":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":2.23606797749979}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"104":{"tf":1.0},"118":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"68":{"tf":1.0},"99":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":73,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":4.358898943540674},"106":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.6457513110645907},"113":{"tf":1.4142135623730951},"114":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.23606797749979},"120":{"tf":3.0},"121":{"tf":2.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":3.1622776601683795},"128":{"tf":2.8284271247461903},"129":{"tf":3.0},"130":{"tf":2.0},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"169":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"211":{"tf":3.7416573867739413},"212":{"tf":2.23606797749979},"213":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":2.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":3.0},"228":{"tf":2.23606797749979},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":4.123105625617661},"234":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":2.23606797749979},"243":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":3.3166247903554},"246":{"tf":4.0},"247":{"tf":3.1622776601683795},"248":{"tf":1.0},"250":{"tf":2.6457513110645907},"251":{"tf":1.4142135623730951},"254":{"tf":3.1622776601683795},"255":{"tf":2.8284271247461903},"256":{"tf":3.0},"257":{"tf":4.0},"258":{"tf":4.358898943540674},"259":{"tf":2.449489742783178},"261":{"tf":2.8284271247461903},"262":{"tf":2.23606797749979},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"266":{"tf":4.358898943540674},"267":{"tf":1.0},"268":{"tf":2.23606797749979},"271":{"tf":2.449489742783178},"87":{"tf":2.6457513110645907},"89":{"tf":2.8284271247461903}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":27,"docs":{"116":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"208":{"tf":1.7320508075688772},"213":{"tf":1.0},"217":{"tf":1.0},"224":{"tf":1.7320508075688772},"226":{"tf":1.0},"230":{"tf":1.4142135623730951},"234":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"259":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"89":{"tf":1.0}}}}},"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":6,"docs":{"126":{"tf":1.7320508075688772},"222":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0},"272":{"tf":1.4142135623730951},"3":{"tf":1.0}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"256":{"tf":1.0},"257":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":3.0}}}}},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"245":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"77":{"tf":1.7320508075688772},"8":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0},"33":{"tf":1.0},"67":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"69":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":12,"docs":{"116":{"tf":1.7320508075688772},"199":{"tf":1.0},"205":{"tf":1.0},"219":{"tf":1.7320508075688772},"229":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":2.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":4,"docs":{"209":{"tf":1.0},"266":{"tf":1.0},"33":{"tf":1.4142135623730951},"83":{"tf":2.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"17":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"70":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":4.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":18,"docs":{"13":{"tf":2.23606797749979},"15":{"tf":1.0},"16":{"tf":2.0},"2":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":2.0},"38":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"48":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.0},"55":{"tf":1.0}}}}}},"t":{"df":16,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"3":{"tf":1.0}}},"x":{"df":7,"docs":{"102":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"270":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"88":{"tf":1.0}}}},"i":{"df":1,"docs":{"113":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"10":{"tf":1.4142135623730951},"102":{"tf":1.0},"194":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"245":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":2.23606797749979},"271":{"tf":2.23606797749979},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772},"65":{"tf":1.0},"88":{"tf":2.6457513110645907},"89":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":3,"docs":{"224":{"tf":1.0},"245":{"tf":1.0},"6":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"111":{"tf":1.0},"127":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":94,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":2.8284271247461903},"105":{"tf":2.449489742783178},"106":{"tf":2.0},"107":{"tf":2.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"115":{"tf":2.449489742783178},"116":{"tf":2.23606797749979},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.7320508075688772},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":2.8284271247461903},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":2.449489742783178},"209":{"tf":2.449489742783178},"211":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":2.449489742783178},"224":{"tf":1.0},"228":{"tf":1.4142135623730951},"232":{"tf":3.872983346207417},"233":{"tf":2.6457513110645907},"234":{"tf":2.449489742783178},"235":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"243":{"tf":3.0},"244":{"tf":1.7320508075688772},"245":{"tf":4.242640687119285},"246":{"tf":2.23606797749979},"247":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"268":{"tf":1.7320508075688772},"271":{"tf":1.4142135623730951},"272":{"tf":2.449489742783178},"274":{"tf":1.7320508075688772},"47":{"tf":1.0},"58":{"tf":3.1622776601683795},"65":{"tf":1.0},"68":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"88":{"tf":2.0},"99":{"tf":2.8284271247461903}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"247":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":6,"docs":{"232":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":18,"docs":{"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"2":{"tf":1.0},"211":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"245":{"tf":2.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"271":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"49":{"tf":1.7320508075688772},"60":{"tf":2.0},"61":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"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":{"23":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"223":{"tf":2.23606797749979},"262":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"102":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.4142135623730951},"265":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"213":{"tf":1.4142135623730951},"218":{"tf":1.0},"241":{"tf":1.0},"258":{"tf":2.6457513110645907},"77":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"d":{"df":5,"docs":{"101":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"209":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"105":{"tf":2.0},"11":{"tf":1.0},"111":{"tf":1.4142135623730951},"126":{"tf":1.0},"138":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"261":{"tf":1.0},"265":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"32":{"tf":1.0},"38":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.4142135623730951},"81":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}},"t":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"1":{"=":{"3":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"1":{"=":{"1":{"0":{"0":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"=":{"2":{"0":{"0":{"+":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"1":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":3,"docs":{"111":{"tf":1.0},"39":{"tf":2.8284271247461903},"63":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"218":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951}},"t":{"_":{"_":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":133,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":3.605551275463989},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":3.0},"117":{"tf":3.3166247903554},"118":{"tf":3.3166247903554},"119":{"tf":2.23606797749979},"120":{"tf":2.8284271247461903},"121":{"tf":2.6457513110645907},"122":{"tf":2.6457513110645907},"123":{"tf":2.6457513110645907},"124":{"tf":2.23606797749979},"125":{"tf":2.0},"126":{"tf":3.3166247903554},"127":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"134":{"tf":2.0},"135":{"tf":2.8284271247461903},"136":{"tf":2.0},"137":{"tf":4.123105625617661},"138":{"tf":2.6457513110645907},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":2.449489742783178},"143":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":2.23606797749979},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"178":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"212":{"tf":2.449489742783178},"213":{"tf":2.0},"214":{"tf":1.0},"218":{"tf":2.23606797749979},"219":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":3.3166247903554},"225":{"tf":1.4142135623730951},"226":{"tf":3.1622776601683795},"227":{"tf":2.449489742783178},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"231":{"tf":2.449489742783178},"241":{"tf":2.0},"242":{"tf":2.6457513110645907},"243":{"tf":3.1622776601683795},"244":{"tf":2.23606797749979},"245":{"tf":4.58257569495584},"246":{"tf":1.4142135623730951},"248":{"tf":1.7320508075688772},"249":{"tf":1.0},"250":{"tf":2.0},"251":{"tf":1.7320508075688772},"252":{"tf":2.23606797749979},"253":{"tf":1.0},"254":{"tf":2.449489742783178},"255":{"tf":2.0},"256":{"tf":2.6457513110645907},"257":{"tf":2.6457513110645907},"258":{"tf":1.7320508075688772},"259":{"tf":3.605551275463989},"262":{"tf":3.0},"263":{"tf":2.0},"264":{"tf":2.6457513110645907},"267":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":2.6457513110645907},"4":{"tf":1.0},"87":{"tf":3.4641016151377544},"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"35":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":8,"docs":{"122":{"tf":1.0},"126":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"233":{"tf":1.0},"65":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":80,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.0},"105":{"tf":3.7416573867739413},"111":{"tf":2.23606797749979},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"130":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"217":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":1.4142135623730951},"246":{"tf":2.8284271247461903},"247":{"tf":2.23606797749979},"250":{"tf":1.7320508075688772},"255":{"tf":2.0},"256":{"tf":2.0},"257":{"tf":2.23606797749979},"258":{"tf":3.605551275463989},"259":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"43":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":3.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.0},"97":{"tf":2.8284271247461903},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"116":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"258":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"259":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":23,"docs":{"2":{"tf":2.6457513110645907},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":1.0},"257":{"tf":3.4641016151377544},"258":{"tf":3.605551275463989},"259":{"tf":2.6457513110645907},"260":{"tf":1.4142135623730951},"3":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":4.0},"42":{"tf":2.449489742783178},"43":{"tf":2.23606797749979},"44":{"tf":3.1622776601683795},"45":{"tf":3.872983346207417},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"88":{"tf":1.0},"95":{"tf":2.0},"96":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":5,"docs":{"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.7320508075688772},"258":{"tf":1.7320508075688772},"77":{"tf":1.0}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":27,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":1.7320508075688772},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":2.449489742783178},"120":{"tf":1.0},"121":{"tf":1.0},"14":{"tf":1.7320508075688772},"143":{"tf":2.0},"144":{"tf":2.449489742783178},"148":{"tf":2.23606797749979},"2":{"tf":2.0},"223":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"46":{"tf":2.449489742783178},"47":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":2.0},"7":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"103":{"tf":1.0},"262":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0}}},"t":{"df":2,"docs":{"137":{"tf":1.0},"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"113":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"i":{"df":21,"docs":{"10":{"tf":1.0},"106":{"tf":2.0},"111":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"137":{"tf":1.4142135623730951},"150":{"tf":1.0},"184":{"tf":2.0},"212":{"tf":1.4142135623730951},"234":{"tf":1.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.4142135623730951},"74":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":2.23606797749979},"69":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":22,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"137":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"220":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":19,"docs":{"0":{"tf":1.0},"107":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"166":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"227":{"tf":1.4142135623730951},"230":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"274":{"tf":1.0},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.7320508075688772},"126":{"tf":1.0},"138":{"tf":1.0},"208":{"tf":1.4142135623730951},"228":{"tf":1.0},"246":{"tf":1.4142135623730951},"247":{"tf":1.0},"259":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"266":{"tf":1.0},"48":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":2.0},"122":{"tf":3.3166247903554},"123":{"tf":2.23606797749979},"124":{"tf":1.4142135623730951},"126":{"tf":2.0},"23":{"tf":2.449489742783178},"48":{"tf":2.0},"58":{"tf":1.4142135623730951},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.0},"150":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"64":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"211":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}},"u":{"df":2,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"142":{"tf":1.0},"262":{"tf":1.0},"274":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"257":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":4,"docs":{"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"274":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":12,"docs":{"2":{"tf":1.0},"205":{"tf":2.449489742783178},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"229":{"tf":1.0},"274":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"140":{"tf":1.0},"192":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":1.0}},"w":{"df":3,"docs":{"140":{"tf":1.0},"193":{"tf":2.0},"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{"0":{"df":1,"docs":{"45":{"tf":2.0}}},"1":{"df":1,"docs":{"45":{"tf":2.23606797749979}}},"2":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}},"df":8,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"257":{"tf":2.23606797749979},"258":{"tf":1.7320508075688772},"259":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":67,"docs":{"1":{"tf":1.0},"103":{"tf":2.0},"105":{"tf":2.23606797749979},"106":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"241":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"259":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"42":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"72":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"255":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":57,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"130":{"tf":1.7320508075688772},"150":{"tf":1.0},"154":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"222":{"tf":2.0},"228":{"tf":1.0},"23":{"tf":2.449489742783178},"231":{"tf":1.0},"232":{"tf":3.4641016151377544},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":2.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":2.0},"259":{"tf":1.0},"265":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":4.242640687119285},"53":{"tf":3.1622776601683795},"54":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951},"56":{"tf":2.6457513110645907},"57":{"tf":5.830951894845301},"58":{"tf":4.58257569495584},"59":{"tf":4.0},"60":{"tf":3.4641016151377544},"61":{"tf":2.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":2.23606797749979},"66":{"tf":3.605551275463989},"68":{"tf":2.8284271247461903},"83":{"tf":1.0},"84":{"tf":2.449489742783178},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{")":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"i":{"c":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"−":{"c":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"257":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"257":{"tf":1.0},"258":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"←":{"(":{"a":{"+":{"b":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"∧":{"b":{"df":2,"docs":{"162":{"tf":1.0},"179":{"tf":1.0}}},"df":0,"docs":{}},"∨":{"b":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"⊕":{"b":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"⋅":{"2":{"b":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"158":{"tf":1.0}},"−":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"+":{"b":{"df":1,"docs":{"57":{"tf":1.0}},"−":{"2":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"⋅":{"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"⋅":{"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"∗":{"b":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"⋅":{"b":{"df":2,"docs":{"52":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{",":{"b":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"{":{"1":{",":{"0":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"53":{"tf":2.6457513110645907},"59":{"tf":3.1622776601683795}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{",":{"b":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"59":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"⌊":{"a":{"/":{"2":{"3":{"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"57":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{",":{"c":{",":{"b":{",":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"e":{")":{"df":0,"docs":{},"←":{"a":{"+":{"b":{"+":{"c":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"c":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"}":{"df":0,"docs":{},"←":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{",":{"b":{",":{"c":{"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":{},"←":{"[":{"a":{"d":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"0":{"df":6,"docs":{"219":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":2.0},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0}}},"1":{"df":6,"docs":{"219":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":2.0},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0}}},"=":{"b":{"=":{"0":{"df":0,"docs":{},"∑":{"6":{"df":0,"docs":{},"":{"(":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"2":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"a":{",":{"b":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"192":{"tf":1.0},"193":{"tf":1.0},"61":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"n":{"df":1,"docs":{"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"77":{"tf":2.0}}}}}}},"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.7320508075688772},"270":{"tf":1.4142135623730951},"272":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"65":{"tf":3.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"8":{"tf":1.0},"88":{"tf":1.0}},"←":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"]":{".":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":21,"docs":{"116":{"tf":1.7320508075688772},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"198":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"57":{"tf":3.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":2.449489742783178},"66":{"tf":1.0},"68":{"tf":2.6457513110645907},"84":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"258":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":4,"docs":{"16":{"tf":1.0},"23":{"tf":2.449489742783178},"24":{"tf":1.0},"3":{"tf":1.4142135623730951}},"g":{"df":3,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":2.6457513110645907}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"d":{"df":38,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":1.7320508075688772},"102":{"tf":2.449489742783178},"103":{"tf":2.23606797749979},"104":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":2.23606797749979},"108":{"tf":2.0},"109":{"tf":2.449489742783178},"110":{"tf":2.0},"111":{"tf":4.358898943540674},"112":{"tf":2.0},"113":{"tf":3.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":2.8284271247461903},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":2.449489742783178},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"138":{"tf":1.0},"147":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"269":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"2":{"df":1,"docs":{"112":{"tf":1.0}}},"4":{"df":1,"docs":{"112":{"tf":1.0}}},"6":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"246":{"tf":1.0},"250":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.4142135623730951}}}}}}}},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"111":{"tf":1.0},"122":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"106":{"tf":1.0},"111":{"tf":2.0},"122":{"tf":2.8284271247461903},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"131":{"tf":1.0},"134":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"44":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":4,"docs":{"127":{"tf":1.0},"6":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"81":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"206":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":57,"docs":{"101":{"tf":1.0},"105":{"tf":1.7320508075688772},"111":{"tf":1.0},"116":{"tf":2.0},"118":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":2.449489742783178},"130":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.4142135623730951},"238":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":2.449489742783178},"252":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"260":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":3.0},"39":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"54":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"19":{"tf":1.0}}}}}}},"g":{"(":{"c":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":28,"docs":{"103":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":3.4641016151377544},"139":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":3.0},"143":{"tf":3.0},"144":{"tf":2.23606797749979},"183":{"tf":1.0},"209":{"tf":2.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"222":{"tf":2.6457513110645907},"223":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"234":{"tf":1.0},"245":{"tf":1.4142135623730951},"257":{"tf":1.0},"274":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":2.8284271247461903}},"e":{"=":{"1":{"+":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"+":{"4":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":33,"docs":{"118":{"tf":1.4142135623730951},"126":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}},"2":{"+":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"(":{"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":32,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"133":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":2.0},"167":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"199":{"tf":1.0},"218":{"tf":1.4142135623730951},"231":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":2.449489742783178},"251":{"tf":1.4142135623730951},"259":{"tf":2.0},"262":{"tf":1.7320508075688772}},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"1":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"1":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"2":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"+":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"170":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"242":{"tf":1.0},"251":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0}},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"2":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"4":{"+":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"125":{"tf":1.7320508075688772},"142":{"tf":1.0},"147":{"tf":1.0},"231":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0}},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"3":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"5":{"df":17,"docs":{"114":{"tf":2.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"147":{"tf":1.4142135623730951},"169":{"tf":1.0},"208":{"tf":1.0},"227":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"259":{"tf":1.7320508075688772}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"6":{"df":12,"docs":{"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":2.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"259":{"tf":1.4142135623730951}}},"7":{"(":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":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":{"114":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.7320508075688772},"122":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0}}},"8":{"df":3,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0}}},"9":{"df":4,"docs":{"114":{"tf":1.0},"124":{"tf":1.0},"135":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"129":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951}}}},"t":{"a":{"df":5,"docs":{"238":{"tf":1.0},"245":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":2.0},"258":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":22,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"135":{"tf":1.4142135623730951},"138":{"tf":1.0},"170":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"250":{"tf":1.0},"252":{"tf":1.0},"263":{"tf":1.0},"36":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"112":{"tf":1.0},"126":{"tf":1.0},"169":{"tf":1.0},"244":{"tf":1.0},"266":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":30,"docs":{"127":{"tf":2.6457513110645907},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":2.449489742783178},"133":{"tf":1.0},"134":{"tf":2.449489742783178},"150":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":2.23606797749979},"191":{"tf":2.23606797749979},"196":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"239":{"tf":1.0},"4":{"tf":1.4142135623730951},"42":{"tf":2.6457513110645907},"45":{"tf":2.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":2.449489742783178},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":86,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.23606797749979},"105":{"tf":1.7320508075688772},"106":{"tf":2.6457513110645907},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":2.6457513110645907},"113":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"181":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.7320508075688772},"245":{"tf":2.449489742783178},"246":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":40,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"137":{"tf":1.0},"147":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"32":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":191,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.7320508075688772},"254":{"tf":2.449489742783178},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"81":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"df":3,"docs":{"17":{"tf":1.0},"257":{"tf":1.0},"8":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"2":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"106":{"tf":1.0},"137":{"tf":1.4142135623730951},"16":{"tf":1.0},"209":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"104":{"tf":1.0},"222":{"tf":1.0},"239":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"107":{"tf":1.4142135623730951},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"128":{"tf":1.0},"130":{"tf":1.0},"170":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"239":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":16,"docs":{"2":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"255":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":59,"docs":{"106":{"tf":3.872983346207417},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.0},"113":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":23,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":2.23606797749979},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"118":{"tf":1.4142135623730951},"24":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"255":{"tf":1.0},"256":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"36":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"18":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"243":{"tf":1.0},"82":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"137":{"tf":1.4142135623730951},"209":{"tf":1.0},"226":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"23":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":1,"docs":{"52":{"tf":1.4142135623730951}},"i":{"d":{"df":20,"docs":{"104":{"tf":2.449489742783178},"111":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"245":{"tf":1.0},"259":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"39":{"tf":1.4142135623730951},"65":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"n":{"df":1,"docs":{"98":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":59,"docs":{"220":{"tf":1.0},"226":{"tf":1.0},"32":{"tf":2.23606797749979},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.23606797749979},"40":{"tf":2.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"212":{"tf":1.0},"239":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"264":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"116":{"tf":1.0},"209":{"tf":3.3166247903554},"233":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":6,"docs":{"105":{"tf":1.0},"19":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":23,"docs":{"105":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"116":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"135":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":2.0},"255":{"tf":1.4142135623730951},"259":{"tf":2.0},"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":6,"docs":{"115":{"tf":1.4142135623730951},"127":{"tf":1.0},"138":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":13,"docs":{"113":{"tf":2.449489742783178},"128":{"tf":1.0},"131":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"183":{"tf":2.23606797749979},"31":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.7320508075688772},"8":{"tf":1.0},"83":{"tf":2.0},"9":{"tf":1.0}},"w":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"126":{"tf":1.0},"68":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"18":{"tf":1.0}}}},"p":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"184":{"tf":1.7320508075688772}}}},".":{"0":{"df":1,"docs":{"60":{"tf":1.0}}},"2":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"184":{"tf":1.0}}},"1":{"1":{"df":1,"docs":{"141":{"tf":1.0}}},"3":{"df":1,"docs":{"141":{"tf":1.0}}},"5":{"df":1,"docs":{"141":{"tf":1.0}}},"df":2,"docs":{"137":{"tf":1.0},"141":{"tf":1.0}}},"2":{"df":1,"docs":{"141":{"tf":1.0}}},"3":{"df":1,"docs":{"141":{"tf":1.0}}},"4":{"df":1,"docs":{"141":{"tf":1.0}}},"5":{"df":2,"docs":{"141":{"tf":1.0},"184":{"tf":1.0}}},"6":{"df":1,"docs":{"141":{"tf":1.0}}},"7":{"df":1,"docs":{"141":{"tf":1.0}}},"9":{"df":1,"docs":{"141":{"tf":1.0}}},"df":6,"docs":{"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"184":{"tf":1.0},"23":{"tf":1.0},"60":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"216":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"184":{"tf":1.0}}},"w":{".":{"0":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"60":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":22,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":2.6457513110645907},"239":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}},"←":{"(":{"a":{"+":{"b":{"+":{"c":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"b":{"+":{"c":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{"1":{",":{"0":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"⌊":{"(":{"a":{"df":0,"docs":{},"⋅":{"b":{")":{"/":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{",":{"d":{"]":{"df":0,"docs":{},"←":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"]":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"+":{"1":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"g":{"df":29,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"111":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"2":{"tf":1.0},"210":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.4142135623730951},"8":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"0":{"df":3,"docs":{"138":{"tf":1.7320508075688772},"143":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772}},"":{"df":0,"docs":{},"−":{"b":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"5":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"4":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"1":{"df":3,"docs":{"138":{"tf":1.7320508075688772},"144":{"tf":1.0},"77":{"tf":1.7320508075688772}},"":{"df":0,"docs":{},"−":{"b":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"5":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"{":{"b":{",":{"a":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"192":{"tf":1.0},"193":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":63,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"127":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.7320508075688772},"2":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.7320508075688772},"221":{"tf":1.7320508075688772},"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"226":{"tf":2.23606797749979},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.7320508075688772},"247":{"tf":1.4142135623730951},"251":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"258":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"137":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.4142135623730951},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"33":{"tf":1.0},"7":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":8,"docs":{"239":{"tf":1.0},"240":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":54,"docs":{"106":{"tf":1.0},"113":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"148":{"tf":1.0},"210":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"47":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":1,"docs":{"184":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":96,"docs":{"10":{"tf":2.0},"100":{"tf":1.7320508075688772},"104":{"tf":3.872983346207417},"109":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951},"111":{"tf":2.449489742783178},"113":{"tf":2.449489742783178},"116":{"tf":1.4142135623730951},"127":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":2.23606797749979},"169":{"tf":1.0},"17":{"tf":2.449489742783178},"170":{"tf":2.6457513110645907},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"190":{"tf":2.449489742783178},"191":{"tf":2.449489742783178},"192":{"tf":2.0},"193":{"tf":2.23606797749979},"197":{"tf":1.4142135623730951},"198":{"tf":2.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"202":{"tf":1.7320508075688772},"203":{"tf":2.0},"204":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":2.0},"208":{"tf":2.23606797749979},"209":{"tf":3.4641016151377544},"210":{"tf":1.0},"232":{"tf":2.0},"233":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":3.605551275463989},"239":{"tf":2.449489742783178},"240":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":2.0},"246":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"34":{"tf":2.8284271247461903},"42":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":1.0},"6":{"tf":2.6457513110645907},"60":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":2.449489742783178},"66":{"tf":3.872983346207417},"68":{"tf":1.4142135623730951},"70":{"tf":3.1622776601683795},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"79":{"tf":3.1622776601683795},"8":{"tf":1.4142135623730951},"80":{"tf":3.1622776601683795},"81":{"tf":1.7320508075688772},"86":{"tf":2.449489742783178},"87":{"tf":2.449489742783178},"97":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}}}}},"i":{"df":1,"docs":{"274":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":17,"docs":{"105":{"tf":2.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0},"267":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.4142135623730951},"75":{"tf":2.0},"77":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"3":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":18,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"123":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"170":{"tf":1.4142135623730951},"234":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}}},"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}},"df":57,"docs":{"100":{"tf":1.0},"101":{"tf":4.242640687119285},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":2.23606797749979},"108":{"tf":1.4142135623730951},"110":{"tf":2.449489742783178},"111":{"tf":2.6457513110645907},"112":{"tf":3.605551275463989},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":2.23606797749979},"120":{"tf":2.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"131":{"tf":1.0},"144":{"tf":1.0},"18":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"233":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"271":{"tf":1.0},"37":{"tf":2.23606797749979},"38":{"tf":2.449489742783178},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":2.23606797749979},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"68":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.4142135623730951},"9":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"138":{"tf":1.0},"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":44,"docs":{"113":{"tf":2.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"129":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"223":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":2.23606797749979},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"250":{"tf":2.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"255":{"tf":1.4142135623730951},"259":{"tf":2.0},"260":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"1":{"tf":1.0},"130":{"tf":1.0},"266":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":43,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"150":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.7320508075688772},"234":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.4142135623730951},"248":{"tf":1.0},"251":{"tf":2.23606797749979},"252":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"23":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.0},"118":{"tf":1.0},"150":{"tf":1.0},"227":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"25":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"112":{"tf":2.8284271247461903},"117":{"tf":2.0},"118":{"tf":1.7320508075688772},"17":{"tf":1.0},"233":{"tf":2.0},"245":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}}}}}}},"q":{".":{"2":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"140":{"tf":1.0},"164":{"tf":2.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":25,"docs":{"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"151":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":2.0},"267":{"tf":1.0},"34":{"tf":1.0},"55":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":2.449489742783178},"87":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":3,"docs":{"170":{"tf":1.0},"243":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":1,"docs":{"53":{"tf":1.0}}},"z":{"df":2,"docs":{"139":{"tf":1.0},"165":{"tf":2.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"110":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"40":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":2.449489742783178},"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"t":{"c":{"df":19,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"212":{"tf":1.0},"232":{"tf":1.4142135623730951},"239":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":1,"docs":{"274":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":6,"docs":{"118":{"tf":1.0},"133":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"19":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":10,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":1.0},"213":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":14,"docs":{"101":{"tf":1.4142135623730951},"121":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"169":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"250":{"tf":1.0},"267":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"86":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":50,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":2.6457513110645907},"190":{"tf":1.0},"191":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"247":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"254":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"272":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":2.23606797749979},"40":{"tf":1.0},"45":{"tf":1.7320508075688772},"49":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"df":11,"docs":{"111":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"230":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"105":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"234":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"42":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":5,"docs":{"113":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"234":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{".":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"37":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":3,"docs":{"23":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951}}}}},"u":{"6":{"4":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"38":{"tf":1.0},"42":{"tf":2.449489742783178},"44":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":121,"docs":{"0":{"tf":2.0},"10":{"tf":1.4142135623730951},"100":{"tf":3.0},"101":{"tf":3.3166247903554},"102":{"tf":1.4142135623730951},"103":{"tf":2.449489742783178},"105":{"tf":3.3166247903554},"106":{"tf":5.385164807134504},"107":{"tf":1.4142135623730951},"108":{"tf":2.6457513110645907},"109":{"tf":2.23606797749979},"11":{"tf":2.0},"110":{"tf":3.872983346207417},"111":{"tf":4.47213595499958},"112":{"tf":3.605551275463989},"113":{"tf":3.0},"114":{"tf":3.1622776601683795},"115":{"tf":2.0},"116":{"tf":2.6457513110645907},"117":{"tf":3.0},"118":{"tf":3.4641016151377544},"120":{"tf":2.6457513110645907},"121":{"tf":1.4142135623730951},"122":{"tf":2.8284271247461903},"123":{"tf":2.8284271247461903},"124":{"tf":2.0},"125":{"tf":1.4142135623730951},"126":{"tf":2.449489742783178},"127":{"tf":1.7320508075688772},"129":{"tf":1.0},"13":{"tf":2.0},"132":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"148":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":3.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"20":{"tf":2.23606797749979},"209":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"211":{"tf":1.4142135623730951},"217":{"tf":2.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":2.0},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":2.0},"232":{"tf":4.242640687119285},"233":{"tf":2.0},"234":{"tf":1.0},"236":{"tf":2.0},"237":{"tf":2.0},"238":{"tf":2.23606797749979},"239":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"240":{"tf":2.6457513110645907},"241":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"260":{"tf":2.0},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":2.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"38":{"tf":2.23606797749979},"41":{"tf":3.605551275463989},"42":{"tf":2.6457513110645907},"43":{"tf":1.4142135623730951},"44":{"tf":2.449489742783178},"45":{"tf":4.898979485566356},"46":{"tf":1.0},"47":{"tf":2.449489742783178},"48":{"tf":1.0},"49":{"tf":2.6457513110645907},"50":{"tf":1.0},"55":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"8":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.23606797749979},"89":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":2.23606797749979},"92":{"tf":1.7320508075688772},"93":{"tf":2.0},"94":{"tf":2.6457513110645907},"95":{"tf":2.6457513110645907},"96":{"tf":2.6457513110645907},"97":{"tf":1.4142135623730951},"98":{"tf":4.358898943540674},"99":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"|":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{":":{":":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}},"t":{"df":12,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"147":{"tf":1.0},"24":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.0}}}},"p":{".":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"c":{"df":2,"docs":{"139":{"tf":1.0},"166":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"33":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"166":{"tf":1.7320508075688772},"28":{"tf":1.0},"52":{"tf":1.7320508075688772}},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"1":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"19":{"tf":2.0},"2":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"221":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"38":{"tf":1.0},"50":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":2.8284271247461903},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"265":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"105":{"tf":1.0},"195":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}},"z":{".":{"2":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"38":{"tf":1.0},"40":{"tf":1.0}}}}},"u":{"6":{"4":{":":{":":{"a":{"d":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"38":{"tf":2.6457513110645907},"43":{"tf":1.0}}}},"s":{"df":7,"docs":{"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"132":{"tf":1.0},"137":{"tf":1.0},"199":{"tf":1.0},"35":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":10,"docs":{"118":{"tf":1.0},"134":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"33":{"tf":1.0},"39":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951}}}}}}},"t":{"2":{"a":{"d":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"139":{"tf":1.0},"167":{"tf":2.0},"54":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"2":{"tf":1.0},"213":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":6,"docs":{"167":{"tf":1.0},"209":{"tf":1.7320508075688772},"253":{"tf":1.0},"54":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":2.449489742783178}}}},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"1":{"tf":1.0},"2":{"tf":1.4142135623730951},"33":{"tf":1.0},"38":{"tf":1.0},"8":{"tf":1.0}}}}},"r":{"a":{"df":6,"docs":{"138":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"←":{"df":0,"docs":{},"⌊":{"(":{"a":{"+":{"b":{"+":{"c":{")":{"/":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"b":{"+":{"c":{")":{"/":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"0":{"df":1,"docs":{"106":{"tf":1.4142135623730951}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"106":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}},"a":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.4142135623730951}},"":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"=":{"1":{"df":2,"docs":{"244":{"tf":1.0},"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"244":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":13,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"233":{"tf":1.0},"35":{"tf":1.0},"46":{"tf":1.0}}}}}},"t":{"df":8,"docs":{"100":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"271":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"209":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}},"d":{"d":{"3":{"_":{"df":0,"docs":{},"m":{"a":{"d":{"d":{"df":0,"docs":{},"":{"=":{"b":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"5":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"4":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"2":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":33,"docs":{"106":{"tf":2.0},"110":{"tf":1.0},"151":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":2.8284271247461903},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":3.0},"58":{"tf":3.0},"59":{"tf":2.8284271247461903},"61":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":2.0},"68":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"82":{"tf":3.0},"83":{"tf":3.0},"84":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"s":{"df":5,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"118":{"tf":1.0},"49":{"tf":1.0},"99":{"tf":1.0}},"e":{"_":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"⋅":{"(":{"b":{"2":{"df":0,"docs":{},"−":{"b":{")":{"=":{"0":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"7":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"13":{"tf":1.0},"55":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}}},"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"=":{"1":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"113":{"tf":1.0},"148":{"tf":1.0}},"i":{"df":1,"docs":{"116":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"137":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"68":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.7320508075688772},"13":{"tf":1.7320508075688772},"2":{"tf":2.0},"23":{"tf":1.0},"257":{"tf":1.0},"3":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"n":{"d":{",":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"4":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"113":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"g":{"c":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"=":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":8,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"234":{"tf":1.0},"274":{"tf":1.0},"33":{"tf":1.0},"62":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"216":{"tf":1.0},"221":{"tf":1.0},"65":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}}},"g":{"1":{"df":1,"docs":{"126":{"tf":1.4142135623730951}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"2":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"4":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"=":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"c":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"2":{"df":1,"docs":{"126":{"tf":1.4142135623730951}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"c":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"df":1,"docs":{"126":{"tf":1.4142135623730951}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"c":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"c":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}},"":{"=":{"b":{"c":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}},"":{"=":{"1":{"df":3,"docs":{"234":{"tf":1.4142135623730951},"242":{"tf":1.0},"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"b":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"18":{"tf":2.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":56,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"111":{"tf":2.0},"127":{"tf":1.0},"139":{"tf":2.6457513110645907},"140":{"tf":2.23606797749979},"155":{"tf":2.23606797749979},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.7320508075688772},"170":{"tf":2.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.7320508075688772},"209":{"tf":2.0},"210":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"246":{"tf":1.7320508075688772},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"258":{"tf":1.7320508075688772},"266":{"tf":1.7320508075688772},"34":{"tf":2.0},"39":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":2.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"6":{"tf":2.23606797749979},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":2.23606797749979},"72":{"tf":1.0},"77":{"tf":2.0},"87":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"18":{"tf":2.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0}}},"l":{"df":2,"docs":{"116":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":17,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"211":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.7320508075688772},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"272":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0}}}},"d":{"df":2,"docs":{"213":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":11,"docs":{"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"129":{"tf":1.0},"17":{"tf":1.0},"231":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"267":{"tf":1.0},"49":{"tf":1.0},"8":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":71,"docs":{"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":2.8284271247461903},"106":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"111":{"tf":3.605551275463989},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.23606797749979},"120":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"147":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"246":{"tf":1.7320508075688772},"247":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":2.6457513110645907},"65":{"tf":1.7320508075688772},"66":{"tf":3.1622776601683795},"70":{"tf":1.0},"77":{"tf":3.0},"79":{"tf":2.0},"80":{"tf":2.0},"87":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979}}}}},"t":{"df":5,"docs":{"111":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"2":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"212":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":45,"docs":{"103":{"tf":2.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":2.23606797749979},"113":{"tf":3.1622776601683795},"114":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"123":{"tf":2.0},"125":{"tf":3.0},"126":{"tf":2.0},"132":{"tf":2.6457513110645907},"133":{"tf":2.449489742783178},"135":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":4.242640687119285},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":3.0},"143":{"tf":2.0},"144":{"tf":1.7320508075688772},"145":{"tf":2.0},"146":{"tf":2.23606797749979},"147":{"tf":3.1622776601683795},"148":{"tf":2.0},"15":{"tf":1.0},"169":{"tf":1.0},"18":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"224":{"tf":2.23606797749979},"226":{"tf":1.7320508075688772},"234":{"tf":5.196152422706632},"242":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"251":{"tf":1.0},"262":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"234":{"tf":1.0}}},"w":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"113":{"tf":1.0}},"":{"=":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":22,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":1.7320508075688772},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":2.449489742783178},"148":{"tf":2.23606797749979},"2":{"tf":1.7320508075688772},"25":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"46":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"7":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"a":{"d":{"d":{"df":2,"docs":{"139":{"tf":1.0},"152":{"tf":2.0}}},"df":0,"docs":{}},"df":1,"docs":{"234":{"tf":1.4142135623730951}}},"df":5,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"234":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"153":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"":{"=":{"1":{"df":2,"docs":{"244":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"a":{"df":1,"docs":{"234":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"234":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"=":{"1":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":1,"docs":{"234":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"234":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"=":{"1":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"32":{"tf":1.0},"4":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"209":{"tf":3.7416573867739413},"72":{"tf":1.0},"77":{"tf":2.6457513110645907}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":166,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.23606797749979},"105":{"tf":2.23606797749979},"106":{"tf":3.0},"108":{"tf":1.0},"111":{"tf":3.0},"112":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":2.449489742783178},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":2.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"135":{"tf":2.449489742783178},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":2.0},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"233":{"tf":2.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":2.0},"243":{"tf":2.6457513110645907},"244":{"tf":1.7320508075688772},"245":{"tf":3.1622776601683795},"246":{"tf":2.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"252":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"255":{"tf":2.0},"256":{"tf":2.0},"257":{"tf":2.0},"259":{"tf":2.6457513110645907},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"87":{"tf":2.0},"89":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"s":{":":{"[":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"'":{"df":1,"docs":{"45":{"tf":1.0}}},"df":3,"docs":{"23":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":2.8284271247461903}}},"p":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"113":{"tf":1.0},"137":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"df":5,"docs":{"122":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}},"t":{"df":2,"docs":{"63":{"tf":1.0},"87":{"tf":1.0}}}},"df":8,"docs":{"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"65":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"234":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"1":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"260":{"tf":1.0},"265":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":15,"docs":{"170":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"258":{"tf":1.0},"262":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":2.0},"70":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"138":{"tf":1.0},"167":{"tf":1.0},"35":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"":{"=":{"1":{"df":3,"docs":{"234":{"tf":1.4142135623730951},"242":{"tf":1.0},"244":{"tf":1.0}}},"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"i":{"=":{"0":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"′":{"df":0,"docs":{},"":{"=":{"1":{"df":2,"docs":{"234":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{},"k":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":1,"docs":{"133":{"tf":1.0}},"":{"=":{"(":{"b":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"1":{"6":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"135":{"tf":1.0}}},"1":{"df":3,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"113":{"tf":1.0},"123":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":2,"docs":{"113":{"tf":1.0},"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"166":{"tf":2.6457513110645907},"167":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"88":{"tf":1.0},"89":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"h":{"4":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"258":{"tf":1.0},"265":{"tf":1.0},"37":{"tf":1.0},"55":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"123":{"tf":1.4142135623730951}},"":{"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"−":{"8":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":5,"docs":{"209":{"tf":1.7320508075688772},"274":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":2.23606797749979}},"e":{"2":{"df":0,"docs":{},"f":{"4":{"df":2,"docs":{"140":{"tf":1.0},"209":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"g":{"c":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}},"":{"=":{"0":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}},"1":{"df":3,"docs":{"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"132":{"tf":1.0}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"6":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"4":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"3":{"2":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"146":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"132":{"tf":1.0},"135":{"tf":1.7320508075688772}}},"1":{"df":2,"docs":{"134":{"tf":1.0},"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"b":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}},"":{"=":{"1":{"df":3,"docs":{"234":{"tf":1.4142135623730951},"242":{"tf":1.0},"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"3":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"2":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"113":{"tf":1.0},"123":{"tf":1.4142135623730951}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"2":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"4":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"8":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{")":{"=":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"′":{"=":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"2":{"7":{"df":0,"docs":{},"−":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{")":{"=":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"3":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"113":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"=":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"3":{"2":{"a":{"d":{"d":{"3":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"d":{"d":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"":{"=":{"b":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"5":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"4":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"206":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0},"265":{"tf":1.0}},"i":{"df":4,"docs":{"105":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"2":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":28,"docs":{"11":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"221":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.7320508075688772},"35":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"213":{"tf":1.0},"90":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"6":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0}}}}}}},"g":{"0":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"106":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":2,"docs":{"106":{"tf":1.0},"111":{"tf":2.449489742783178}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"g":{"7":{"df":1,"docs":{"111":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"111":{"tf":2.449489742783178}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"g":{"7":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"111":{"tf":1.0}}},"7":{"df":1,"docs":{"111":{"tf":1.0}}},"9":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"g":{"1":{"0":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"g":{"1":{"1":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"0":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"213":{"tf":2.23606797749979},"258":{"tf":1.7320508075688772}}},"r":{"b":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"209":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":1,"docs":{"20":{"tf":2.23606797749979}}},"c":{"=":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"df":0,"docs":{},"g":{"c":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":2.23606797749979},"126":{"tf":1.0}},"⋅":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"b":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"77":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":24,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"19":{"tf":2.449489742783178},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"55":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"t":{"df":4,"docs":{"118":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"252":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"101":{"tf":1.0},"216":{"tf":1.0},"226":{"tf":1.0},"266":{"tf":1.0}},"n":{"df":27,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.4142135623730951},"19":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"24":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":2.0},"259":{"tf":1.0},"272":{"tf":1.0},"44":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"35":{"tf":2.6457513110645907},"69":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":6,"docs":{"1":{"tf":1.0},"138":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"266":{"tf":1.0},"45":{"tf":1.0}},"o":{"d":{"df":3,"docs":{"1":{"tf":1.0},"106":{"tf":1.0},"274":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"15":{"tf":2.23606797749979}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":53,"docs":{"111":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"127":{"tf":1.0},"131":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":2.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":2.8284271247461903},"122":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":29,"docs":{"103":{"tf":2.23606797749979},"105":{"tf":4.358898943540674},"106":{"tf":3.3166247903554},"111":{"tf":8.888194417315589},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"122":{"tf":3.4641016151377544},"123":{"tf":4.242640687119285},"124":{"tf":2.6457513110645907},"125":{"tf":3.1622776601683795},"126":{"tf":6.082762530298219},"138":{"tf":2.8284271247461903},"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":2.23606797749979},"143":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"269":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"87":{"tf":1.0},"97":{"tf":3.605551275463989}}}},"w":{"df":6,"docs":{"127":{"tf":1.0},"20":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"6":{"tf":1.0},"87":{"tf":1.0}}}}},"t":{"df":1,"docs":{"53":{"tf":1.0}},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"103":{"tf":1.0},"130":{"tf":1.0},"138":{"tf":1.0},"177":{"tf":1.0},"211":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.4142135623730951},"270":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"0":{"df":22,"docs":{"111":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":2.449489742783178},"126":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"233":{"tf":1.4142135623730951}},"":{",":{".":{".":{",":{"df":0,"docs":{},"h":{"3":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}},".":{",":{"df":0,"docs":{},"h":{"1":{"1":{"df":2,"docs":{"233":{"tf":1.0},"244":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":10,"docs":{"106":{"tf":2.23606797749979},"169":{"tf":1.0},"171":{"tf":1.7320508075688772},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"233":{"tf":1.0}}},"4":{"df":2,"docs":{"106":{"tf":1.0},"114":{"tf":1.0}}},"7":{"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":2.6457513110645907},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"h":{"2":{"df":2,"docs":{"201":{"tf":1.0},"203":{"tf":1.0}},"":{",":{"df":0,"docs":{},"h":{"3":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"1":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"1":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"−":{"(":{"(":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"1":{")":{"df":0,"docs":{},"∗":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"1":{")":{"=":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"6":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"2":{"7":{"+":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{")":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"df":11,"docs":{"106":{"tf":1.0},"111":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"233":{"tf":1.0}},"":{",":{".":{".":{".":{"df":0,"docs":{},"h":{"3":{"df":1,"docs":{"111":{"tf":1.0}}},"7":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":7,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0}}},"3":{"df":6,"docs":{"125":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0}}},"4":{"df":5,"docs":{"106":{"tf":1.7320508075688772},"114":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"h":{"1":{"1":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":3,"docs":{"125":{"tf":1.0},"233":{"tf":1.0},"244":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"h":{"7":{"df":1,"docs":{"244":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"5":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"147":{"tf":1.0}},"":{"=":{"1":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"df":1,"docs":{"110":{"tf":1.0}}},"8":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"h":{"1":{"1":{"df":1,"docs":{"244":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.4142135623730951}},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"a":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"101":{"tf":1.7320508075688772},"106":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"144":{"tf":1.0},"23":{"tf":1.0},"90":{"tf":1.0}}}},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"n":{"d":{"df":1,"docs":{"255":{"tf":1.0}},"l":{"df":2,"docs":{"111":{"tf":1.0},"116":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":10,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"122":{"tf":1.4142135623730951},"132":{"tf":1.0},"243":{"tf":1.0},"255":{"tf":1.4142135623730951},"258":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}}}}},"r":{"d":{"df":1,"docs":{"62":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"(":{"a":{"1":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"74":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}}}}}},"_":{"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"1":{"df":2,"docs":{"79":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"2":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"1":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"1":{"df":2,"docs":{"79":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"239":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"(":{"a":{",":{"0":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"(":{"a":{",":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":66,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":5.0990195135927845},"105":{"tf":3.872983346207417},"106":{"tf":5.291502622129181},"107":{"tf":3.3166247903554},"108":{"tf":2.0},"109":{"tf":1.7320508075688772},"110":{"tf":2.8284271247461903},"111":{"tf":3.0},"112":{"tf":4.358898943540674},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":3.3166247903554},"116":{"tf":3.605551275463989},"118":{"tf":5.0990195135927845},"119":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"220":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":2.23606797749979},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":3.4641016151377544},"233":{"tf":3.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":2.0},"237":{"tf":2.6457513110645907},"238":{"tf":2.8284271247461903},"239":{"tf":2.449489742783178},"240":{"tf":2.6457513110645907},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.7320508075688772},"244":{"tf":1.7320508075688772},"245":{"tf":3.1622776601683795},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"64":{"tf":1.0},"68":{"tf":3.3166247903554},"72":{"tf":2.0},"74":{"tf":3.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"88":{"tf":2.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"99":{"tf":5.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"224":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":18,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":2.8284271247461903},"106":{"tf":3.0},"111":{"tf":3.872983346207417},"115":{"tf":3.1622776601683795},"116":{"tf":4.0},"206":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":2.23606797749979},"233":{"tf":1.4142135623730951},"236":{"tf":2.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"244":{"tf":2.23606797749979},"245":{"tf":2.8284271247461903},"85":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"(":{"a":{",":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"(":{"a":{",":{"0":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"(":{"a":{",":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"(":{"a":{",":{"0":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"123":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"217":{"tf":1.0},"232":{"tf":1.0},"8":{"tf":1.0}}}}},"df":2,"docs":{"23":{"tf":1.4142135623730951},"64":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":9,"docs":{"103":{"tf":1.0},"16":{"tf":1.7320508075688772},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":2.0},"26":{"tf":1.7320508075688772},"35":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"103":{"tf":1.0},"128":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":30,"docs":{"100":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":1.0},"106":{"tf":2.8284271247461903},"107":{"tf":1.0},"111":{"tf":2.23606797749979},"116":{"tf":1.0},"122":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"233":{"tf":1.0},"247":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"39":{"tf":1.0},"62":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"17":{"tf":2.23606797749979}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"42":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":18,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"19":{"tf":1.0},"209":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.7320508075688772},"4":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"138":{"tf":1.0},"20":{"tf":1.0},"222":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.4142135623730951},"4":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"69":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"233":{"tf":1.0},"254":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"232":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"143":{"tf":1.0},"206":{"tf":2.23606797749979},"68":{"tf":1.0}}}}}},"r":{"df":6,"docs":{"232":{"tf":2.23606797749979},"236":{"tf":2.6457513110645907},"237":{"tf":2.6457513110645907},"238":{"tf":3.7416573867739413},"239":{"tf":3.7416573867739413},"240":{"tf":5.291502622129181}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"a":{"+":{"7":{")":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"←":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"i":{".":{"df":47,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"128":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"211":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":2.0},"245":{"tf":2.6457513110645907},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.7320508075688772}}},"/":{"df":0,"docs":{},"o":{"df":5,"docs":{"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.0}}}},"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"243":{"tf":1.4142135623730951}},"∏":{"8":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{")":{"=":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"+":{"b":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":9,"docs":{"105":{"tf":3.0},"106":{"tf":4.123105625617661},"111":{"tf":2.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"117":{"tf":2.8284271247461903},"258":{"tf":1.7320508075688772},"259":{"tf":1.0}},"e":{"a":{"df":2,"docs":{"113":{"tf":1.0},"213":{"tf":1.0}},"l":{"df":2,"docs":{"255":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":14,"docs":{"103":{"tf":1.0},"120":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"272":{"tf":1.0},"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"213":{"tf":1.0}}},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"101":{"tf":1.0},"112":{"tf":1.0},"47":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"177":{"tf":1.0}}}},"i":{"df":1,"docs":{"274":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":76,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"247":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"207":{"tf":2.0},"208":{"tf":2.23606797749979}}}},"df":0,"docs":{},"m":{"0":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":14,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":3.0},"113":{"tf":1.0},"126":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"208":{"tf":1.0},"245":{"tf":1.0},"39":{"tf":1.4142135623730951},"45":{"tf":1.0},"50":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"69":{"tf":1.0},"97":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"168":{"tf":1.0},"19":{"tf":1.0},"214":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"245":{"tf":1.7320508075688772},"253":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"273":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.4142135623730951},"88":{"tf":1.0},"99":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":5,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"170":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":11,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"210":{"tf":1.0},"240":{"tf":1.0},"266":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":2.449489742783178},"39":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0}}}},"s":{"df":22,"docs":{"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.7320508075688772},"150":{"tf":1.0},"170":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"234":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"259":{"tf":1.4142135623730951},"264":{"tf":1.0},"9":{"tf":1.0}},"s":{"df":1,"docs":{"120":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"2":{"tf":1.0},"270":{"tf":1.0},"33":{"tf":1.0}}}}}}},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"120":{"tf":2.0}}}},"df":0,"docs":{}}}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":27,"docs":{"105":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":2.23606797749979},"217":{"tf":1.7320508075688772},"221":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"245":{"tf":2.6457513110645907},"252":{"tf":1.7320508075688772},"259":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"62":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"124":{"tf":1.0},"211":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":2,"docs":{"139":{"tf":1.0},"160":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":15,"docs":{"130":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"217":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"262":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"222":{"tf":1.0},"254":{"tf":1.0},"261":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"224":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"245":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":20,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":2.0},"17":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":1.0},"239":{"tf":2.23606797749979},"240":{"tf":1.4142135623730951},"243":{"tf":2.0},"245":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":2.23606797749979},"68":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}},"i":{"c":{"df":14,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"118":{"tf":1.7320508075688772},"133":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":12,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"226":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.0},"34":{"tf":1.4142135623730951},"63":{"tf":1.0},"70":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"34":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":3,"docs":{"105":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"266":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951}},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"245":{"tf":1.0}}}}},"df":42,"docs":{"10":{"tf":1.0},"101":{"tf":2.8284271247461903},"104":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":2.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":3.3166247903554},"127":{"tf":1.0},"129":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.0},"232":{"tf":2.0},"233":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"24":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":2.0},"9":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"247":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"62":{"tf":1.0},"65":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"33":{"tf":1.0},"42":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}}}}},"df":59,"docs":{"10":{"tf":2.0},"103":{"tf":1.0},"106":{"tf":2.0},"116":{"tf":1.0},"127":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":2.8284271247461903},"179":{"tf":1.0},"180":{"tf":1.0},"194":{"tf":2.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":2.0},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"250":{"tf":1.7320508075688772},"270":{"tf":2.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":2.0},"66":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":3.1622776601683795},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"86":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":11,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.0},"23":{"tf":1.0},"267":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":2.449489742783178},"9":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"d":{"df":9,"docs":{"103":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":2.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"16":{"tf":1.0},"2":{"tf":1.0},"232":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":5,"docs":{"223":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":57,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"107":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"132":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"232":{"tf":5.0990195135927845},"233":{"tf":1.4142135623730951},"234":{"tf":2.6457513110645907},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.7320508075688772},"240":{"tf":2.23606797749979},"25":{"tf":2.23606797749979},"28":{"tf":1.0},"31":{"tf":2.0},"33":{"tf":2.8284271247461903},"35":{"tf":1.7320508075688772},"36":{"tf":2.0},"37":{"tf":3.4641016151377544},"38":{"tf":3.872983346207417},"39":{"tf":1.4142135623730951},"41":{"tf":2.0},"42":{"tf":3.4641016151377544},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"45":{"tf":3.872983346207417},"47":{"tf":2.6457513110645907},"48":{"tf":2.23606797749979},"49":{"tf":2.23606797749979},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.449489742783178},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":2.8284271247461903},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":2.449489742783178},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":20,"docs":{"168":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.4142135623730951},"220":{"tf":1.0},"258":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":2.23606797749979},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"88":{"tf":1.0}},"r":{"df":1,"docs":{"274":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"224":{"tf":1.0},"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"22":{"tf":1.4142135623730951},"265":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":5,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"23":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"147":{"tf":1.0},"209":{"tf":1.0},"252":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":19,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"14":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":2.0},"230":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.0},"38":{"tf":2.0},"4":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"17":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":6,"docs":{"138":{"tf":1.0},"211":{"tf":1.0},"223":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"87":{"tf":1.0}},"t":{"df":24,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"265":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"139":{"tf":1.0},"159":{"tf":2.0},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"257":{"tf":1.4142135623730951},"258":{"tf":2.0},"54":{"tf":1.0}}}}},"o":{"c":{"df":1,"docs":{"42":{"tf":1.7320508075688772}}},"df":0,"docs":{},"k":{"df":8,"docs":{"264":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"41":{"tf":2.0},"42":{"tf":3.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":8,"docs":{"113":{"tf":1.0},"210":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"255":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"118":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"110":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.7320508075688772}}}}}},"o":{"d":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"2":{"tf":1.0},"270":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"211":{"tf":1.0},"223":{"tf":1.0}}}}},"t":{"'":{"df":3,"docs":{"272":{"tf":1.0},"274":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":17,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"127":{"tf":3.1622776601683795},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"137":{"tf":2.6457513110645907},"140":{"tf":1.0},"141":{"tf":1.0},"42":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"60":{"tf":2.449489742783178},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"r":{"df":4,"docs":{"101":{"tf":1.0},"2":{"tf":1.0},"49":{"tf":1.0},"94":{"tf":1.0}}}},"h":{"df":1,"docs":{"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"129":{"tf":1.0},"207":{"tf":1.0},"37":{"tf":1.0},"8":{"tf":1.0}}}}}}},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":0,"docs":{},"−":{"1":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":2,"docs":{"256":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"255":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"∈":{"2":{",":{"3":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"0":{",":{"1":{"5":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":1,"docs":{"125":{"tf":1.0}}},"4":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"114":{"tf":1.0}}},"7":{"df":2,"docs":{"111":{"tf":1.0},"114":{"tf":1.0}}},"8":{"df":2,"docs":{"189":{"tf":1.4142135623730951},"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"8":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{",":{"8":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"0":{",":{"1":{",":{"2":{",":{"3":{"df":5,"docs":{"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"56":{"tf":1.0}},"}":{"df":0,"docs":{},"∋":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"≥":{"2":{"3":{"2":{"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":{}},"df":0,"docs":{}},"df":2,"docs":{"162":{"tf":1.0},"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"92":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"101":{"tf":2.23606797749979},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":2.23606797749979},"108":{"tf":2.449489742783178},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.23606797749979},"143":{"tf":1.0},"92":{"tf":2.23606797749979},"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.0}}}}},"∈":{"[":{"0":{",":{"4":{"df":1,"docs":{"244":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"0":{"df":5,"docs":{"130":{"tf":1.4142135623730951},"135":{"tf":1.0},"233":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.4142135623730951}},"":{",":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"":{",":{"b":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"244":{"tf":1.0}}},"1":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951}},"":{"=":{"0":{"df":1,"docs":{"252":{"tf":1.0}}},"1":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"(":{"a":{"df":0,"docs":{},"⋅":{"1":{"6":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{")":{")":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"(":{"b":{"df":0,"docs":{},"⋅":{"1":{"6":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{")":{")":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{")":{"=":{"0":{"df":1,"docs":{"249":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"−":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"2":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"245":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"b":{"df":1,"docs":{"20":{"tf":3.4641016151377544}}},"df":2,"docs":{"65":{"tf":3.3166247903554},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":23,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"117":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":21,"docs":{"116":{"tf":2.6457513110645907},"2":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"231":{"tf":2.0},"260":{"tf":2.6457513110645907},"261":{"tf":2.23606797749979},"262":{"tf":2.449489742783178},"263":{"tf":2.8284271247461903},"264":{"tf":3.1622776601683795},"269":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":3.3166247903554},"45":{"tf":1.0},"88":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}}}},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"df":7,"docs":{"10":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":2.449489742783178},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":3.3166247903554}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"1":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"z":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"0":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"207":{"tf":1.0},"264":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":4,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":11,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"246":{"tf":1.0},"55":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"116":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"α":{"6":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"7":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"∣":{"df":0,"docs":{},"∣":{"b":{",":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":20,"docs":{"104":{"tf":2.449489742783178},"116":{"tf":2.6457513110645907},"179":{"tf":1.0},"180":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"224":{"tf":2.23606797749979},"228":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"252":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"210":{"tf":1.0},"212":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"170":{"tf":1.0},"44":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":41,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.7320508075688772},"142":{"tf":1.0},"144":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.0},"223":{"tf":1.7320508075688772},"226":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"242":{"tf":1.0},"245":{"tf":1.7320508075688772},"246":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"262":{"tf":1.0},"264":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"87":{"tf":1.0},"97":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"212":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":1.0},"259":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"11":{"tf":1.0},"118":{"tf":1.0},"129":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"37":{"tf":1.0},"97":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"170":{"tf":1.0},"62":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}}}}},"df":2,"docs":{"209":{"tf":2.8284271247461903},"77":{"tf":2.6457513110645907}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"128":{"tf":1.0},"233":{"tf":1.0},"258":{"tf":1.0},"44":{"tf":2.0}}}}}}},"df":1,"docs":{"68":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"f":{"'":{"df":1,"docs":{"239":{"tf":1.0}}},"df":14,"docs":{"107":{"tf":1.0},"17":{"tf":1.7320508075688772},"207":{"tf":1.0},"233":{"tf":1.4142135623730951},"239":{"tf":2.0},"240":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"74":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"255":{"tf":1.0},"274":{"tf":1.0},"4":{"tf":1.0}}}},"v":{"df":4,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"239":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":35,"docs":{"106":{"tf":1.0},"118":{"tf":1.0},"131":{"tf":2.8284271247461903},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":2.0},"140":{"tf":2.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"147":{"tf":3.0},"151":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.4142135623730951},"31":{"tf":1.0},"58":{"tf":1.4142135623730951},"68":{"tf":1.0},"84":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"112":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"230":{"tf":1.4142135623730951},"266":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"111":{"tf":1.0},"13":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":2.6457513110645907},"234":{"tf":2.449489742783178},"242":{"tf":1.4142135623730951},"245":{"tf":1.0},"259":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":2.0}}}},"t":{"'":{"df":11,"docs":{"101":{"tf":1.0},"112":{"tf":1.4142135623730951},"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"170":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"247":{"tf":1.4142135623730951},"262":{"tf":1.0},"45":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"34":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":18,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"209":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":2.23606797749979},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"86":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":23,"docs":{"2":{"tf":2.0},"32":{"tf":1.4142135623730951},"38":{"tf":2.0},"43":{"tf":1.7320508075688772},"69":{"tf":2.449489742783178},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"5":{"tf":2.0}}}}}},"df":0,"docs":{},"m":{"b":{"df":15,"docs":{"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"66":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":12,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"232":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"253":{"tf":1.0},"35":{"tf":1.4142135623730951},"6":{"tf":1.0},"97":{"tf":1.0}}}},"df":3,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"40":{"tf":1.0}},"r":{"df":1,"docs":{"243":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"113":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"55":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":5,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.7320508075688772},"210":{"tf":1.0},"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"c":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"0":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"37":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.0}},"w":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"37":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.0}}}}}}}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":2,"docs":{"39":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":10,"docs":{"2":{"tf":1.0},"37":{"tf":2.449489742783178},"38":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":2.23606797749979},"62":{"tf":1.7320508075688772},"64":{"tf":1.0},"66":{"tf":3.872983346207417},"88":{"tf":1.0},"89":{"tf":1.0}}},"t":{"df":17,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"233":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.0},"29":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"2":{"(":{"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"6":{"tf":1.0},"74":{"tf":1.0}},"i":{"c":{"df":5,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"113":{"tf":1.0},"2":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"216":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":27,"docs":{"111":{"tf":2.23606797749979},"112":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"150":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"85":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":8,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"265":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772}}}}},"p":{"'":{"df":2,"docs":{"106":{"tf":2.0},"110":{"tf":1.4142135623730951}}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":22,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":3.0},"110":{"tf":4.123105625617661},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.449489742783178},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"2":{"tf":1.4142135623730951},"24":{"tf":1.0},"35":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":2.8284271247461903},"94":{"tf":2.8284271247461903},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"w":{"df":10,"docs":{"106":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"209":{"tf":1.4142135623730951},"274":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"222":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"53":{"tf":1.0}},"e":{"df":1,"docs":{"53":{"tf":1.0}}}}},"m":{"1":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"21":{"tf":1.0}}},"=":{"(":{"2":{"3":{"2":{"df":0,"docs":{},"−":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"k":{"1":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"p":{"df":2,"docs":{"104":{"tf":1.0},"116":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"0":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"35":{"tf":1.0},"6":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"33":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"215":{"tf":1.0},"233":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"272":{"tf":1.0},"38":{"tf":1.7320508075688772},"41":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"230":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":48,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.4142135623730951},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"250":{"tf":2.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"259":{"tf":2.0},"264":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"33":{"tf":2.0},"7":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"101":{"tf":1.0},"127":{"tf":1.4142135623730951},"199":{"tf":1.0},"2":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":15,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.4142135623730951},"24":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"33":{"tf":1.0},"72":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":20,"docs":{"10":{"tf":1.0},"181":{"tf":2.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"42":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"104":{"tf":1.0},"111":{"tf":2.0},"118":{"tf":1.0},"226":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"35":{"tf":1.0},"42":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":12,"docs":{"10":{"tf":2.0},"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"6":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"m":{"df":2,"docs":{"16":{"tf":1.0},"23":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"21":{"tf":1.0}}}}},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"16":{"tf":1.0},"33":{"tf":2.0},"35":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"245":{"tf":1.0},"264":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"111":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"274":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951}}}}},"h":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"212":{"tf":1.0},"228":{"tf":1.0},"271":{"tf":1.0}}}}}},"x":{"(":{"a":{",":{"b":{")":{">":{"1":{"df":1,"docs":{"52":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"≥":{"2":{"3":{"2":{"df":3,"docs":{"57":{"tf":3.605551275463989},"58":{"tf":1.7320508075688772},"59":{"tf":3.7416573867739413}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},",":{"c":{")":{"df":0,"docs":{},"≥":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"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}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"2":{"tf":1.0},"212":{"tf":1.0},"60":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"20":{"tf":2.6457513110645907}},"p":{"df":2,"docs":{"104":{"tf":1.0},"116":{"tf":1.0}}}},"df":7,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0},"245":{"tf":1.0},"68":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":27,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"138":{"tf":1.0},"2":{"tf":1.0},"217":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}},"t":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"240":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"[":{"8":{"7":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"30":{"tf":1.0}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.4142135623730951}},"w":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.4142135623730951}},"e":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"1":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":2,"docs":{"23":{"tf":1.0},"29":{"tf":2.23606797749979}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":47,"docs":{"10":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":3.3166247903554},"2":{"tf":2.0},"200":{"tf":2.8284271247461903},"201":{"tf":2.8284271247461903},"202":{"tf":3.0},"203":{"tf":3.0},"204":{"tf":3.0},"209":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":2.0},"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"253":{"tf":2.6457513110645907},"254":{"tf":2.6457513110645907},"255":{"tf":3.4641016151377544},"256":{"tf":2.0},"257":{"tf":2.0},"258":{"tf":4.0},"259":{"tf":2.8284271247461903},"273":{"tf":1.4142135623730951},"29":{"tf":2.449489742783178},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"41":{"tf":1.0},"44":{"tf":3.605551275463989},"45":{"tf":2.23606797749979},"6":{"tf":2.23606797749979},"62":{"tf":2.6457513110645907},"64":{"tf":1.4142135623730951},"65":{"tf":2.0},"66":{"tf":4.58257569495584},"72":{"tf":1.0},"74":{"tf":2.0},"77":{"tf":1.4142135623730951},"85":{"tf":2.0},"88":{"tf":2.0},"89":{"tf":1.4142135623730951}}},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"255":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"256":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}},"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":15,"docs":{"111":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"130":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"10":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"90":{"tf":1.0}}}},"l":{"df":23,"docs":{"10":{"tf":2.6457513110645907},"104":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":2.23606797749979},"220":{"tf":1.0},"232":{"tf":3.872983346207417},"233":{"tf":2.0},"239":{"tf":2.8284271247461903},"240":{"tf":2.8284271247461903},"243":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":3.3166247903554},"6":{"tf":2.0},"65":{"tf":1.7320508075688772},"68":{"tf":3.1622776601683795},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":2.6457513110645907},"77":{"tf":1.0},"8":{"tf":1.7320508075688772},"88":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"220":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"104":{"tf":1.7320508075688772},"115":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"116":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":113,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"100":{"tf":2.0},"101":{"tf":1.0},"11":{"tf":3.3166247903554},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"127":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":2.449489742783178},"138":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.7320508075688772},"155":{"tf":1.0},"16":{"tf":3.605551275463989},"168":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":3.4641016151377544},"20":{"tf":1.0},"205":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.7320508075688772},"22":{"tf":2.8284271247461903},"220":{"tf":1.0},"23":{"tf":2.23606797749979},"232":{"tf":1.0},"24":{"tf":2.6457513110645907},"25":{"tf":2.0},"253":{"tf":1.0},"258":{"tf":2.0},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"269":{"tf":1.7320508075688772},"27":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.0},"3":{"tf":1.7320508075688772},"31":{"tf":1.0},"32":{"tf":2.8284271247461903},"33":{"tf":4.47213595499958},"34":{"tf":1.0},"35":{"tf":3.4641016151377544},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"4":{"tf":2.449489742783178},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":2.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":2.6457513110645907},"7":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"213":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"118":{"tf":1.0},"206":{"tf":1.0}}}},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"139":{"tf":1.0},"201":{"tf":2.0}},"w":{"df":2,"docs":{"140":{"tf":1.0},"200":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":2.449489742783178}}}}}},"df":1,"docs":{"74":{"tf":3.0}}},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":1,"docs":{"84":{"tf":1.7320508075688772}},"e":{"df":1,"docs":{"13":{"tf":1.0}},"l":{"df":1,"docs":{"255":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"262":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"33":{"tf":1.0}}}},"df":23,"docs":{"177":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":2.23606797749979},"225":{"tf":1.4142135623730951},"262":{"tf":1.0},"273":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":4.898979485566356},"39":{"tf":1.4142135623730951},"43":{"tf":2.449489742783178},"71":{"tf":2.23606797749979},"72":{"tf":2.23606797749979},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"'":{"df":3,"docs":{"221":{"tf":1.0},"226":{"tf":1.0},"262":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"u":{"df":7,"docs":{"127":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"253":{"tf":1.0},"34":{"tf":1.0},"6":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"259":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":40,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":2.0},"122":{"tf":1.0},"137":{"tf":1.4142135623730951},"148":{"tf":1.0},"16":{"tf":1.0},"211":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"248":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":2.0},"4":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"86":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"110":{"tf":1.0},"45":{"tf":1.0},"77":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"v":{"d":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.7320508075688772}}}},"2":{"df":2,"docs":{"139":{"tf":1.0},"191":{"tf":1.0}}},"3":{"df":1,"docs":{"139":{"tf":1.0}}},"4":{"df":1,"docs":{"139":{"tf":1.0}}},"5":{"df":1,"docs":{"139":{"tf":1.0}}},"6":{"df":1,"docs":{"139":{"tf":1.0}}},"7":{"df":1,"docs":{"139":{"tf":1.0}}},"8":{"df":1,"docs":{"139":{"tf":1.0}}},"df":2,"docs":{"191":{"tf":1.0},"60":{"tf":1.0}},"w":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":17,"docs":{"115":{"tf":1.0},"130":{"tf":1.4142135623730951},"190":{"tf":2.0},"191":{"tf":1.7320508075688772},"194":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"254":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"45":{"tf":2.23606797749979},"60":{"tf":2.0},"62":{"tf":2.23606797749979},"65":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.7320508075688772}}}},"2":{"df":2,"docs":{"139":{"tf":1.0},"190":{"tf":1.0}}},"3":{"df":1,"docs":{"139":{"tf":1.0}}},"4":{"df":1,"docs":{"139":{"tf":1.0}}},"5":{"df":1,"docs":{"139":{"tf":1.0}}},"6":{"df":1,"docs":{"139":{"tf":1.0}}},"7":{"df":1,"docs":{"139":{"tf":1.0}}},"8":{"df":1,"docs":{"139":{"tf":1.0}}},"df":2,"docs":{"190":{"tf":1.0},"60":{"tf":1.0}},"w":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"p":{"a":{"df":3,"docs":{"232":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0}}},"df":3,"docs":{"232":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0}},"u":{"df":1,"docs":{"240":{"tf":1.0}}},"v":{"df":1,"docs":{"240":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"143":{"tf":1.0},"207":{"tf":2.23606797749979}}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"208":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":4,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":4.0},"21":{"tf":2.0},"23":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"140":{"tf":1.0},"203":{"tf":2.0}},"w":{"df":2,"docs":{"140":{"tf":1.0},"202":{"tf":2.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"143":{"tf":1.0},"204":{"tf":2.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"68":{"tf":1.0},"8":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"u":{"a":{"df":2,"docs":{"232":{"tf":1.0},"240":{"tf":1.0}}},"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"33":{"tf":1.0},"8":{"tf":1.0}}}},"df":2,"docs":{"232":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772}},"l":{"6":{"4":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":4,"docs":{"140":{"tf":1.0},"158":{"tf":2.0},"38":{"tf":1.0},"52":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.4142135623730951},"222":{"tf":1.0},"246":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":21,"docs":{"104":{"tf":1.4142135623730951},"113":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"217":{"tf":1.0},"232":{"tf":3.3166247903554},"233":{"tf":1.0},"234":{"tf":3.3166247903554},"238":{"tf":1.0},"242":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"25":{"tf":1.0},"271":{"tf":1.0},"41":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}},"i":{"df":19,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"138":{"tf":1.0},"169":{"tf":1.0},"212":{"tf":1.7320508075688772},"226":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":15,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.7320508075688772},"265":{"tf":2.449489742783178},"266":{"tf":2.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"113":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":2,"docs":{"232":{"tf":1.0},"240":{"tf":1.0}}},"df":3,"docs":{"232":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"6":{"tf":1.0}}}},"n":{"+":{"1":{"df":2,"docs":{"190":{"tf":1.0},"191":{"tf":1.0}}},"df":0,"docs":{}},"/":{"8":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"0":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"257":{"tf":1.0},"259":{"tf":1.0}},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"(":{"c":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"c":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{"=":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"257":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"257":{"tf":1.4142135623730951},"259":{"tf":1.0}}},"df":0,"docs":{},"δ":{"c":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"δ":{"a":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":1,"docs":{"259":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"df":2,"docs":{"257":{"tf":1.0},"259":{"tf":1.0}},"":{"=":{"0":{"df":1,"docs":{"257":{"tf":1.0}}},"1":{"df":1,"docs":{"257":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"=":{"0":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{")":{"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"=":{"0":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"<":{"2":{"5":{"6":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"256":{"tf":1.4142135623730951}}},"1":{"4":{"df":1,"docs":{"104":{"tf":1.0}}},"df":1,"docs":{"256":{"tf":1.4142135623730951}}},"df":0,"docs":{}},">":{"2":{"1":{"6":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"148":{"tf":1.0},"212":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"113":{"tf":1.4142135623730951},"137":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":4,"docs":{"71":{"tf":2.0},"73":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"2":{"tf":1.4142135623730951},"232":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":19,"docs":{"104":{"tf":1.7320508075688772},"18":{"tf":1.0},"184":{"tf":1.4142135623730951},"190":{"tf":2.0},"191":{"tf":2.23606797749979},"209":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"216":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":2.23606797749979},"256":{"tf":1.0},"31":{"tf":1.4142135623730951},"60":{"tf":2.8284271247461903},"65":{"tf":2.0},"74":{"tf":2.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":85,"docs":{"0":{"tf":1.0},"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":2.6457513110645907},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":2.6457513110645907},"111":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"120":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":2.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"16":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":2.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"227":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":2.0},"251":{"tf":1.7320508075688772},"253":{"tf":1.0},"254":{"tf":2.6457513110645907},"255":{"tf":3.0},"256":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.7320508075688772},"259":{"tf":2.23606797749979},"264":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":3,"docs":{"139":{"tf":1.0},"157":{"tf":2.0},"52":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"q":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"59":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}},"t":{"df":1,"docs":{"106":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"105":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"75":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}},"df":38,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":2.8284271247461903},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":2.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"141":{"tf":1.0},"208":{"tf":2.6457513110645907},"209":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"240":{"tf":1.7320508075688772},"243":{"tf":2.0},"245":{"tf":3.3166247903554},"255":{"tf":1.7320508075688772},"256":{"tf":1.7320508075688772},"257":{"tf":2.0},"258":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"t":{"df":52,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":3.0},"111":{"tf":3.605551275463989},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"120":{"tf":2.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":2.0},"124":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"166":{"tf":2.0},"167":{"tf":1.4142135623730951},"209":{"tf":2.6457513110645907},"211":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"234":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":2.0},"243":{"tf":1.4142135623730951},"244":{"tf":2.0},"246":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"266":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"g":{"=":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"124":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.7320508075688772}}}}}}},"df":23,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"207":{"tf":2.449489742783178},"208":{"tf":3.3166247903554},"232":{"tf":2.6457513110645907},"233":{"tf":1.7320508075688772},"239":{"tf":2.449489742783178},"240":{"tf":3.0},"243":{"tf":2.23606797749979},"244":{"tf":1.0},"245":{"tf":2.8284271247461903},"65":{"tf":1.0},"68":{"tf":2.0},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.7320508075688772},"17":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":1.7320508075688772},"8":{"tf":1.0}}}}}}}}}}}}},"df":27,"docs":{"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"128":{"tf":1.0},"130":{"tf":1.0},"170":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"222":{"tf":1.0},"239":{"tf":1.0},"256":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"55":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":3,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"'":{"df":1,"docs":{"111":{"tf":1.0}}},"df":9,"docs":{"100":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"122":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"150":{"tf":2.0},"23":{"tf":1.0},"97":{"tf":2.23606797749979},"99":{"tf":2.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":8,"docs":{"113":{"tf":1.0},"241":{"tf":1.0},"252":{"tf":1.0},"263":{"tf":1.0},"34":{"tf":1.7320508075688772},"36":{"tf":1.0},"70":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":52,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"143":{"tf":1.0},"159":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"246":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"87":{"tf":1.0}}},"h":{"df":4,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0}}},"i":{"c":{"df":11,"docs":{"111":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"254":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"w":{"df":8,"docs":{"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"255":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":2.8284271247461903}}}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":3.1622776601683795}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":37,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"111":{"tf":3.1622776601683795},"116":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"14":{"tf":1.0},"169":{"tf":1.4142135623730951},"17":{"tf":2.449489742783178},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":1.0},"258":{"tf":1.0},"37":{"tf":2.23606797749979},"39":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"8":{"tf":2.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"208":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"=":{"0":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"106":{"tf":1.0}}}},"∈":{"[":{"2":{",":{"9":{"df":2,"docs":{"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"0":{",":{".":{".":{".":{",":{"1":{"5":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"7":{",":{"9":{",":{"1":{"1":{",":{"1":{"3":{",":{"1":{"5":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"2":{",":{"3":{"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":{}},"1":{",":{".":{".":{".":{",":{"1":{"5":{"df":1,"docs":{"60":{"tf":1.0}}},"6":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"3":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{".":{".":{".":{",":{"1":{"5":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"−":{"1":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":0,"docs":{},"−":{"1":{")":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"116":{"tf":1.0},"228":{"tf":1.0},"245":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"d":{"d":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"18":{"tf":1.4142135623730951}},"f":{"a":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":5,"docs":{"102":{"tf":1.0},"228":{"tf":1.4142135623730951},"232":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"211":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0}}}}}}},"l":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":10,"docs":{"208":{"tf":2.449489742783178},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"240":{"tf":1.4142135623730951},"245":{"tf":2.0},"255":{"tf":2.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"68":{"tf":1.0},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"137":{"tf":1.0},"169":{"tf":1.0},"244":{"tf":1.0},"254":{"tf":1.0},"37":{"tf":1.0},"63":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":2.0}}}}}},"n":{"c":{"df":16,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":2.23606797749979},"16":{"tf":1.0},"19":{"tf":1.4142135623730951},"209":{"tf":1.0},"219":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"98":{"tf":1.0}}},"df":60,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"111":{"tf":3.0},"113":{"tf":1.7320508075688772},"122":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"130":{"tf":1.0},"138":{"tf":1.4142135623730951},"150":{"tf":1.0},"170":{"tf":2.0},"190":{"tf":1.0},"191":{"tf":1.0},"2":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":2.6457513110645907},"233":{"tf":2.449489742783178},"234":{"tf":1.7320508075688772},"24":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"248":{"tf":1.0},"25":{"tf":2.23606797749979},"250":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":2.6457513110645907},"50":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":2.449489742783178},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":29,"docs":{"10":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.0},"130":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.7320508075688772},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":3.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}},"p":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"1":{"1":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"123":{"tf":1.0}}},"9":{"df":1,"docs":{"123":{"tf":1.7320508075688772}}},"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"6":{"df":0,"docs":{},"":{"(":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"2":{"df":0,"docs":{},"i":{")":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"106":{"tf":1.0},"111":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"252":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":16,"docs":{"100":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.7320508075688772},"116":{"tf":2.0},"123":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"103":{"tf":1.0},"105":{"tf":2.449489742783178},"106":{"tf":2.23606797749979},"111":{"tf":5.656854249492381},"116":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":3.872983346207417},"138":{"tf":3.3166247903554},"139":{"tf":5.656854249492381},"140":{"tf":4.123105625617661},"141":{"tf":4.123105625617661},"142":{"tf":3.0},"143":{"tf":2.8284271247461903},"144":{"tf":2.8284271247461903},"269":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":95,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":2.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"62":{"tf":2.0},"65":{"tf":2.23606797749979},"66":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":2.8284271247461903},"75":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"103":{"tf":1.0}}},"(":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{},"s":{"1":{"df":2,"docs":{"101":{"tf":2.449489742783178},"112":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":168,"docs":{"10":{"tf":1.0},"100":{"tf":2.0},"101":{"tf":2.23606797749979},"102":{"tf":1.0},"103":{"tf":3.4641016151377544},"104":{"tf":1.0},"105":{"tf":3.1622776601683795},"106":{"tf":6.557438524302},"108":{"tf":2.0},"109":{"tf":1.0},"110":{"tf":3.7416573867739413},"111":{"tf":8.12403840463596},"112":{"tf":2.6457513110645907},"113":{"tf":2.8284271247461903},"114":{"tf":3.3166247903554},"115":{"tf":2.6457513110645907},"116":{"tf":4.0},"117":{"tf":3.4641016151377544},"118":{"tf":3.4641016151377544},"120":{"tf":3.1622776601683795},"121":{"tf":2.6457513110645907},"122":{"tf":3.872983346207417},"123":{"tf":4.0},"124":{"tf":3.3166247903554},"125":{"tf":3.4641016151377544},"126":{"tf":3.1622776601683795},"127":{"tf":1.4142135623730951},"130":{"tf":2.0},"131":{"tf":1.7320508075688772},"137":{"tf":4.123105625617661},"138":{"tf":4.898979485566356},"139":{"tf":3.0},"140":{"tf":3.0},"141":{"tf":3.0},"142":{"tf":3.872983346207417},"143":{"tf":3.0},"144":{"tf":2.6457513110645907},"145":{"tf":1.4142135623730951},"146":{"tf":2.449489742783178},"147":{"tf":2.6457513110645907},"148":{"tf":2.0},"149":{"tf":2.0},"150":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"154":{"tf":1.7320508075688772},"155":{"tf":2.23606797749979},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":1.7320508075688772},"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":2.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":1.7320508075688772},"168":{"tf":2.0},"169":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":2.23606797749979},"172":{"tf":2.0},"173":{"tf":2.23606797749979},"174":{"tf":2.23606797749979},"175":{"tf":2.23606797749979},"176":{"tf":2.23606797749979},"177":{"tf":2.449489742783178},"178":{"tf":2.23606797749979},"179":{"tf":3.0},"180":{"tf":3.0},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.7320508075688772},"184":{"tf":2.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772},"190":{"tf":2.0},"191":{"tf":2.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"194":{"tf":2.23606797749979},"195":{"tf":2.23606797749979},"196":{"tf":1.7320508075688772},"197":{"tf":2.0},"198":{"tf":2.0},"199":{"tf":2.23606797749979},"2":{"tf":2.0},"20":{"tf":1.0},"200":{"tf":2.449489742783178},"201":{"tf":2.449489742783178},"202":{"tf":2.6457513110645907},"203":{"tf":2.6457513110645907},"204":{"tf":2.6457513110645907},"205":{"tf":2.449489742783178},"206":{"tf":2.23606797749979},"207":{"tf":2.8284271247461903},"208":{"tf":2.449489742783178},"209":{"tf":2.6457513110645907},"21":{"tf":1.4142135623730951},"210":{"tf":2.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":2.8284271247461903},"228":{"tf":2.8284271247461903},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"245":{"tf":2.0},"246":{"tf":3.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"251":{"tf":2.0},"252":{"tf":2.23606797749979},"254":{"tf":1.0},"255":{"tf":2.23606797749979},"258":{"tf":2.8284271247461903},"259":{"tf":2.449489742783178},"260":{"tf":1.0},"263":{"tf":2.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.0},"50":{"tf":2.449489742783178},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"54":{"tf":2.0},"55":{"tf":2.6457513110645907},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":2.8284271247461903},"82":{"tf":2.449489742783178},"83":{"tf":1.4142135623730951},"84":{"tf":2.8284271247461903},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":4.0},"98":{"tf":2.449489742783178},"99":{"tf":2.23606797749979}}},"x":{"df":1,"docs":{"272":{"tf":1.0}}}},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"116":{"tf":1.0},"263":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"206":{"tf":1.0},"245":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}}}}}}},"df":1,"docs":{"259":{"tf":1.0}}}},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"208":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"207":{"tf":1.0},"208":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":18,"docs":{"13":{"tf":2.23606797749979},"19":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"220":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"258":{"tf":1.4142135623730951},"265":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":1.0},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.0},"65":{"tf":1.0}}}}}},"u":{"3":{"2":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"111":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"204":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":2.449489742783178},"228":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"35":{"tf":2.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":12,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"115":{"tf":1.0},"138":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"71":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"209":{"tf":1.0},"247":{"tf":1.0},"42":{"tf":1.0},"86":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"62":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":30,"docs":{"103":{"tf":1.4142135623730951},"105":{"tf":2.0},"106":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"122":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"207":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"42":{"tf":1.0},"68":{"tf":1.4142135623730951},"77":{"tf":1.0},"83":{"tf":4.242640687119285},"84":{"tf":2.449489742783178},"86":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":20,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"17":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"259":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":57,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":2.449489742783178},"194":{"tf":2.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":2.0},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"233":{"tf":1.7320508075688772},"236":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"25":{"tf":1.0},"251":{"tf":2.449489742783178},"258":{"tf":1.0},"270":{"tf":2.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":2.0},"75":{"tf":1.7320508075688772},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":2.6457513110645907},"80":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"2":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"255":{"tf":1.0}}}},"df":24,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":1.0},"220":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"246":{"tf":1.0},"251":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":13,"docs":{"128":{"tf":1.0},"129":{"tf":2.8284271247461903},"130":{"tf":2.23606797749979},"131":{"tf":1.7320508075688772},"133":{"tf":2.0},"134":{"tf":1.0},"135":{"tf":2.6457513110645907},"17":{"tf":1.4142135623730951},"177":{"tf":1.0},"209":{"tf":1.0},"269":{"tf":1.0},"82":{"tf":2.8284271247461903},"84":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}},"r":{"df":1,"docs":{"84":{"tf":1.0}}}},"u":{"b":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"4":{"tf":1.0},"6":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"198":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772}}}}}}}}},"x":{"df":2,"docs":{"103":{"tf":1.0},"124":{"tf":1.7320508075688772}}}},"p":{"0":{"df":2,"docs":{"211":{"tf":1.7320508075688772},"212":{"tf":2.23606797749979}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"p":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{")":{"=":{"0":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"1":{"df":6,"docs":{"105":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"129":{"tf":2.23606797749979},"233":{"tf":2.0},"240":{"tf":1.7320508075688772},"245":{"tf":2.6457513110645907}},"":{"=":{"1":{"df":2,"docs":{"136":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"p":{"1":{"df":3,"docs":{"117":{"tf":1.0},"135":{"tf":1.4142135623730951},"245":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.0}}}},"v":{"df":2,"docs":{"117":{"tf":1.0},"135":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"=":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"117":{"tf":1.0},"135":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"2":{"df":2,"docs":{"105":{"tf":2.0},"118":{"tf":1.7320508075688772}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"118":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"=":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"3":{"df":2,"docs":{"105":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"=":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"=":{"2":{"6":{"4":{"df":0,"docs":{},"−":{"2":{"3":{"2":{"+":{"1":{"df":3,"docs":{"6":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"74":{"tf":1.0}}}},"d":{"df":15,"docs":{"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"141":{"tf":1.0},"182":{"tf":2.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"262":{"tf":1.0},"266":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.4142135623730951}},"w":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"16":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"105":{"tf":2.6457513110645907},"106":{"tf":2.449489742783178},"117":{"tf":2.0},"43":{"tf":1.0},"88":{"tf":1.0}}}}},"t":{"df":10,"docs":{"102":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"245":{"tf":2.23606797749979},"264":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"71":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"169":{"tf":1.0}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"113":{"tf":1.0},"222":{"tf":1.0},"270":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"69":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"42":{"tf":1.0},"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":15,"docs":{"10":{"tf":1.7320508075688772},"101":{"tf":1.0},"104":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":2.449489742783178},"208":{"tf":2.0},"232":{"tf":3.1622776601683795},"233":{"tf":1.0},"239":{"tf":2.449489742783178},"240":{"tf":2.449489742783178},"243":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"6":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":2.0}}}}}}}},"df":5,"docs":{"23":{"tf":1.7320508075688772},"267":{"tf":2.449489742783178},"268":{"tf":1.4142135623730951},"34":{"tf":1.0},"77":{"tf":2.0}},"e":{"=":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"74":{"tf":2.0}}}},"df":1,"docs":{"209":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}},"r":{"df":10,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"124":{"tf":1.0},"210":{"tf":1.4142135623730951},"217":{"tf":1.0},"23":{"tf":1.0},"254":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":2.23606797749979},"80":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":34,"docs":{"104":{"tf":1.0},"111":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":2.449489742783178},"20":{"tf":1.7320508075688772},"205":{"tf":1.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"215":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.4142135623730951},"255":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":3.7416573867739413},"84":{"tf":3.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"223":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"36":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":18,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"206":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"236":{"tf":2.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"68":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"112":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"143":{"tf":1.0}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":13,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"239":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.7320508075688772},"33":{"tf":1.0},"72":{"tf":1.0}}},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"115":{"tf":1.0},"224":{"tf":1.0}}}},"o":{"df":2,"docs":{"209":{"tf":1.0},"74":{"tf":1.7320508075688772}},"e":{"df":1,"docs":{"209":{"tf":1.7320508075688772}},"′":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"4":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"19":{"tf":1.0},"209":{"tf":2.23606797749979},"24":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"77":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"115":{"tf":1.0},"209":{"tf":1.0},"77":{"tf":2.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"274":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"98":{"tf":1.0}}}},"p":{"df":21,"docs":{"10":{"tf":1.0},"106":{"tf":3.4641016151377544},"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":2.449489742783178},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"98":{"tf":2.6457513110645907}},"u":{"df":0,"docs":{},"l":{"df":11,"docs":{"106":{"tf":2.449489742783178},"111":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"257":{"tf":1.0},"45":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"2":{"tf":1.0},"231":{"tf":1.0},"244":{"tf":1.0},"85":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":60,"docs":{"105":{"tf":2.449489742783178},"111":{"tf":2.23606797749979},"126":{"tf":1.0},"137":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.23606797749979},"230":{"tf":1.0},"239":{"tf":1.0},"60":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":12,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"124":{"tf":1.0},"170":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"272":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"274":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"2":{"df":4,"docs":{"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"52":{"tf":1.0},"84":{"tf":2.449489742783178}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"112":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"260":{"tf":1.0},"48":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":1,"docs":{"2":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":7,"docs":{"138":{"tf":2.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"81":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"105":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":19,"docs":{"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"31":{"tf":1.0},"42":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"s":{"df":31,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"209":{"tf":1.0},"245":{"tf":1.4142135623730951},"258":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"55":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":18,"docs":{"127":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.4142135623730951},"220":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":2.23606797749979},"70":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"170":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"23":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"10":{"tf":1.0},"207":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"106":{"tf":4.123105625617661},"111":{"tf":2.0}}}},"o":{"c":{".":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{">":{".":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"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":{}}},"b":{"a":{"df":0,"docs":{},"r":{".":{"1":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"2":{"df":1,"docs":{"37":{"tf":1.0}}},"3":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"23":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"38":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":44,"docs":{"116":{"tf":2.6457513110645907},"2":{"tf":1.7320508075688772},"220":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"233":{"tf":1.0},"260":{"tf":2.0},"262":{"tf":1.4142135623730951},"263":{"tf":2.0},"264":{"tf":2.23606797749979},"269":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":4.0},"38":{"tf":4.58257569495584},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.6457513110645907},"42":{"tf":3.7416573867739413},"43":{"tf":2.8284271247461903},"44":{"tf":2.449489742783178},"45":{"tf":2.449489742783178},"62":{"tf":1.7320508075688772},"66":{"tf":3.3166247903554},"69":{"tf":2.0},"7":{"tf":1.0},"71":{"tf":2.23606797749979},"72":{"tf":2.8284271247461903},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":2.0},"82":{"tf":2.6457513110645907},"83":{"tf":3.0},"84":{"tf":1.7320508075688772},"85":{"tf":2.0},"86":{"tf":2.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"'":{"df":2,"docs":{"45":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":3,"docs":{"111":{"tf":1.4142135623730951},"45":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":10,"docs":{"100":{"tf":1.0},"101":{"tf":2.6457513110645907},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"224":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"233":{"tf":1.0},"81":{"tf":1.0}},"t":{"df":20,"docs":{"1":{"tf":1.0},"105":{"tf":1.7320508075688772},"129":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"211":{"tf":2.23606797749979},"212":{"tf":2.23606797749979},"217":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":2.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"266":{"tf":4.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":2,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":5,"docs":{"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"42":{"tf":1.0},"62":{"tf":1.0},"99":{"tf":1.0}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"118":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":79,"docs":{"0":{"tf":2.0},"10":{"tf":1.0},"100":{"tf":3.7416573867739413},"101":{"tf":3.1622776601683795},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":3.0},"106":{"tf":1.7320508075688772},"107":{"tf":2.6457513110645907},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":2.6457513110645907},"113":{"tf":2.449489742783178},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.7320508075688772},"129":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":2.8284271247461903},"17":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"23":{"tf":3.0},"263":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":2.23606797749979},"3":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":2.8284271247461903},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":3.1622776601683795},"39":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":2.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"62":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":2.23606797749979},"8":{"tf":2.23606797749979},"88":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":2.6457513110645907},"99":{"tf":3.3166247903554}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":17,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"19":{"tf":2.8284271247461903},"2":{"tf":1.0},"20":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":2.23606797749979},"3":{"tf":2.0},"72":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"119":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"209":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"265":{"tf":1.0},"270":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":17,"docs":{"113":{"tf":1.0},"16":{"tf":1.4142135623730951},"20":{"tf":2.0},"207":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.4142135623730951},"223":{"tf":1.0},"228":{"tf":1.0},"246":{"tf":1.0},"265":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"3":{"tf":1.0},"4":{"tf":1.4142135623730951},"69":{"tf":1.0},"87":{"tf":1.0}},"r":{"df":47,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"106":{"tf":2.8284271247461903},"107":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":2.23606797749979},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"239":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":1.0},"266":{"tf":1.4142135623730951},"268":{"tf":1.7320508075688772},"272":{"tf":1.0},"6":{"tf":1.0},"87":{"tf":1.0}}}},"i":{"d":{"df":54,"docs":{"10":{"tf":2.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"11":{"tf":1.0},"113":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"2":{"tf":2.449489742783178},"207":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"252":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"38":{"tf":1.0},"4":{"tf":2.449489742783178},"46":{"tf":1.0},"50":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"65":{"tf":2.6457513110645907},"66":{"tf":2.23606797749979},"67":{"tf":1.0},"68":{"tf":2.6457513110645907},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":2.0},"8":{"tf":2.8284271247461903},"87":{"tf":1.4142135623730951},"88":{"tf":2.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}}}},"u":{"b":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"17":{"tf":1.7320508075688772},"8":{"tf":2.6457513110645907},"86":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":8,"docs":{"111":{"tf":1.0},"137":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"265":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{".":{"0":{"df":2,"docs":{"49":{"tf":1.0},"60":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"2":{"3":{"4":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"a":{"b":{"c":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"4":{".":{"0":{"df":0,"docs":{},"x":{"a":{"b":{"c":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{".":{"0":{"df":1,"docs":{"38":{"tf":1.0}}},"2":{".":{"3":{".":{"4":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0}}},"2":{".":{"0":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0}}},"3":{"df":3,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0}}},"4":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}},"5":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"1":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"2":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":35,"docs":{"10":{"tf":1.0},"111":{"tf":2.23606797749979},"113":{"tf":1.7320508075688772},"122":{"tf":2.23606797749979},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":2.0},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.7320508075688772},"195":{"tf":2.0},"196":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":2.0},"63":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":3.0},"66":{"tf":1.4142135623730951},"88":{"tf":1.0},"97":{"tf":2.449489742783178}}}},"t":{"df":9,"docs":{"111":{"tf":1.0},"142":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"198":{"tf":1.0},"43":{"tf":1.0},"8":{"tf":1.0}}}},"′":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"p":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"q":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"q":{"3":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"(":{"df":0,"docs":{},"v":{"0":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"":{"=":{"(":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"":{"=":{"(":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"5":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":0,"docs":{},"":{"=":{"(":{"df":0,"docs":{},"v":{"6":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"7":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"23":{"tf":1.0},"82":{"tf":1.4142135623730951}},"u":{"a":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"209":{"tf":1.7320508075688772},"77":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"]":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{")":{".":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"77":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"24":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"178":{"tf":1.0},"65":{"tf":1.0}}}}}}}}}},"r":{"+":{"1":{"5":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"r":{"3":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"r":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"r":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"}":{"df":0,"docs":{},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"a":{"7":{"df":0,"docs":{},"":{",":{"b":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"b":{"7":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"g":{"df":2,"docs":{"239":{"tf":1.0},"240":{"tf":1.0}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":22,"docs":{"105":{"tf":1.7320508075688772},"129":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.4142135623730951},"72":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":40,"docs":{"124":{"tf":1.0},"142":{"tf":1.7320508075688772},"169":{"tf":3.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"210":{"tf":2.6457513110645907},"211":{"tf":2.6457513110645907},"212":{"tf":2.0},"213":{"tf":2.449489742783178},"214":{"tf":1.0},"215":{"tf":1.7320508075688772},"216":{"tf":2.0},"217":{"tf":2.0},"218":{"tf":1.4142135623730951},"219":{"tf":3.0},"221":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.4142135623730951},"34":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":2.0},"84":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"104":{"tf":1.0},"116":{"tf":1.4142135623730951},"206":{"tf":1.0},"233":{"tf":1.7320508075688772},"238":{"tf":1.0},"245":{"tf":1.0},"68":{"tf":1.0},"85":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"4":{"tf":1.0},"87":{"tf":1.0}}}},"df":1,"docs":{"253":{"tf":1.0}}}}}},"w":{"df":2,"docs":{"33":{"tf":2.449489742783178},"50":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"14":{"tf":1.0}}}}}},"c":{"_":{"1":{"6":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":12,"docs":{"104":{"tf":1.4142135623730951},"15":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"23":{"tf":1.0},"240":{"tf":1.0},"261":{"tf":1.0},"65":{"tf":2.449489742783178},"68":{"tf":3.605551275463989},"82":{"tf":1.4142135623730951}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"111":{"tf":2.23606797749979},"112":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"df":26,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":2.449489742783178},"258":{"tf":3.0},"259":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"44":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":2.449489742783178},"8":{"tf":1.0}},"i":{"df":1,"docs":{"1":{"tf":1.0}}},"–":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"–":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"3":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"105":{"tf":1.0},"130":{"tf":1.0},"142":{"tf":1.0},"19":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"142":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":5,"docs":{"107":{"tf":1.0},"15":{"tf":1.0},"3":{"tf":1.4142135623730951},"37":{"tf":1.0},"90":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":29,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"129":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"69":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":4,"docs":{"103":{"tf":1.0},"138":{"tf":1.0},"143":{"tf":1.4142135623730951},"209":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"0":{"tf":1.0},"38":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":2.0},"220":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":1.7320508075688772},"39":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"62":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"87":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"101":{"tf":1.0},"133":{"tf":1.0},"221":{"tf":1.0},"245":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"10":{"tf":1.0},"44":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":35,"docs":{"103":{"tf":3.605551275463989},"104":{"tf":1.0},"106":{"tf":4.47213595499958},"111":{"tf":3.7416573867739413},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"123":{"tf":2.23606797749979},"125":{"tf":1.7320508075688772},"138":{"tf":3.0},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"259":{"tf":1.0},"99":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"103":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.7320508075688772},"55":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"232":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0}}}},"df":2,"docs":{"1":{"tf":1.0},"212":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"v":{"df":9,"docs":{"104":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"169":{"tf":1.4142135623730951},"243":{"tf":1.0},"245":{"tf":1.0}}}},"i":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"130":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"220":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.0},"274":{"tf":1.0},"88":{"tf":1.0}}}},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":2.23606797749979}}}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"178":{"tf":1.0},"65":{"tf":1.0},"77":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}},"df":38,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":2.23606797749979},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":2.0},"259":{"tf":1.0},"261":{"tf":1.7320508075688772},"31":{"tf":1.0},"44":{"tf":1.4142135623730951},"8":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":31,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":2.23606797749979},"108":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":3.7416573867739413},"112":{"tf":2.23606797749979},"117":{"tf":2.6457513110645907},"118":{"tf":2.8284271247461903},"123":{"tf":1.4142135623730951},"126":{"tf":3.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"131":{"tf":2.0},"135":{"tf":1.7320508075688772},"140":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"51":{"tf":2.0},"66":{"tf":2.0},"86":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{".":{"1":{"0":{"df":1,"docs":{"48":{"tf":1.0}}},"6":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"101":{"tf":1.0},"106":{"tf":2.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":2.0},"118":{"tf":2.0},"144":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"246":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":7,"docs":{"111":{"tf":1.0},"13":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"240":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"df":10,"docs":{"16":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":3.1622776601683795},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0}}},"o":{"df":1,"docs":{"22":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":41,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":2.0},"118":{"tf":2.6457513110645907},"126":{"tf":2.23606797749979},"128":{"tf":1.0},"129":{"tf":1.0},"17":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"233":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"111":{"tf":1.0},"128":{"tf":1.4142135623730951},"138":{"tf":1.0},"170":{"tf":1.0},"224":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"58":{"tf":2.8284271247461903},"63":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":2.449489742783178},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"215":{"tf":1.0},"219":{"tf":1.7320508075688772},"224":{"tf":1.0},"228":{"tf":2.23606797749979},"229":{"tf":2.0},"252":{"tf":1.0},"259":{"tf":1.4142135623730951},"263":{"tf":1.0},"271":{"tf":2.6457513110645907},"272":{"tf":1.7320508075688772},"41":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":45,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"119":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"170":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"230":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"272":{"tf":1.0},"274":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":12,"docs":{"2":{"tf":1.0},"206":{"tf":1.4142135623730951},"220":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"258":{"tf":1.0},"68":{"tf":2.23606797749979},"88":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"2":{"tf":1.0},"233":{"tf":1.4142135623730951},"44":{"tf":2.0},"45":{"tf":1.0}}}},"t":{"df":2,"docs":{"120":{"tf":1.0},"42":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"207":{"tf":1.0},"223":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"22":{"tf":1.7320508075688772},"274":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":17,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.7320508075688772},"111":{"tf":2.449489742783178},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":2.449489742783178},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"144":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"111":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"226":{"tf":1.0},"245":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":11,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":2.23606797749979},"229":{"tf":1.0},"252":{"tf":1.0},"271":{"tf":2.449489742783178},"272":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}}}}}},"t":{"df":55,"docs":{"111":{"tf":1.0},"137":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"31":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"2":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"50":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":53,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.449489742783178},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":1.7320508075688772},"118":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"246":{"tf":2.23606797749979},"247":{"tf":2.0},"25":{"tf":1.0},"252":{"tf":1.0},"265":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.4142135623730951},"55":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.449489742783178},"9":{"tf":1.0},"97":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"35":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"111":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":19,"docs":{"104":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"66":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}},"e":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"111":{"tf":1.0},"117":{"tf":1.0},"138":{"tf":1.0}}},"t":{"df":2,"docs":{"224":{"tf":1.0},"31":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"a":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":1,"docs":{"268":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":29,"docs":{"106":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.8284271247461903},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":2.0},"137":{"tf":1.7320508075688772},"141":{"tf":2.0},"146":{"tf":2.449489742783178},"147":{"tf":1.0},"154":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"243":{"tf":1.7320508075688772},"39":{"tf":1.0},"45":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"68":{"tf":1.0},"84":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0}}}}},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"0":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"1":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"2":{",":{"df":0,"docs":{},"i":{"df":2,"docs":{"129":{"tf":1.0},"268":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}}},"m":{"'":{"df":2,"docs":{"262":{"tf":1.0},"263":{"tf":1.0}}},"df":14,"docs":{"116":{"tf":1.7320508075688772},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"260":{"tf":2.0},"261":{"tf":2.0},"262":{"tf":2.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.0},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"75":{"tf":1.0}}}}},"df":29,"docs":{"100":{"tf":1.0},"105":{"tf":2.23606797749979},"107":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":1.0},"2":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":2.23606797749979},"232":{"tf":2.23606797749979},"233":{"tf":2.23606797749979},"240":{"tf":2.0},"243":{"tf":1.0},"245":{"tf":3.1622776601683795},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"41":{"tf":2.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"75":{"tf":3.0},"8":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":2.0},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"19":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951}}}}}},"n":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":10,"docs":{"166":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"240":{"tf":2.449489742783178},"244":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"'":{"df":1,"docs":{"251":{"tf":1.0}}},"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"2":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"6":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":67,"docs":{"103":{"tf":1.0},"104":{"tf":2.449489742783178},"105":{"tf":3.0},"106":{"tf":4.0},"110":{"tf":1.7320508075688772},"111":{"tf":4.123105625617661},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":3.3166247903554},"118":{"tf":2.8284271247461903},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":2.449489742783178},"126":{"tf":3.1622776601683795},"128":{"tf":1.0},"129":{"tf":3.872983346207417},"130":{"tf":2.449489742783178},"131":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"211":{"tf":2.23606797749979},"213":{"tf":2.449489742783178},"217":{"tf":2.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"223":{"tf":3.1622776601683795},"226":{"tf":1.0},"227":{"tf":2.0},"231":{"tf":1.4142135623730951},"233":{"tf":2.6457513110645907},"234":{"tf":4.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"244":{"tf":2.23606797749979},"245":{"tf":3.0},"246":{"tf":3.0},"247":{"tf":2.8284271247461903},"250":{"tf":2.449489742783178},"251":{"tf":2.449489742783178},"252":{"tf":2.0},"254":{"tf":2.6457513110645907},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.7320508075688772},"259":{"tf":2.0},"261":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":3.1622776601683795},"268":{"tf":2.23606797749979},"87":{"tf":1.7320508075688772},"97":{"tf":1.0}}}},"p":{"c":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":9,"docs":{"113":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":24,"docs":{"105":{"tf":1.7320508075688772},"112":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":2.449489742783178},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"211":{"tf":2.23606797749979},"212":{"tf":2.23606797749979},"217":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.7320508075688772},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":4.0},"267":{"tf":1.0},"271":{"tf":1.7320508075688772},"32":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"37":{"tf":1.0},"66":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"11":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"r":{")":{"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"3":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{",":{"d":{")":{")":{"df":0,"docs":{},"r":{"df":0,"docs":{},"′":{"df":0,"docs":{},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{",":{"d":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"0":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":9,"docs":{"161":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":23,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"126":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.4142135623730951},"217":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.4142135623730951},"258":{"tf":2.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},",":{".":{".":{".":{",":{"df":0,"docs":{},"s":{"1":{"4":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},".":{".":{".":{"df":0,"docs":{},"s":{"1":{"5":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"0":{"df":3,"docs":{"212":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"263":{"tf":1.0}}},"1":{"df":3,"docs":{"212":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"263":{"tf":1.0}}},"2":{"4":{"8":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"=":{"0":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"1":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"3":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"2":{"4":{"8":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"2":{"4":{"8":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"":{"=":{"0":{"df":2,"docs":{"159":{"tf":1.0},"165":{"tf":1.0}}},"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"′":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"166":{"tf":1.0},"175":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"182":{"tf":1.0}}},"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"2":{"df":4,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"2":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"+":{"1":{")":{"=":{"0":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{")":{"=":{"0":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"=":{"0":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"158":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"184":{"tf":1.0},"190":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"⋅":{"(":{"df":0,"docs":{},"f":{"a":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"1":{"2":{"df":1,"docs":{"204":{"tf":1.0}},"":{"+":{"1":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":3,"docs":{"212":{"tf":1.0},"218":{"tf":1.0},"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"s":{"1":{"2":{"df":0,"docs":{},"":{"+":{"2":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"5":{"df":2,"docs":{"131":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951}}},"df":10,"docs":{"162":{"tf":1.0},"163":{"tf":1.0},"212":{"tf":1.4142135623730951},"217":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.4142135623730951},"258":{"tf":2.0},"259":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"s":{"1":{"5":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"0":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"212":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"⋅":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"′":{"df":0,"docs":{},"":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":7,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"1":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"≤":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}}}}},"2":{"df":5,"docs":{"223":{"tf":1.4142135623730951},"227":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0}},"":{"=":{"1":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{")":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"∗":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"−":{"df":0,"docs":{},"s":{"=":{"0":{"df":1,"docs":{"249":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"3":{"df":1,"docs":{"227":{"tf":1.0}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"∗":{"2":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{"+":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"=":{"0":{"df":1,"docs":{"249":{"tf":1.0}}},"1":{"df":1,"docs":{"249":{"tf":1.0}}},"df":0,"docs":{}},"_":{"1":{"df":1,"docs":{"259":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":46,"docs":{"101":{"tf":1.0},"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"127":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.4142135623730951},"150":{"tf":1.0},"184":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.7320508075688772},"233":{"tf":1.7320508075688772},"240":{"tf":2.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":2.0},"249":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":2.0},"256":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":2.6457513110645907},"259":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"267":{"tf":1.0},"271":{"tf":2.0},"272":{"tf":1.4142135623730951},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"60":{"tf":2.23606797749979},"89":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":37,"docs":{"133":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"243":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"202":{"tf":1.0},"203":{"tf":1.0},"24":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}},"c":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"110":{"tf":1.0},"27":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"138":{"tf":1.0},"274":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"141":{"tf":1.0},"196":{"tf":2.0},"64":{"tf":1.0}}}}}}},"df":3,"docs":{"23":{"tf":1.0},"248":{"tf":1.0},"65":{"tf":2.449489742783178}},"e":{"c":{"df":2,"docs":{"20":{"tf":2.8284271247461903},"21":{"tf":2.0}},"o":{"df":0,"docs":{},"n":{"d":{"df":25,"docs":{"105":{"tf":1.7320508075688772},"108":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"211":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"245":{"tf":1.7320508075688772},"254":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.7320508075688772},"2":{"tf":1.0},"8":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":36,"docs":{"100":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":2.23606797749979},"123":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"217":{"tf":1.0},"219":{"tf":1.0},"232":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"25":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"37":{"tf":1.0},"4":{"tf":1.7320508075688772},"42":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"1":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"266":{"tf":1.4142135623730951},"274":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"17":{"tf":1.0},"209":{"tf":1.0},"62":{"tf":1.0},"71":{"tf":1.0}},"n":{"df":4,"docs":{"138":{"tf":1.0},"20":{"tf":1.0},"223":{"tf":1.0},"89":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"209":{"tf":1.4142135623730951},"221":{"tf":1.0},"273":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"226":{"tf":1.0},"233":{"tf":1.4142135623730951},"245":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0},"47":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"224":{"tf":1.0}}},"df":25,"docs":{"104":{"tf":1.7320508075688772},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"169":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.7320508075688772},"223":{"tf":1.7320508075688772},"224":{"tf":2.0},"226":{"tf":1.7320508075688772},"227":{"tf":4.47213595499958},"230":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":3.4641016151377544},"242":{"tf":1.7320508075688772},"245":{"tf":1.0},"249":{"tf":2.0},"251":{"tf":1.0},"258":{"tf":2.0},"259":{"tf":1.0},"262":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"106":{"tf":1.7320508075688772},"111":{"tf":1.0},"168":{"tf":1.0},"195":{"tf":1.0},"240":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"63":{"tf":1.0},"90":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"d":{"df":7,"docs":{"116":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"245":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.0}}},"t":{"df":9,"docs":{"116":{"tf":1.0},"219":{"tf":1.4142135623730951},"224":{"tf":1.0},"228":{"tf":2.0},"229":{"tf":1.0},"245":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":2.23606797749979},"87":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"2":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"36":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":18,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"18":{"tf":1.0},"246":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"88":{"tf":1.0},"97":{"tf":2.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"104":{"tf":2.0},"106":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.4142135623730951},"220":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"35":{"tf":1.0},"69":{"tf":1.0}}}},"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"v":{"df":4,"docs":{"103":{"tf":1.0},"142":{"tf":1.0},"245":{"tf":1.0},"6":{"tf":1.0}}}},"t":{"df":104,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.23606797749979},"105":{"tf":2.0},"106":{"tf":3.605551275463989},"11":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":2.6457513110645907},"113":{"tf":2.23606797749979},"114":{"tf":1.4142135623730951},"116":{"tf":2.8284271247461903},"117":{"tf":2.0},"118":{"tf":2.0},"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":2.449489742783178},"124":{"tf":2.0},"125":{"tf":2.23606797749979},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":2.449489742783178},"132":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"138":{"tf":2.23606797749979},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"223":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":2.449489742783178},"234":{"tf":4.358898943540674},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"242":{"tf":2.0},"243":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":2.0},"258":{"tf":3.0},"259":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"274":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"100":{"tf":1.0},"246":{"tf":1.4142135623730951}}},"r":{"df":9,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"145":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"33":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"88":{"tf":1.0}}}}}},"h":{"a":{"2":{"5":{"6":{"df":2,"docs":{"72":{"tf":1.0},"80":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.0},"230":{"tf":1.0},"245":{"tf":1.0},"69":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":45,"docs":{"127":{"tf":1.0},"130":{"tf":2.8284271247461903},"131":{"tf":2.6457513110645907},"132":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"135":{"tf":2.6457513110645907},"137":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"140":{"tf":2.0},"141":{"tf":2.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":2.449489742783178},"147":{"tf":3.1622776601683795},"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"81":{"tf":1.0},"84":{"tf":4.123105625617661}}}},"p":{"df":1,"docs":{"2":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":4,"docs":{"100":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"w":{"df":2,"docs":{"138":{"tf":1.0},"169":{"tf":1.0}},"n":{"df":15,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":2.449489742783178},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"138":{"tf":1.0},"246":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"272":{"tf":1.0},"89":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"i":{"+":{"1":{"2":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"8":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"187":{"tf":1.0},"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"162":{"tf":1.0},"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"208":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":2.0},"245":{"tf":3.1622776601683795},"269":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"259":{"tf":1.0},"263":{"tf":1.0}}}},"df":1,"docs":{"238":{"tf":1.0}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"221":{"tf":1.0}}}}}}},"df":13,"docs":{"111":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951},"258":{"tf":1.0},"33":{"tf":1.0},"81":{"tf":1.0}}},"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":2.0},"118":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.4142135623730951},"44":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"115":{"tf":1.0},"147":{"tf":1.0},"184":{"tf":1.0},"210":{"tf":1.0},"257":{"tf":1.0},"43":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"112":{"tf":1.0},"18":{"tf":1.0},"212":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.4142135623730951},"245":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.4142135623730951},"33":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"211":{"tf":1.0},"254":{"tf":1.0}}}}},"i":{"c":{"df":3,"docs":{"170":{"tf":1.0},"222":{"tf":1.0},"247":{"tf":1.0}}},"df":6,"docs":{"111":{"tf":1.4142135623730951},"130":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"35":{"tf":1.0},"87":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":24,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"33":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"240":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":44,"docs":{"103":{"tf":1.4142135623730951},"105":{"tf":2.449489742783178},"11":{"tf":1.0},"111":{"tf":3.1622776601683795},"112":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"134":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"20":{"tf":2.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"219":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":2.23606797749979},"25":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":2.23606797749979},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"271":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.0},"97":{"tf":3.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"257":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":8,"docs":{"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":2.0},"209":{"tf":1.7320508075688772},"70":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"+":{"1":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"187":{"tf":1.0},"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":6,"docs":{"104":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"49":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951}}},"w":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.0},"232":{"tf":1.0},"266":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"246":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"105":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"211":{"tf":1.0},"23":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"19":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":7,"docs":{"2":{"tf":1.0},"209":{"tf":1.4142135623730951},"23":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"3":{"tf":1.0},"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"232":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0}}}}},"p":{"=":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":8,"docs":{"130":{"tf":1.0},"2":{"tf":1.0},"221":{"tf":1.0},"25":{"tf":1.0},"266":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":2.23606797749979}}}},"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":25,"docs":{"101":{"tf":3.1622776601683795},"103":{"tf":2.0},"105":{"tf":2.0},"106":{"tf":2.6457513110645907},"107":{"tf":1.4142135623730951},"111":{"tf":5.385164807134504},"112":{"tf":3.1622776601683795},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":2.23606797749979},"120":{"tf":2.449489742783178},"121":{"tf":1.4142135623730951},"122":{"tf":3.0},"123":{"tf":2.23606797749979},"124":{"tf":2.0},"125":{"tf":1.7320508075688772},"126":{"tf":2.23606797749979},"143":{"tf":1.0},"2":{"tf":1.0},"41":{"tf":1.0},"97":{"tf":2.449489742783178},"99":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"10":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"103":{"tf":1.0},"120":{"tf":2.23606797749979},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"220":{"tf":1.4142135623730951},"228":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"44":{"tf":1.4142135623730951},"68":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":26,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"16":{"tf":1.0},"209":{"tf":1.0},"220":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"232":{"tf":1.0},"233":{"tf":1.0},"244":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.7320508075688772},"36":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":35,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"120":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":2.23606797749979},"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"226":{"tf":1.0},"261":{"tf":1.0},"270":{"tf":1.4142135623730951},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":3.7416573867739413},"88":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"2":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"101":{"tf":2.23606797749979},"103":{"tf":1.0},"106":{"tf":2.23606797749979},"109":{"tf":2.0},"112":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"=":{"0":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"′":{"=":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"δ":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"33":{"tf":1.0}}}},"l":{"df":2,"docs":{"1":{"tf":1.0},"33":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"75":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"4":{")":{",":{"a":{"d":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}}}},"df":158,"docs":{"10":{"tf":2.0},"101":{"tf":1.4142135623730951},"105":{"tf":2.449489742783178},"106":{"tf":3.4641016151377544},"109":{"tf":1.0},"110":{"tf":3.872983346207417},"111":{"tf":2.0},"112":{"tf":3.872983346207417},"113":{"tf":4.123105625617661},"114":{"tf":1.7320508075688772},"117":{"tf":4.123105625617661},"118":{"tf":2.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":4.242640687119285},"128":{"tf":3.3166247903554},"129":{"tf":2.6457513110645907},"130":{"tf":3.3166247903554},"131":{"tf":3.1622776601683795},"132":{"tf":1.4142135623730951},"133":{"tf":2.0},"134":{"tf":3.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":3.605551275463989},"138":{"tf":1.0},"139":{"tf":4.795831523312719},"140":{"tf":2.8284271247461903},"141":{"tf":4.242640687119285},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":2.23606797749979},"151":{"tf":2.0},"152":{"tf":2.23606797749979},"153":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":1.0},"156":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":2.0},"159":{"tf":2.0},"160":{"tf":2.0},"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":2.0},"164":{"tf":2.0},"165":{"tf":2.0},"166":{"tf":2.23606797749979},"167":{"tf":3.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":2.0},"172":{"tf":2.23606797749979},"173":{"tf":2.0},"174":{"tf":2.0},"175":{"tf":2.0},"176":{"tf":2.0},"177":{"tf":2.0},"178":{"tf":2.0},"179":{"tf":2.0},"18":{"tf":1.4142135623730951},"180":{"tf":2.0},"181":{"tf":2.23606797749979},"182":{"tf":2.23606797749979},"183":{"tf":2.23606797749979},"184":{"tf":3.3166247903554},"185":{"tf":2.23606797749979},"186":{"tf":2.23606797749979},"187":{"tf":2.23606797749979},"188":{"tf":2.23606797749979},"189":{"tf":2.23606797749979},"190":{"tf":3.0},"191":{"tf":2.8284271247461903},"192":{"tf":2.449489742783178},"193":{"tf":2.449489742783178},"194":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"196":{"tf":2.449489742783178},"197":{"tf":2.449489742783178},"198":{"tf":2.6457513110645907},"199":{"tf":1.4142135623730951},"200":{"tf":2.23606797749979},"201":{"tf":2.23606797749979},"202":{"tf":2.449489742783178},"203":{"tf":2.23606797749979},"204":{"tf":2.449489742783178},"205":{"tf":1.7320508075688772},"206":{"tf":2.449489742783178},"207":{"tf":2.0},"208":{"tf":2.0},"209":{"tf":3.3166247903554},"215":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.7320508075688772},"222":{"tf":1.0},"223":{"tf":2.0},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":1.7320508075688772},"24":{"tf":1.0},"245":{"tf":1.7320508075688772},"252":{"tf":1.0},"259":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"28":{"tf":2.8284271247461903},"31":{"tf":2.0},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.0},"45":{"tf":2.8284271247461903},"47":{"tf":1.0},"49":{"tf":2.23606797749979},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"6":{"tf":3.0},"60":{"tf":5.291502622129181},"61":{"tf":1.0},"62":{"tf":2.6457513110645907},"63":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":5.0990195135927845},"66":{"tf":4.123105625617661},"68":{"tf":1.0},"74":{"tf":2.8284271247461903},"75":{"tf":2.449489742783178},"79":{"tf":2.0},"8":{"tf":2.449489742783178},"80":{"tf":2.0},"81":{"tf":2.23606797749979},"82":{"tf":3.872983346207417},"83":{"tf":4.69041575982343},"84":{"tf":3.0},"85":{"tf":1.7320508075688772},"86":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"9":{"tf":2.449489742783178},"93":{"tf":2.0},"94":{"tf":2.8284271247461903},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":21,"docs":{"32":{"tf":1.4142135623730951},"38":{"tf":1.0},"69":{"tf":2.449489742783178},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"258":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":9,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"274":{"tf":4.123105625617661},"4":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":95,"docs":{"105":{"tf":2.23606797749979},"107":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":1.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":2.0},"127":{"tf":1.0},"137":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":2.23606797749979},"233":{"tf":1.0},"234":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"245":{"tf":2.0},"261":{"tf":1.0},"271":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"74":{"tf":1.7320508075688772},"8":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}}}},"t":{"df":1,"docs":{"16":{"tf":1.4142135623730951}},"e":{"df":43,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":2.23606797749979},"106":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":2.23606797749979},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"150":{"tf":1.4142135623730951},"172":{"tf":1.0},"18":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":2.23606797749979},"233":{"tf":2.449489742783178},"236":{"tf":2.449489742783178},"237":{"tf":2.0},"238":{"tf":2.6457513110645907},"239":{"tf":2.6457513110645907},"24":{"tf":1.0},"240":{"tf":2.6457513110645907},"243":{"tf":1.4142135623730951},"244":{"tf":2.449489742783178},"245":{"tf":3.3166247903554},"28":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"2":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":3,"docs":{"255":{"tf":1.0},"256":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"y":{"df":6,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"217":{"tf":1.0},"249":{"tf":1.0},"262":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"6":{"4":{"df":2,"docs":{"72":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"f":{"4":{"df":2,"docs":{"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"76":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"3":{"df":2,"docs":{"72":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":2,"docs":{"72":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"u":{"6":{"4":{"df":7,"docs":{"38":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"71":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"72":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"72":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"86":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"255":{"tf":1.0}}}},"p":{"df":16,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":2.449489742783178},"112":{"tf":2.23606797749979},"130":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":2.23606797749979},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"242":{"tf":1.0},"267":{"tf":1.0},"99":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"110":{"tf":1.0},"137":{"tf":1.0},"212":{"tf":1.0},"255":{"tf":1.0},"63":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"6":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"10":{"tf":1.7320508075688772},"114":{"tf":1.0},"128":{"tf":1.0},"17":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"265":{"tf":1.0},"267":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"6":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":2.23606797749979},"79":{"tf":2.0},"80":{"tf":2.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"219":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":2.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":16,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"17":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"233":{"tf":1.0},"255":{"tf":1.0},"4":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"16":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"52":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"34":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":9,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"137":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"262":{"tf":1.0},"37":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"82":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"65":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"h":{"df":21,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"121":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.7320508075688772},"233":{"tf":1.0},"245":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"29":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"170":{"tf":1.0},"199":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":4,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"207":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"17":{"tf":2.23606797749979},"2":{"tf":1.4142135623730951},"55":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"138":{"tf":1.0},"2":{"tf":2.449489742783178},"212":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"270":{"tf":1.0},"3":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"39":{"tf":1.4142135623730951},"7":{"tf":1.0},"88":{"tf":1.0}}}},"s":{"df":2,"docs":{"239":{"tf":1.0},"240":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":26,"docs":{"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"114":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"218":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"250":{"tf":2.0},"254":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":2.0},"264":{"tf":1.0},"9":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"p":{".":{"1":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"w":{"df":3,"docs":{"139":{"tf":1.0},"189":{"tf":2.0},"60":{"tf":1.0}}}},"df":11,"docs":{"139":{"tf":1.0},"185":{"tf":2.23606797749979},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"60":{"tf":2.6457513110645907}},"w":{".":{"1":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":2,"docs":{"139":{"tf":1.0},"187":{"tf":2.0}}},"3":{"df":2,"docs":{"139":{"tf":1.0},"188":{"tf":2.0}}},"df":3,"docs":{"139":{"tf":1.0},"186":{"tf":2.0},"60":{"tf":1.4142135623730951}}}},"y":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"246":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"33":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":2.0},"144":{"tf":1.0},"220":{"tf":1.0},"229":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":2.6457513110645907},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"64":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":3.1622776601683795},"99":{"tf":1.0}},"l":{".":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"245":{"tf":1.0}}},"df":21,"docs":{"111":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"149":{"tf":2.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"169":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"4":{"tf":1.4142135623730951},"72":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"c":{"'":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"⋅":{"(":{"df":0,"docs":{},"z":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"1":{"6":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"2":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{")":{")":{"=":{"0":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"0":{"df":4,"docs":{"105":{"tf":1.7320508075688772},"129":{"tf":1.0},"131":{"tf":1.0},"170":{"tf":1.0}},"":{",":{"df":0,"docs":{},"t":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"df":5,"docs":{"105":{"tf":1.4142135623730951},"129":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"170":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"t":{"4":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":6,"docs":{"105":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"170":{"tf":1.0}}},"3":{"df":1,"docs":{"170":{"tf":1.0}}},"5":{"df":1,"docs":{"105":{"tf":1.0}}},"6":{"df":1,"docs":{"105":{"tf":1.0}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"77":{"tf":2.0}}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":51,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":6.324555320336759},"106":{"tf":5.291502622129181},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":3.0},"111":{"tf":4.898979485566356},"112":{"tf":4.358898943540674},"113":{"tf":2.6457513110645907},"115":{"tf":2.0},"117":{"tf":4.242640687119285},"118":{"tf":4.242640687119285},"119":{"tf":1.4142135623730951},"126":{"tf":4.47213595499958},"128":{"tf":1.0},"129":{"tf":3.605551275463989},"130":{"tf":2.8284271247461903},"131":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":3.0},"17":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.4142135623730951},"221":{"tf":1.0},"230":{"tf":3.1622776601683795},"231":{"tf":2.449489742783178},"233":{"tf":3.0},"244":{"tf":1.0},"245":{"tf":3.3166247903554},"246":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"248":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":3.3166247903554},"265":{"tf":1.7320508075688772},"267":{"tf":3.0},"268":{"tf":2.0},"269":{"tf":3.3166247903554},"50":{"tf":1.0},"55":{"tf":1.4142135623730951},"67":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"268":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"21":{"tf":1.0},"55":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.449489742783178}},"n":{"df":2,"docs":{"101":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"13":{"tf":1.0},"15":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"24":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"35":{"tf":1.4142135623730951},"7":{"tf":1.0},"71":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"101":{"tf":1.0},"13":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0}}}}},"df":5,"docs":{"256":{"tf":1.4142135623730951},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0},"64":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"104":{"tf":1.0},"116":{"tf":1.7320508075688772},"118":{"tf":2.23606797749979},"127":{"tf":1.0},"18":{"tf":1.0},"206":{"tf":1.0},"34":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"37":{"tf":1.0},"45":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"274":{"tf":1.0},"51":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"t":{"'":{"df":3,"docs":{"271":{"tf":1.0},"272":{"tf":1.0},"55":{"tf":1.0}}},":":{"1":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"111":{"tf":1.0},"184":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"230":{"tf":1.0},"71":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"116":{"tf":1.0},"223":{"tf":1.7320508075688772},"262":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}},"g":{"df":3,"docs":{"2":{"tf":1.0},"24":{"tf":1.4142135623730951},"60":{"tf":1.0}}}},"r":{"d":{"df":10,"docs":{"105":{"tf":1.4142135623730951},"112":{"tf":1.0},"138":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"23":{"tf":1.0},"245":{"tf":1.4142135623730951},"35":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"215":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0},"270":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"111":{"tf":1.0},"212":{"tf":1.0}},"t":{"df":6,"docs":{"105":{"tf":1.7320508075688772},"111":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.0},"232":{"tf":1.0},"266":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":9,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"123":{"tf":1.0},"143":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.4142135623730951},"42":{"tf":1.0},"6":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"23":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.0},"249":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}}}}}}}}},"u":{"df":77,"docs":{"100":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":2.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"138":{"tf":2.449489742783178},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"147":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"238":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.7320508075688772},"271":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.7320508075688772},"7":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":2.0},"98":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":1,"docs":{"238":{"tf":1.0}},"e":{"df":2,"docs":{"233":{"tf":1.0},"245":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":25,"docs":{"105":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"129":{"tf":1.0},"19":{"tf":3.0},"20":{"tf":2.449489742783178},"209":{"tf":1.0},"21":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"226":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951},"263":{"tf":1.0},"267":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":6,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"211":{"tf":1.0},"240":{"tf":1.4142135623730951},"245":{"tf":1.0},"65":{"tf":1.0},"87":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"116":{"tf":1.0}}},"l":{"df":12,"docs":{"16":{"tf":1.0},"22":{"tf":2.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0}}}},"p":{"df":71,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":3.3166247903554},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.6457513110645907},"114":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"42":{"tf":1.7320508075688772},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":3.1622776601683795},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":2.449489742783178},"68":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"93":{"tf":2.0},"94":{"tf":2.8284271247461903},"98":{"tf":2.23606797749979}}},"t":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"106":{"tf":1.0},"111":{"tf":2.0},"138":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"258":{"tf":1.0},"37":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":49,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"105":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":2.0},"128":{"tf":1.0},"136":{"tf":1.7320508075688772},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":2.6457513110645907},"218":{"tf":1.4142135623730951},"219":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":4.0},"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"230":{"tf":1.0},"233":{"tf":2.23606797749979},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"258":{"tf":2.23606797749979},"261":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"265":{"tf":2.8284271247461903},"266":{"tf":3.0},"267":{"tf":1.0},"268":{"tf":1.7320508075688772},"271":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":2.0}}},"k":{"df":16,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"117":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.4142135623730951},"260":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"89":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"19":{"tf":1.0},"258":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":58,"docs":{"113":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"223":{"tf":2.6457513110645907},"231":{"tf":1.4142135623730951},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"41":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":24,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"17":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":2.0},"220":{"tf":1.0},"239":{"tf":2.23606797749979},"240":{"tf":2.449489742783178},"33":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":3.3166247903554},"75":{"tf":3.3166247903554},"77":{"tf":1.0},"8":{"tf":2.449489742783178},"88":{"tf":1.0},"90":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"255":{"tf":1.0}}}}},"df":4,"docs":{"213":{"tf":1.0},"35":{"tf":1.0},"66":{"tf":1.0},"98":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"223":{"tf":1.0},"252":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"42":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"106":{"tf":3.605551275463989},"111":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"135":{"tf":1.4142135623730951},"17":{"tf":1.0},"77":{"tf":1.7320508075688772}},"e":{".":{"2":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}},"n":{"df":4,"docs":{"112":{"tf":1.0},"138":{"tf":1.0},"169":{"tf":1.0},"36":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"233":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"'":{"df":1,"docs":{"175":{"tf":1.0}}},"df":64,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"115":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"148":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":2.0},"227":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":2.8284271247461903},"259":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"269":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":3.872983346207417},"83":{"tf":4.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":10,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.0},"234":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"266":{"tf":1.0},"270":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}}}},"←":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"u":{"3":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"2":{"a":{"d":{"d":{"3":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"174":{"tf":2.0}}},"df":2,"docs":{"142":{"tf":1.0},"173":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"140":{"tf":1.0},"179":{"tf":2.0},"248":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"1":{"df":1,"docs":{"56":{"tf":1.0}}},"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":2,"docs":{"142":{"tf":1.0},"172":{"tf":2.0}}},"df":1,"docs":{"56":{"tf":1.0}},"w":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{".":{"b":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"27":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"57":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"28":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"u":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"142":{"tf":1.0},"178":{"tf":2.0}}}}},"df":24,"docs":{"140":{"tf":1.4142135623730951},"142":{"tf":3.3166247903554},"168":{"tf":2.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"2":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.0}},"m":{"a":{"d":{"d":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"177":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"142":{"tf":1.0},"176":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"3":{"df":1,"docs":{"57":{"tf":1.0}}},"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"d":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"171":{"tf":2.0},"56":{"tf":1.0}}}}}},"u":{"b":{"df":2,"docs":{"142":{"tf":1.0},"175":{"tf":2.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}},"w":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"57":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"3":{"df":1,"docs":{"57":{"tf":1.0}}},"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"d":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"140":{"tf":1.0},"180":{"tf":2.0},"248":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0}}}}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"65":{"tf":1.0},"81":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"1":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"+":{"df":0,"docs":{},"α":{"4":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"z":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"d":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"213":{"tf":1.0},"252":{"tf":1.7320508075688772},"263":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"b":{"df":0,"docs":{},"h":{"+":{"df":0,"docs":{},"α":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"5":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":1,"docs":{"252":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"tf":1.4142135623730951}},"":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{",":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{",":{"2":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"4":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"+":{"df":0,"docs":{},"v":{"df":2,"docs":{"200":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"113":{"tf":2.23606797749979},"167":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"238":{"tf":1.0},"259":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"55":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951}},"e":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"82":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"83":{"tf":1.0}},"z":{"df":1,"docs":{"83":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"83":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"242":{"tf":1.0},"244":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"55":{"tf":1.0},"57":{"tf":3.605551275463989},"58":{"tf":2.23606797749979},"59":{"tf":2.449489742783178},"77":{"tf":1.0},"81":{"tf":1.0}}}}},"r":{"df":9,"docs":{"135":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"19":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"38":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"82":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":2,"docs":{"24":{"tf":1.0},"31":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":32,"docs":{"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"252":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"272":{"tf":1.0},"89":{"tf":1.0},"99":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"234":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"87":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":7,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"127":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":8,"docs":{"168":{"tf":1.0},"2":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":2.23606797749979},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"120":{"tf":1.0},"23":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"139":{"tf":1.0},"143":{"tf":2.8284271247461903}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":22,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"232":{"tf":2.23606797749979},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"240":{"tf":2.0},"243":{"tf":1.0},"245":{"tf":2.23606797749979},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":17,"docs":{"105":{"tf":1.4142135623730951},"111":{"tf":2.0},"138":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"238":{"tf":1.0},"258":{"tf":1.7320508075688772},"6":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"77":{"tf":1.0},"97":{"tf":2.0},"98":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"266":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"32":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"df":136,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":1.0},"105":{"tf":2.0},"106":{"tf":2.449489742783178},"107":{"tf":1.0},"11":{"tf":2.0},"111":{"tf":3.0},"113":{"tf":2.0},"115":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":1.0},"118":{"tf":1.7320508075688772},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":3.0},"14":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"147":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"199":{"tf":1.0},"2":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"210":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":1.0},"220":{"tf":2.0},"223":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":2.449489742783178},"233":{"tf":3.4641016151377544},"234":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":2.0},"243":{"tf":1.0},"245":{"tf":3.4641016151377544},"246":{"tf":1.4142135623730951},"247":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.449489742783178},"266":{"tf":1.7320508075688772},"267":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":2.0},"38":{"tf":2.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":2.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"77":{"tf":2.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.872983346207417},"87":{"tf":1.7320508075688772},"88":{"tf":3.0},"89":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.0},"99":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"u":{"6":{"4":{"df":2,"docs":{"38":{"tf":1.4142135623730951},"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"97":{"tf":1.0}}},"df":60,"docs":{"17":{"tf":1.0},"2":{"tf":1.7320508075688772},"23":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"d":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"72":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"52":{"tf":1.0}}}}},"v":{"0":{".":{"7":{"df":2,"docs":{"1":{"tf":1.0},"11":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"258":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"v":{"7":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"3":{"df":3,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"7":{"df":1,"docs":{"130":{"tf":1.0}}},"8":{"df":1,"docs":{"130":{"tf":1.0}}},"df":3,"docs":{"126":{"tf":1.0},"130":{"tf":1.0},"258":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"2":{"df":3,"docs":{"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"258":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"258":{"tf":1.0}}},"8":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"v":{"1":{"5":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":2,"docs":{"200":{"tf":1.0},"202":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"264":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"1":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"1":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":2,"docs":{"201":{"tf":1.0},"203":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"245":{"tf":1.0}},"l":{"df":2,"docs":{"166":{"tf":1.4142135623730951},"255":{"tf":2.6457513110645907}},"i":{"d":{"df":13,"docs":{"107":{"tf":1.0},"170":{"tf":2.6457513110645907},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"25":{"tf":1.0},"60":{"tf":2.8284271247461903},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":157,"docs":{"10":{"tf":2.0},"100":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":3.605551275463989},"105":{"tf":4.0},"106":{"tf":4.795831523312719},"110":{"tf":1.7320508075688772},"111":{"tf":5.477225575051661},"113":{"tf":2.0},"114":{"tf":2.8284271247461903},"116":{"tf":4.123105625617661},"117":{"tf":3.3166247903554},"118":{"tf":3.605551275463989},"120":{"tf":3.0},"121":{"tf":2.0},"122":{"tf":2.0},"123":{"tf":3.0},"124":{"tf":2.23606797749979},"126":{"tf":4.58257569495584},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":3.7416573867739413},"130":{"tf":2.8284271247461903},"131":{"tf":3.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":2.449489742783178},"138":{"tf":2.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.4142135623730951},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":2.0},"17":{"tf":2.0},"170":{"tf":2.23606797749979},"171":{"tf":2.0},"172":{"tf":1.7320508075688772},"173":{"tf":2.0},"174":{"tf":2.0},"175":{"tf":2.0},"176":{"tf":2.23606797749979},"177":{"tf":2.23606797749979},"178":{"tf":1.7320508075688772},"179":{"tf":2.0},"180":{"tf":2.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"199":{"tf":2.0},"200":{"tf":2.23606797749979},"201":{"tf":2.23606797749979},"202":{"tf":2.0},"203":{"tf":2.23606797749979},"204":{"tf":2.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"207":{"tf":2.23606797749979},"208":{"tf":2.8284271247461903},"209":{"tf":3.1622776601683795},"210":{"tf":1.0},"211":{"tf":4.242640687119285},"212":{"tf":3.0},"213":{"tf":2.23606797749979},"216":{"tf":1.4142135623730951},"217":{"tf":2.8284271247461903},"218":{"tf":1.7320508075688772},"219":{"tf":2.23606797749979},"224":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"23":{"tf":2.0},"231":{"tf":2.449489742783178},"232":{"tf":2.0},"233":{"tf":3.1622776601683795},"234":{"tf":2.449489742783178},"238":{"tf":1.4142135623730951},"239":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":2.8284271247461903},"244":{"tf":1.0},"245":{"tf":3.7416573867739413},"246":{"tf":3.4641016151377544},"247":{"tf":2.8284271247461903},"250":{"tf":2.6457513110645907},"251":{"tf":2.23606797749979},"252":{"tf":2.0},"253":{"tf":1.7320508075688772},"254":{"tf":3.605551275463989},"255":{"tf":2.23606797749979},"256":{"tf":2.23606797749979},"257":{"tf":2.23606797749979},"258":{"tf":3.7416573867739413},"259":{"tf":3.4641016151377544},"261":{"tf":2.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":2.23606797749979},"267":{"tf":2.449489742783178},"268":{"tf":2.23606797749979},"271":{"tf":2.0},"272":{"tf":3.0},"29":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.0},"47":{"tf":1.7320508075688772},"49":{"tf":2.449489742783178},"50":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.7320508075688772},"60":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":2.449489742783178},"64":{"tf":1.0},"65":{"tf":2.8284271247461903},"68":{"tf":2.0},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":3.872983346207417},"77":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":2.449489742783178},"80":{"tf":1.0},"81":{"tf":2.23606797749979},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.872983346207417},"85":{"tf":1.0},"87":{"tf":2.0},"89":{"tf":1.4142135623730951},"97":{"tf":2.23606797749979},"98":{"tf":2.8284271247461903},"99":{"tf":2.23606797749979}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":26,"docs":{"103":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"219":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}},"df":1,"docs":{"169":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"135":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"16":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"72":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}},"b":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"c":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"d":{"df":1,"docs":{"245":{"tf":1.0}}},"df":12,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":3.1622776601683795},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"66":{"tf":2.0},"68":{"tf":2.8284271247461903}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"266":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"111":{"tf":1.0},"144":{"tf":1.4142135623730951},"18":{"tf":1.0},"210":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"262":{"tf":1.0},"274":{"tf":1.0},"33":{"tf":1.0},"68":{"tf":1.0}},"f":{"df":10,"docs":{"100":{"tf":1.0},"19":{"tf":1.4142135623730951},"207":{"tf":1.0},"232":{"tf":2.6457513110645907},"233":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"35":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.4142135623730951}},"i":{"df":42,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":2.0},"107":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"22":{"tf":1.0},"239":{"tf":2.0},"240":{"tf":1.7320508075688772},"245":{"tf":1.0},"252":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":2,"docs":{"132":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"11":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}}}},"h":{"df":1,"docs":{"245":{"tf":1.0}},"i":{"df":0,"docs":{},"":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"3":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"t":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"":{"=":{"2":{"3":{"2":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"a":{"df":34,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":2.23606797749979},"126":{"tf":1.4142135623730951},"148":{"tf":1.0},"15":{"tf":1.4142135623730951},"169":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"259":{"tf":1.0},"267":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"42":{"tf":2.449489742783178},"44":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":2.449489742783178},"75":{"tf":1.4142135623730951},"8":{"tf":1.0},"88":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"132":{"tf":1.0},"257":{"tf":1.0}}}},"df":2,"docs":{"252":{"tf":1.4142135623730951},"259":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"111":{"tf":1.0},"19":{"tf":1.0},"258":{"tf":1.0},"35":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":21,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"129":{"tf":1.0},"2":{"tf":1.4142135623730951},"223":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":2.6457513110645907},"231":{"tf":1.7320508075688772},"245":{"tf":1.7320508075688772},"262":{"tf":1.0},"264":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"267":{"tf":2.0},"268":{"tf":1.7320508075688772},"269":{"tf":2.0},"270":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"k":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{")":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"c":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"6":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"h":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"245":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"b":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"":{"+":{"b":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"d":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"c":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"7":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"":{"=":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"'":{"df":9,"docs":{"2":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"77":{"tf":1.0}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":105,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":2.0},"10":{"tf":2.23606797749979},"100":{"tf":2.8284271247461903},"101":{"tf":2.449489742783178},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"105":{"tf":2.449489742783178},"106":{"tf":4.47213595499958},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"11":{"tf":2.8284271247461903},"110":{"tf":2.8284271247461903},"111":{"tf":2.6457513110645907},"112":{"tf":1.0},"113":{"tf":2.8284271247461903},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":2.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"14":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"16":{"tf":2.23606797749979},"168":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":4.123105625617661},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":2.6457513110645907},"220":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.0},"3":{"tf":2.0},"32":{"tf":2.0},"33":{"tf":3.0},"35":{"tf":1.4142135623730951},"4":{"tf":2.23606797749979},"42":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.4142135623730951},"6":{"tf":3.0},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"8":{"tf":2.23606797749979},"87":{"tf":1.7320508075688772},"88":{"tf":2.8284271247461903},"89":{"tf":2.0},"9":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":2.0},"98":{"tf":3.7416573867739413},"99":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"c":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"7":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"b":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"s":{"df":4,"docs":{"137":{"tf":1.0},"212":{"tf":1.0},"274":{"tf":1.0},"43":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"i":{"+":{"b":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"b":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"h":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"230":{"tf":1.0},"264":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"+":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":1,"docs":{"264":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{")":{"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":2,"docs":{"211":{"tf":1.0},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"←":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"i":{"]":{"[":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"]":{"[":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"→":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"i":{"]":{"[":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"]":{"[":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":18,"docs":{"121":{"tf":1.0},"130":{"tf":1.4142135623730951},"170":{"tf":1.0},"18":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.4142135623730951},"246":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.7320508075688772},"262":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0},"8":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}}}},"y":{"df":19,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"42":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.7320508075688772},"86":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":5,"docs":{"211":{"tf":1.0},"213":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":15,"docs":{"128":{"tf":1.0},"129":{"tf":2.449489742783178},"132":{"tf":1.0},"133":{"tf":1.0},"212":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"263":{"tf":1.0},"268":{"tf":1.7320508075688772}}}},"v":{"df":2,"docs":{"110":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"2":{"tf":1.0},"209":{"tf":1.0},"260":{"tf":1.0},"62":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"245":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"133":{"tf":1.0},"170":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"81":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"49":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"222":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"204":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"255":{"tf":1.0},"264":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"265":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":23,"docs":{"10":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"227":{"tf":1.0},"245":{"tf":2.0},"253":{"tf":1.0},"258":{"tf":2.23606797749979},"34":{"tf":2.23606797749979},"37":{"tf":1.0},"44":{"tf":2.449489742783178},"6":{"tf":1.0},"60":{"tf":2.8284271247461903},"62":{"tf":1.0},"65":{"tf":2.8284271247461903},"66":{"tf":3.4641016151377544},"68":{"tf":2.449489742783178},"70":{"tf":2.23606797749979},"75":{"tf":2.0},"85":{"tf":2.23606797749979},"87":{"tf":2.0}},"s":{".":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":18,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"116":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"241":{"tf":1.0},"255":{"tf":1.4142135623730951},"258":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"1":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"258":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"213":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"258":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"85":{"tf":2.8284271247461903}}}}}},"df":19,"docs":{"137":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"22":{"tf":1.0},"25":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":2.6457513110645907},"258":{"tf":3.0},"259":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":2.23606797749979}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"0":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}}}}},"x":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"1":{"df":1,"docs":{"247":{"tf":1.0}}},"2":{"df":1,"docs":{"247":{"tf":1.0}}},"3":{"df":1,"docs":{"247":{"tf":1.0}}},"=":{"1":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"138":{"tf":4.0},"209":{"tf":1.7320508075688772},"211":{"tf":2.449489742783178},"241":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"213":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"(":{"a":{",":{"b":{")":{"=":{"a":{"+":{"b":{"df":0,"docs":{},"−":{"2":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"⋅":{"b":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"180":{"tf":1.7320508075688772},"220":{"tf":1.0},"246":{"tf":2.0},"52":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"x":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"′":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"x":{"+":{"df":0,"docs":{},"y":{")":{"=":{"0":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"1":{"df":1,"docs":{"247":{"tf":1.0}}},"2":{"df":1,"docs":{"247":{"tf":1.0}}},"3":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"z":{"=":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{")":{"4":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"":{"+":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{")":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"":{"+":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"0":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"219":{"tf":1.0},"246":{"tf":1.7320508075688772},"247":{"tf":2.449489742783178},"251":{"tf":1.0},"252":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":20,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"111":{"tf":1.0},"124":{"tf":1.0},"170":{"tf":1.7320508075688772},"2":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":2.23606797749979},"246":{"tf":1.4142135623730951},"259":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"49":{"tf":1.0},"66":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}},"k":{"df":2,"docs":{"274":{"tf":1.0},"3":{"tf":1.0}}},"p":{"df":3,"docs":{"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"251":{"tf":1.0}}}}}},"title":{"root":{"1":{"6":{"df":1,"docs":{"213":{"tf":1.0}}},"df":1,"docs":{"237":{"tf":1.0}}},"2":{"df":2,"docs":{"237":{"tf":1.0},"77":{"tf":1.0}}},"4":{"df":1,"docs":{"77":{"tf":1.0}}},"6":{"4":{"df":2,"docs":{"75":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"211":{"tf":1.0}}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"199":{"tf":1.0},"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"156":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"197":{"tf":1.0}},"w":{"df":1,"docs":{"198":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"113":{"tf":1.0},"132":{"tf":1.0},"241":{"tf":1.0},"259":{"tf":1.0}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"214":{"tf":1.0},"258":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"52":{"tf":1.0},"57":{"tf":1.0},"82":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"25":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"151":{"tf":1.0},"51":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"211":{"tf":1.0},"213":{"tf":1.0},"81":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"246":{"tf":1.0},"58":{"tf":1.0},"84":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"3":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":17,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":7,"docs":{"116":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"252":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"270":{"tf":1.0},"273":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"169":{"tf":1.0},"170":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"245":{"tf":1.0},"265":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":18,"docs":{"116":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"12":{"tf":1.0}}},"k":{"df":1,"docs":{"154":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"36":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":4,"docs":{"120":{"tf":1.0},"242":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"219":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"53":{"tf":1.0},"59":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"115":{"tf":1.0},"235":{"tf":1.0},"268":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"47":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":36,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"257":{"tf":1.0},"41":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"256":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"14":{"tf":1.0},"148":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":3,"docs":{"205":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"192":{"tf":1.0}},"w":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":11,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"123":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"134":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"254":{"tf":1.0},"35":{"tf":1.0},"87":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"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":{"32":{"tf":1.0},"4":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"183":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"170":{"tf":1.0},"238":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}}}}},"q":{"df":1,"docs":{"164":{"tf":1.0}},"z":{"df":1,"docs":{"165":{"tf":1.0}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"112":{"tf":1.0},"18":{"tf":1.0},"235":{"tf":1.0},"247":{"tf":1.0},"45":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"101":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"c":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"2":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"54":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"155":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"125":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"148":{"tf":1.0},"46":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"a":{"d":{"d":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"76":{"tf":1.0},"77":{"tf":1.0}},"e":{"2":{"df":0,"docs":{},"f":{"4":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"15":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":9,"docs":{"104":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"244":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"26":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"271":{"tf":1.0}}}}}}}}}},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"124":{"tf":1.0},"243":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"194":{"tf":1.0},"250":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"234":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"12":{"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":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"159":{"tf":1.0}},"o":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"92":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":3,"docs":{"131":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"110":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"94":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"181":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"29":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"199":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":5,"docs":{"239":{"tf":1.0},"240":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":15,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"258":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"33":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"201":{"tf":1.0}},"w":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"221":{"tf":1.0},"225":{"tf":1.0},"38":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"v":{"d":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"203":{"tf":1.0}},"w":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"245":{"tf":1.0},"265":{"tf":1.0}}}}}}}}}},"n":{"df":1,"docs":{"238":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"157":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"243":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"65":{"tf":1.0}}}}}}}}}}}}},"df":1,"docs":{"256":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"150":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}},"df":30,"docs":{"106":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"224":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"36":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"194":{"tf":1.0},"251":{"tf":1.0},"62":{"tf":1.0},"8":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"129":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}}},"p":{"a":{"d":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"264":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":10,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"27":{"tf":1.0},"7":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":5,"docs":{"169":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"215":{"tf":1.0},"223":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"130":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"260":{"tf":1.0},"261":{"tf":1.0}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"266":{"tf":1.0}}}}},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"227":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":7,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.0},"236":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"111":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"75":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"93":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":14,"docs":{"117":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"181":{"tf":1.0},"223":{"tf":1.0},"28":{"tf":1.0},"60":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"244":{"tf":1.0}}},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"102":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"w":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":1,"docs":{"185":{"tf":1.0}},"w":{"2":{"df":1,"docs":{"187":{"tf":1.0}}},"3":{"df":1,"docs":{"188":{"tf":1.0}}},"df":1,"docs":{"186":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"149":{"tf":1.0},"86":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"105":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"135":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"34":{"tf":1.0},"70":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":1.0},"56":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":9,"docs":{"103":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"233":{"tf":1.0},"261":{"tf":1.0},"268":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"68":{"tf":1.0},"75":{"tf":1.0}}}}}},"u":{"3":{"2":{"a":{"d":{"d":{"3":{"df":1,"docs":{"174":{"tf":1.0}}},"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":3,"docs":{"142":{"tf":1.0},"168":{"tf":1.0},"55":{"tf":1.0}},"m":{"a":{"d":{"d":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"u":{"b":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"11":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}},"f":{"df":1,"docs":{"76":{"tf":1.0}},"i":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0}}}},"df":0,"docs":{}}}}},"m":{"df":10,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"6":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"255":{"tf":1.0},"7":{"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/searchindex.json b/searchindex.json
index 7f5d4401ab..56f4889fd0 100644
--- a/searchindex.json
+++ b/searchindex.json
@@ -1 +1 @@
-{"doc_urls":["intro/main.html#introduction","intro/main.html#status-and-features","intro/main.html#feature-highlights","intro/main.html#planned-features","intro/main.html#structure-of-this-document","intro/main.html#license","intro/overview.html#miden-vm-overview","intro/overview.html#writing-programs","intro/overview.html#inputs-and-outputs","intro/overview.html#stack-depth-restrictions","intro/overview.html#nondeterministic-inputs","intro/usage.html#usage","intro/usage.html#cli-interface","intro/usage.html#compiling-miden-vm","intro/usage.html#controlling-parallelism","intro/usage.html#gpu-acceleration","intro/usage.html#running-miden-vm","intro/usage.html#inputs","intro/usage.html#fibonacci-example","intro/performance.html#performance","intro/performance.html#single-core-prover-performance","intro/performance.html#multi-core-prover-performance","tools/main.html#development-tools-and-resources","tools/debugger.html#miden-debugger","tools/repl.html#miden-repl","tools/repl.html#miden-assembly-instruction","tools/repl.html#help","tools/repl.html#program","tools/repl.html#stack","tools/repl.html#mem","tools/repl.html#memaddr","tools/repl.html#undo","user_docs/main.html#user-documentation","user_docs/assembly/main.html#miden-assembly","user_docs/assembly/main.html#terms-and-notations","user_docs/assembly/main.html#design-goals","user_docs/assembly/code_organization.html#code-organization","user_docs/assembly/code_organization.html#procedures","user_docs/assembly/code_organization.html#modules","user_docs/assembly/code_organization.html#constants","user_docs/assembly/code_organization.html#comments","user_docs/assembly/execution_contexts.html#execution-contexts","user_docs/assembly/execution_contexts.html#procedure-invocation-semantics","user_docs/assembly/execution_contexts.html#kernels","user_docs/assembly/execution_contexts.html#memory-layout","user_docs/assembly/execution_contexts.html#example","user_docs/assembly/flow_control.html#flow-control","user_docs/assembly/flow_control.html#conditional-execution","user_docs/assembly/flow_control.html#counter-controlled-loops","user_docs/assembly/flow_control.html#condition-controlled-loops","user_docs/assembly/field_operations.html#field-operations","user_docs/assembly/field_operations.html#assertions-and-tests","user_docs/assembly/field_operations.html#arithmetic-and-boolean-operations","user_docs/assembly/field_operations.html#comparison-operations","user_docs/assembly/field_operations.html#extension-field-operations","user_docs/assembly/u32_operations.html#u32-operations","user_docs/assembly/u32_operations.html#conversions-and-tests","user_docs/assembly/u32_operations.html#arithmetic-operations","user_docs/assembly/u32_operations.html#bitwise-operations","user_docs/assembly/u32_operations.html#comparison-operations","user_docs/assembly/stack_manipulation.html#stack-manipulation","user_docs/assembly/stack_manipulation.html#conditional-manipulation","user_docs/assembly/io_operations.html#input--output-operations","user_docs/assembly/io_operations.html#constant-inputs","user_docs/assembly/io_operations.html#environment-inputs","user_docs/assembly/io_operations.html#nondeterministic-inputs","user_docs/assembly/io_operations.html#random-access-memory","user_docs/assembly/cryptographic_operations.html#cryptographic-operations","user_docs/assembly/cryptographic_operations.html#hashing-and-merkle-trees","user_docs/stdlib/main.html#miden-standard-library","user_docs/stdlib/main.html#terms-and-notations","user_docs/stdlib/main.html#organization-and-usage","user_docs/stdlib/main.html#available-modules","user_docs/stdlib/collections.html#collections","user_docs/stdlib/collections.html#merkle-mountain-range","user_docs/stdlib/collections.html#sparse-merkle-tree-64","user_docs/stdlib/crypto/fri.html#fri-verification-procedures","user_docs/stdlib/crypto/fri.html#fri-extension-2-fold-4","user_docs/stdlib/crypto/hashes.html#cryptographic-hashes","user_docs/stdlib/crypto/hashes.html#blake3","user_docs/stdlib/crypto/hashes.html#sha256","user_docs/stdlib/math/u64.html#unsigned-64-bit-integer-operations","user_docs/stdlib/math/u64.html#arithmetic-operations","user_docs/stdlib/math/u64.html#comparison-operations","user_docs/stdlib/math/u64.html#bitwise-operations","user_docs/stdlib/mem.html#memory-procedures","user_docs/stdlib/sys.html#system-procedures","design/main.html#design","design/main.html#vm-components","design/main.html#vm-execution-trace","design/programs.html#programs-in-miden-vm","design/programs.html#code-blocks","design/programs.html#join-block","design/programs.html#split-block","design/programs.html#loop-block","design/programs.html#call-block","design/programs.html#syscall-block","design/programs.html#span-block","design/programs.html#program-example","design/programs.html#program-hash-computation","design/decoder/main.html#miden-vm-program-decoder","design/decoder/main.html#program-execution","design/decoder/main.html#decoder-structure","design/decoder/main.html#decoder-trace","design/decoder/main.html#program-block-hashing","design/decoder/main.html#control-flow-tables","design/decoder/main.html#control-flow-operation-semantics","design/decoder/main.html#program-decoding","design/decoder/main.html#join-block-decoding","design/decoder/main.html#split-block-decoding","design/decoder/main.html#loop-block-decoding","design/decoder/main.html#span-block-decoding","design/decoder/main.html#program-decoding-example","design/decoder/constraints.html#miden-vm-decoder-air-constraints","design/decoder/constraints.html#general-constraints","design/decoder/constraints.html#block-hash-computation-constraints","design/decoder/constraints.html#chiplets-bus-constraints","design/decoder/constraints.html#block-stack-table-constraints","design/decoder/constraints.html#block-hash-table-constraints","design/decoder/constraints.html#span-block","design/decoder/constraints.html#in-span-column-constraints","design/decoder/constraints.html#block-address-constraints","design/decoder/constraints.html#group-count-constraints","design/decoder/constraints.html#op-group-decoding-constraints","design/decoder/constraints.html#op-index-constraints","design/decoder/constraints.html#op-batch-flags-constraints","design/decoder/constraints.html#op-group-table-constraints","design/stack/main.html#operand-stack","design/stack/main.html#stack-representation","design/stack/main.html#overflow-table","design/stack/main.html#right-shift","design/stack/main.html#left-shift","design/stack/main.html#air-constraints","design/stack/main.html#stack-overflow-flag","design/stack/main.html#stack-depth-constraints","design/stack/main.html#overflow-table-constraints","design/stack/main.html#boundary-constraints","design/stack/op_constraints.html#stack-operation-constraints","design/stack/op_constraints.html#operation-flags","design/stack/op_constraints.html#no-stack-shift-operations","design/stack/op_constraints.html#left-stack-shift-operations","design/stack/op_constraints.html#right-stack-shift-operations","design/stack/op_constraints.html#u32-operations","design/stack/op_constraints.html#high-degree-operations","design/stack/op_constraints.html#very-high-degree-operations","design/stack/op_constraints.html#composite-flags","design/stack/op_constraints.html#shift-right-flag","design/stack/op_constraints.html#shift-left-flag","design/stack/op_constraints.html#control-flow-flag","design/stack/system_ops.html#system-operations","design/stack/system_ops.html#noop","design/stack/system_ops.html#assert","design/stack/system_ops.html#fmpadd","design/stack/system_ops.html#fmpupdate","design/stack/system_ops.html#clk","design/stack/field_ops.html#field-operations","design/stack/field_ops.html#add","design/stack/field_ops.html#neg","design/stack/field_ops.html#mul","design/stack/field_ops.html#inv","design/stack/field_ops.html#incr","design/stack/field_ops.html#not","design/stack/field_ops.html#and","design/stack/field_ops.html#or","design/stack/field_ops.html#eq","design/stack/field_ops.html#eqz","design/stack/field_ops.html#expacc","design/stack/field_ops.html#ext2mul","design/stack/u32_ops.html#u32-operations","design/stack/u32_ops.html#range-checks","design/stack/u32_ops.html#checking-element-validity","design/stack/u32_ops.html#u32split","design/stack/u32_ops.html#u32assert2","design/stack/u32_ops.html#u32add","design/stack/u32_ops.html#u32add3","design/stack/u32_ops.html#u32sub","design/stack/u32_ops.html#u32mul","design/stack/u32_ops.html#u32madd","design/stack/u32_ops.html#u32div","design/stack/u32_ops.html#u32and","design/stack/u32_ops.html#u32xor","design/stack/stack_ops.html#stack-manipulation","design/stack/stack_ops.html#pad","design/stack/stack_ops.html#drop","design/stack/stack_ops.html#dupn","design/stack/stack_ops.html#swap","design/stack/stack_ops.html#swapw","design/stack/stack_ops.html#swapw2","design/stack/stack_ops.html#swapw3","design/stack/stack_ops.html#swapdw","design/stack/stack_ops.html#movupn","design/stack/stack_ops.html#movdnn","design/stack/stack_ops.html#cswap","design/stack/stack_ops.html#cswapw","design/stack/io_ops.html#input--output-operations","design/stack/io_ops.html#push","design/stack/io_ops.html#sdepth","design/stack/io_ops.html#advpop","design/stack/io_ops.html#advpopw","design/stack/io_ops.html#memory-access-operations","design/stack/io_ops.html#mloadw","design/stack/io_ops.html#mload","design/stack/io_ops.html#mstorew","design/stack/io_ops.html#mstore","design/stack/io_ops.html#mstream","design/stack/crypto_ops.html#cryptographic-operations","design/stack/crypto_ops.html#hperm","design/stack/crypto_ops.html#mpverify","design/stack/crypto_ops.html#mrupdate","design/stack/crypto_ops.html#frie2f4","design/range.html#range-checker","design/range.html#8-bit-range-checks","design/range.html#a-better-construction","design/range.html#16-bit-range-checks","design/range.html#miden-approach","design/range.html#requirements","design/range.html#capabilities","design/range.html#execution-trace","design/range.html#execution-trace-constraints","design/range.html#communication-bus","design/chiplets/main.html#chiplets","design/chiplets/main.html#chiplets-module-trace","design/chiplets/main.html#chiplets-order","design/chiplets/main.html#additional-requirements-for-stacking-execution-traces","design/chiplets/main.html#operation-labels","design/chiplets/main.html#chiplets-module-constraints","design/chiplets/main.html#chiplet-constraints","design/chiplets/main.html#chiplet-selector-constraints","design/chiplets/main.html#chiplets-bus","design/chiplets/main.html#chiplets-bus-constraints","design/chiplets/main.html#chiplets-virtual-table","design/chiplets/main.html#chiplets-virtual-table-constraints","design/chiplets/hasher.html#hash-chiplet","design/chiplets/hasher.html#chiplet-trace","design/chiplets/hasher.html#instruction-flags","design/chiplets/hasher.html#computation-examples","design/chiplets/hasher.html#single-permutation","design/chiplets/hasher.html#simple-2-to-1-hash","design/chiplets/hasher.html#linear-hash-of-n-elements","design/chiplets/hasher.html#verify-merkle-path","design/chiplets/hasher.html#update-merkle-root","design/chiplets/hasher.html#air-constraints","design/chiplets/hasher.html#selector-columns-constraints","design/chiplets/hasher.html#node-index-constraints","design/chiplets/hasher.html#hasher-state-constraints","design/chiplets/hasher.html#multiset-check-constraints","design/chiplets/bitwise.html#bitwise-chiplet","design/chiplets/bitwise.html#example","design/chiplets/bitwise.html#constraints","design/chiplets/bitwise.html#selectors","design/chiplets/bitwise.html#input-decomposition","design/chiplets/bitwise.html#output-aggregation","design/chiplets/bitwise.html#chiplets-bus-constraints","design/chiplets/memory.html#memory-chiplet","design/chiplets/memory.html#alternative-designs","design/chiplets/memory.html#read-write-memory","design/chiplets/memory.html#non-contiguous-memory","design/chiplets/memory.html#context-separation","design/chiplets/memory.html#miden-approach","design/chiplets/memory.html#air-constraints","design/chiplets/kernel_rom.html#kernel-rom-chiplet","design/chiplets/kernel_rom.html#kernel-rom-trace","design/chiplets/kernel_rom.html#constraints","design/chiplets/kernel_rom.html#chiplets-bus-constraints","design/chiplets/kernel_rom.html#kernel-procedure-table-constraints","design/multiset.html#multiset-checks","design/multiset.html#running-product-columns","design/multiset.html#virtual-tables","design/multiset.html#computing-a-virtual-tables-trace-column","design/multiset.html#virtual-tables-in-miden-vm","design/multiset.html#communication-buses","design/multiset.html#implementation","design/multiset.html#communication-bus-constraints","design/multiset.html#communication-buses-in-miden-vm","background.html#background-material"],"index":{"documentStore":{"docInfo":{"0":{"body":34,"breadcrumbs":2,"title":1},"1":{"body":53,"breadcrumbs":3,"title":2},"10":{"body":115,"breadcrumbs":4,"title":2},"100":{"body":131,"breadcrumbs":7,"title":4},"101":{"body":209,"breadcrumbs":5,"title":2},"102":{"body":45,"breadcrumbs":5,"title":2},"103":{"body":183,"breadcrumbs":5,"title":2},"104":{"body":298,"breadcrumbs":6,"title":3},"105":{"body":516,"breadcrumbs":6,"title":3},"106":{"body":814,"breadcrumbs":7,"title":4},"107":{"body":91,"breadcrumbs":5,"title":2},"108":{"body":59,"breadcrumbs":6,"title":3},"109":{"body":54,"breadcrumbs":6,"title":3},"11":{"body":72,"breadcrumbs":3,"title":1},"110":{"body":227,"breadcrumbs":6,"title":3},"111":{"body":1070,"breadcrumbs":6,"title":3},"112":{"body":292,"breadcrumbs":6,"title":3},"113":{"body":302,"breadcrumbs":10,"title":5},"114":{"body":137,"breadcrumbs":7,"title":2},"115":{"body":144,"breadcrumbs":9,"title":4},"116":{"body":447,"breadcrumbs":8,"title":3},"117":{"body":306,"breadcrumbs":9,"title":4},"118":{"body":403,"breadcrumbs":9,"title":4},"119":{"body":26,"breadcrumbs":7,"title":2},"12":{"body":0,"breadcrumbs":4,"title":2},"120":{"body":135,"breadcrumbs":8,"title":3},"121":{"body":70,"breadcrumbs":8,"title":3},"122":{"body":184,"breadcrumbs":8,"title":3},"123":{"body":225,"breadcrumbs":9,"title":4},"124":{"body":132,"breadcrumbs":8,"title":3},"125":{"body":141,"breadcrumbs":9,"title":4},"126":{"body":349,"breadcrumbs":9,"title":4},"127":{"body":120,"breadcrumbs":5,"title":2},"128":{"body":80,"breadcrumbs":5,"title":2},"129":{"body":172,"breadcrumbs":5,"title":2},"13":{"body":62,"breadcrumbs":5,"title":3},"130":{"body":172,"breadcrumbs":5,"title":2},"131":{"body":114,"breadcrumbs":5,"title":2},"132":{"body":59,"breadcrumbs":5,"title":2},"133":{"body":58,"breadcrumbs":6,"title":3},"134":{"body":51,"breadcrumbs":6,"title":3},"135":{"body":132,"breadcrumbs":6,"title":3},"136":{"body":27,"breadcrumbs":5,"title":2},"137":{"body":181,"breadcrumbs":8,"title":3},"138":{"body":312,"breadcrumbs":7,"title":2},"139":{"body":216,"breadcrumbs":8,"title":3},"14":{"body":18,"breadcrumbs":4,"title":2},"140":{"body":129,"breadcrumbs":9,"title":4},"141":{"body":133,"breadcrumbs":9,"title":4},"142":{"body":167,"breadcrumbs":7,"title":2},"143":{"body":159,"breadcrumbs":8,"title":3},"144":{"body":113,"breadcrumbs":9,"title":4},"145":{"body":13,"breadcrumbs":7,"title":2},"146":{"body":41,"breadcrumbs":8,"title":3},"147":{"body":93,"breadcrumbs":8,"title":3},"148":{"body":37,"breadcrumbs":8,"title":3},"149":{"body":8,"breadcrumbs":7,"title":2},"15":{"body":48,"breadcrumbs":4,"title":2},"150":{"body":34,"breadcrumbs":6,"title":1},"151":{"body":33,"breadcrumbs":6,"title":1},"152":{"body":35,"breadcrumbs":6,"title":1},"153":{"body":31,"breadcrumbs":6,"title":1},"154":{"body":30,"breadcrumbs":6,"title":1},"155":{"body":14,"breadcrumbs":7,"title":2},"156":{"body":30,"breadcrumbs":6,"title":1},"157":{"body":28,"breadcrumbs":6,"title":1},"158":{"body":30,"breadcrumbs":6,"title":1},"159":{"body":34,"breadcrumbs":6,"title":1},"16":{"body":118,"breadcrumbs":5,"title":3},"160":{"body":28,"breadcrumbs":6,"title":1},"161":{"body":41,"breadcrumbs":5,"title":0},"162":{"body":46,"breadcrumbs":5,"title":0},"163":{"body":46,"breadcrumbs":5,"title":0},"164":{"body":56,"breadcrumbs":6,"title":1},"165":{"body":54,"breadcrumbs":6,"title":1},"166":{"body":85,"breadcrumbs":6,"title":1},"167":{"body":71,"breadcrumbs":6,"title":1},"168":{"body":17,"breadcrumbs":7,"title":2},"169":{"body":86,"breadcrumbs":7,"title":2},"17":{"body":151,"breadcrumbs":3,"title":1},"170":{"body":113,"breadcrumbs":8,"title":3},"171":{"body":95,"breadcrumbs":6,"title":1},"172":{"body":76,"breadcrumbs":6,"title":1},"173":{"body":83,"breadcrumbs":6,"title":1},"174":{"body":85,"breadcrumbs":6,"title":1},"175":{"body":83,"breadcrumbs":6,"title":1},"176":{"body":98,"breadcrumbs":6,"title":1},"177":{"body":114,"breadcrumbs":6,"title":1},"178":{"body":70,"breadcrumbs":6,"title":1},"179":{"body":74,"breadcrumbs":6,"title":1},"18":{"body":63,"breadcrumbs":4,"title":2},"180":{"body":77,"breadcrumbs":6,"title":1},"181":{"body":9,"breadcrumbs":7,"title":2},"182":{"body":28,"breadcrumbs":6,"title":1},"183":{"body":35,"breadcrumbs":6,"title":1},"184":{"body":62,"breadcrumbs":6,"title":1},"185":{"body":30,"breadcrumbs":6,"title":1},"186":{"body":33,"breadcrumbs":6,"title":1},"187":{"body":36,"breadcrumbs":6,"title":1},"188":{"body":36,"breadcrumbs":6,"title":1},"189":{"body":33,"breadcrumbs":6,"title":1},"19":{"body":124,"breadcrumbs":3,"title":1},"190":{"body":71,"breadcrumbs":6,"title":1},"191":{"body":70,"breadcrumbs":6,"title":1},"192":{"body":60,"breadcrumbs":6,"title":1},"193":{"body":62,"breadcrumbs":6,"title":1},"194":{"body":24,"breadcrumbs":9,"title":3},"195":{"body":34,"breadcrumbs":7,"title":1},"196":{"body":37,"breadcrumbs":7,"title":1},"197":{"body":38,"breadcrumbs":7,"title":1},"198":{"body":49,"breadcrumbs":7,"title":1},"199":{"body":73,"breadcrumbs":9,"title":3},"2":{"body":253,"breadcrumbs":3,"title":2},"20":{"body":207,"breadcrumbs":6,"title":4},"200":{"body":90,"breadcrumbs":7,"title":1},"201":{"body":95,"breadcrumbs":7,"title":1},"202":{"body":90,"breadcrumbs":7,"title":1},"203":{"body":102,"breadcrumbs":7,"title":1},"204":{"body":100,"breadcrumbs":7,"title":1},"205":{"body":54,"breadcrumbs":7,"title":2},"206":{"body":118,"breadcrumbs":6,"title":1},"207":{"body":169,"breadcrumbs":6,"title":1},"208":{"body":204,"breadcrumbs":6,"title":1},"209":{"body":281,"breadcrumbs":6,"title":1},"21":{"body":106,"breadcrumbs":6,"title":4},"210":{"body":64,"breadcrumbs":5,"title":2},"211":{"body":201,"breadcrumbs":7,"title":4},"212":{"body":183,"breadcrumbs":5,"title":2},"213":{"body":130,"breadcrumbs":7,"title":4},"214":{"body":7,"breadcrumbs":5,"title":2},"215":{"body":22,"breadcrumbs":4,"title":1},"216":{"body":31,"breadcrumbs":4,"title":1},"217":{"body":90,"breadcrumbs":5,"title":2},"218":{"body":49,"breadcrumbs":6,"title":3},"219":{"body":117,"breadcrumbs":5,"title":2},"22":{"body":59,"breadcrumbs":5,"title":3},"220":{"body":98,"breadcrumbs":3,"title":1},"221":{"body":121,"breadcrumbs":5,"title":3},"222":{"body":101,"breadcrumbs":4,"title":2},"223":{"body":137,"breadcrumbs":7,"title":5},"224":{"body":121,"breadcrumbs":4,"title":2},"225":{"body":0,"breadcrumbs":5,"title":3},"226":{"body":75,"breadcrumbs":4,"title":2},"227":{"body":116,"breadcrumbs":5,"title":3},"228":{"body":123,"breadcrumbs":4,"title":2},"229":{"body":52,"breadcrumbs":5,"title":3},"23":{"body":212,"breadcrumbs":5,"title":2},"230":{"body":65,"breadcrumbs":5,"title":3},"231":{"body":86,"breadcrumbs":6,"title":4},"232":{"body":313,"breadcrumbs":6,"title":2},"233":{"body":331,"breadcrumbs":6,"title":2},"234":{"body":266,"breadcrumbs":6,"title":2},"235":{"body":0,"breadcrumbs":6,"title":2},"236":{"body":73,"breadcrumbs":6,"title":2},"237":{"body":84,"breadcrumbs":8,"title":4},"238":{"body":143,"breadcrumbs":8,"title":4},"239":{"body":197,"breadcrumbs":7,"title":3},"24":{"body":55,"breadcrumbs":5,"title":2},"240":{"body":215,"breadcrumbs":7,"title":3},"241":{"body":30,"breadcrumbs":6,"title":2},"242":{"body":98,"breadcrumbs":7,"title":3},"243":{"body":148,"breadcrumbs":7,"title":3},"244":{"body":105,"breadcrumbs":7,"title":3},"245":{"body":559,"breadcrumbs":7,"title":3},"246":{"body":227,"breadcrumbs":6,"title":2},"247":{"body":180,"breadcrumbs":5,"title":1},"248":{"body":24,"breadcrumbs":5,"title":1},"249":{"body":24,"breadcrumbs":5,"title":1},"25":{"body":55,"breadcrumbs":6,"title":3},"250":{"body":117,"breadcrumbs":6,"title":2},"251":{"body":86,"breadcrumbs":6,"title":2},"252":{"body":114,"breadcrumbs":7,"title":3},"253":{"body":66,"breadcrumbs":6,"title":2},"254":{"body":155,"breadcrumbs":6,"title":2},"255":{"body":228,"breadcrumbs":7,"title":3},"256":{"body":147,"breadcrumbs":7,"title":3},"257":{"body":230,"breadcrumbs":6,"title":2},"258":{"body":418,"breadcrumbs":6,"title":2},"259":{"body":255,"breadcrumbs":6,"title":2},"26":{"body":8,"breadcrumbs":4,"title":1},"260":{"body":38,"breadcrumbs":8,"title":3},"261":{"body":54,"breadcrumbs":8,"title":3},"262":{"body":103,"breadcrumbs":6,"title":1},"263":{"body":85,"breadcrumbs":8,"title":3},"264":{"body":101,"breadcrumbs":9,"title":4},"265":{"body":123,"breadcrumbs":5,"title":2},"266":{"body":173,"breadcrumbs":6,"title":3},"267":{"body":105,"breadcrumbs":5,"title":2},"268":{"body":58,"breadcrumbs":8,"title":5},"269":{"body":41,"breadcrumbs":7,"title":4},"27":{"body":25,"breadcrumbs":4,"title":1},"270":{"body":81,"breadcrumbs":5,"title":2},"271":{"body":111,"breadcrumbs":4,"title":1},"272":{"body":105,"breadcrumbs":6,"title":3},"273":{"body":42,"breadcrumbs":7,"title":4},"274":{"body":117,"breadcrumbs":4,"title":2},"28":{"body":57,"breadcrumbs":4,"title":1},"29":{"body":48,"breadcrumbs":4,"title":1},"3":{"body":69,"breadcrumbs":3,"title":2},"30":{"body":24,"breadcrumbs":4,"title":1},"31":{"body":110,"breadcrumbs":4,"title":1},"32":{"body":57,"breadcrumbs":4,"title":2},"33":{"body":165,"breadcrumbs":6,"title":2},"34":{"body":79,"breadcrumbs":6,"title":2},"35":{"body":160,"breadcrumbs":6,"title":2},"36":{"body":53,"breadcrumbs":8,"title":2},"37":{"body":128,"breadcrumbs":7,"title":1},"38":{"body":225,"breadcrumbs":7,"title":1},"39":{"body":70,"breadcrumbs":7,"title":1},"4":{"body":78,"breadcrumbs":3,"title":2},"40":{"body":37,"breadcrumbs":7,"title":1},"41":{"body":96,"breadcrumbs":8,"title":2},"42":{"body":205,"breadcrumbs":9,"title":3},"43":{"body":90,"breadcrumbs":7,"title":1},"44":{"body":138,"breadcrumbs":8,"title":2},"45":{"body":274,"breadcrumbs":7,"title":1},"46":{"body":26,"breadcrumbs":8,"title":2},"47":{"body":69,"breadcrumbs":8,"title":2},"48":{"body":49,"breadcrumbs":9,"title":3},"49":{"body":93,"breadcrumbs":9,"title":3},"5":{"body":4,"breadcrumbs":2,"title":1},"50":{"body":53,"breadcrumbs":8,"title":2},"51":{"body":38,"breadcrumbs":8,"title":2},"52":{"body":118,"breadcrumbs":9,"title":3},"53":{"body":70,"breadcrumbs":8,"title":2},"54":{"body":75,"breadcrumbs":9,"title":3},"55":{"body":112,"breadcrumbs":8,"title":2},"56":{"body":50,"breadcrumbs":8,"title":2},"57":{"body":263,"breadcrumbs":8,"title":2},"58":{"body":221,"breadcrumbs":8,"title":2},"59":{"body":156,"breadcrumbs":8,"title":2},"6":{"body":148,"breadcrumbs":5,"title":3},"60":{"body":235,"breadcrumbs":8,"title":2},"61":{"body":56,"breadcrumbs":8,"title":2},"62":{"body":120,"breadcrumbs":10,"title":3},"63":{"body":68,"breadcrumbs":9,"title":2},"64":{"body":64,"breadcrumbs":9,"title":2},"65":{"body":391,"breadcrumbs":9,"title":2},"66":{"body":348,"breadcrumbs":10,"title":3},"67":{"body":13,"breadcrumbs":8,"title":2},"68":{"body":243,"breadcrumbs":9,"title":3},"69":{"body":59,"breadcrumbs":8,"title":3},"7":{"body":58,"breadcrumbs":4,"title":2},"70":{"body":79,"breadcrumbs":7,"title":2},"71":{"body":47,"breadcrumbs":7,"title":2},"72":{"body":100,"breadcrumbs":7,"title":2},"73":{"body":8,"breadcrumbs":7,"title":1},"74":{"body":148,"breadcrumbs":9,"title":3},"75":{"body":188,"breadcrumbs":10,"title":4},"76":{"body":7,"breadcrumbs":9,"title":3},"77":{"body":210,"breadcrumbs":11,"title":5},"78":{"body":9,"breadcrumbs":8,"title":2},"79":{"body":83,"breadcrumbs":7,"title":1},"8":{"body":150,"breadcrumbs":4,"title":2},"80":{"body":83,"breadcrumbs":7,"title":1},"81":{"body":125,"breadcrumbs":11,"title":5},"82":{"body":493,"breadcrumbs":8,"title":2},"83":{"body":595,"breadcrumbs":8,"title":2},"84":{"body":373,"breadcrumbs":8,"title":2},"85":{"body":124,"breadcrumbs":8,"title":2},"86":{"body":58,"breadcrumbs":8,"title":2},"87":{"body":187,"breadcrumbs":2,"title":1},"88":{"body":150,"breadcrumbs":3,"title":2},"89":{"body":103,"breadcrumbs":4,"title":3},"9":{"body":44,"breadcrumbs":5,"title":3},"90":{"body":48,"breadcrumbs":5,"title":3},"91":{"body":0,"breadcrumbs":4,"title":2},"92":{"body":27,"breadcrumbs":4,"title":2},"93":{"body":41,"breadcrumbs":4,"title":2},"94":{"body":67,"breadcrumbs":4,"title":2},"95":{"body":82,"breadcrumbs":4,"title":2},"96":{"body":85,"breadcrumbs":4,"title":2},"97":{"body":196,"breadcrumbs":4,"title":2},"98":{"body":200,"breadcrumbs":4,"title":2},"99":{"body":207,"breadcrumbs":5,"title":3}},"docs":{"0":{"body":"Miden VM is a zero-knowledge virtual machine written in Rust. For any program executed on Miden VM, a STARK-based proof of execution is automatically generated. This proof can then be used by anyone to verify that the program was executed correctly without the need for re-executing the program or even knowing the contents of the program.","breadcrumbs":"Introduction » Introduction","id":"0","title":"Introduction"},"1":{"body":"Miden VM is currently on release v0.7. In this release, most of the core features of the VM have been stabilized, and most of the STARK proof generation has been implemented. While we expect to keep making changes to the VM internals, the external interfaces should remain relatively stable, and we will do our best to minimize the amount of breaking changes going forward. At this point, Miden VM is good enough for experimentation, and even for real-world applications, but it is not yet ready for production use. The codebase has not been audited and contains known and unknown bugs and security flaws.","breadcrumbs":"Introduction » Status and features","id":"1","title":"Status and features"},"10":{"body":"The advice provider component is responsible for supplying nondeterministic inputs to the VM. These inputs only need to be known to the prover (i.e., they do not need to be shared with the verifier). The advice provider consists of three components: Advice stack which is a one-dimensional array of field elements. Being a stack, the VM can either push new elements onto the advice stack, or pop the elements from its top. Advice map which is a key-value map where keys are words and values are vectors of field elements. The VM can copy values from the advice map onto the advice stack as well as insert new values into the advice map (e.g., from a region of memory). Merkle store which contain structured data reducible to Merkle paths. Some examples of such structures are: Merkle tree, Sparse Merkle Tree, and a collection of Merkle paths. The VM can request Merkle paths from the Merkle store, as well as mutate it by updating or merging nodes contained in the store. The prover initializes the advice provider prior to executing a program, and from that point on the advice provider is manipulated solely by executing operations on the VM.","breadcrumbs":"Introduction » Overview » Nondeterministic inputs","id":"10","title":"Nondeterministic inputs"},"100":{"body":"Miden VM program decoder is responsible for ensuring that a program with a given MAST root is executed by the VM. As the VM executes a program, the decoder does the following: Decodes a sequence of field elements supplied by the prover into individual operation codes (or opcodes for short). Organizes the sequence of field elements into code blocks, and computes the hash of the program according to the methodology described here . At the end of program execution, the decoder outputs the computed program hash. This hash binds the sequence of opcodes executed by the VM to a program the prover claims to have executed. The verifier uses this hash during the STARK proof verification process to verify that the proof attests to a correct execution of a specific program (i.e., the prover didn't claim to execute program A while in fact executing a different program B). The sections below describe how Miden VM decoder works. Throughout these sections we make the following assumptions: An opcode requires 7 bits to represent. An immediate value requires one full field element to represent. A NOOP operation has a numeric value of 0, and thus, can be encoded as seven zeros. Executing a NOOP operation does not change the state of the VM, but it does advance operation counter, and may affect program hash.","breadcrumbs":"Design » Program decoder » Miden VM Program decoder","id":"100","title":"Miden VM Program decoder"},"101":{"body":"Miden VM programs consist of a set of code blocks organized into a binary tree. The leaves of the tree contain linear sequences of instructions, and control flow is defined by the internal nodes of the tree. Managing control flow in the VM is accomplished by executing control flow operations listed in the table below. Each of these operations require exactly one VM cycle to execute. Operation Description JOIN Initiates processing of a new Join block . SPLIT Initiates processing of a new Split block . LOOP Initiates processing of a new Loop block . REPEAT Initiates a new iteration of an executing loop. SPAN Initiates processing of a new Span block . RESPAN Initiates processing of a new operation batch within a span block. CALL Initiates processing of a new Call block . SYSCALL Initiates processing ofa new Syscall block . END Marks the end of a program block. HALT Marks the end of the entire program. Let's consider a simple program below: begin if.true else end\nend Block structure of this program is shown below. JOIN SPAN END SPLIT SPAN END SPAN END END\nEND Executing this program on the VM can result in one of two possible instruction sequences. First, if after operations in are executed the top of the stack is 1, the VM will execute the following: JOIN\nSPAN\n\nEND\nSPLIT\nSPAN\n\nEND\nEND\nEND\nHALT However, if after are executed, the top of the stack is 0, the VM will execute the following: JOIN\nSPAN\n\nEND\nSPLIT\nSPAN\n\nEND\nEND\nEND\nHALT The main task of the decoder is to output exactly the same program hash, regardless of which one of the two possible execution paths was taken. However, before we can describe how this is achieved, we need to give an overview of the overall decoder structure.","breadcrumbs":"Design » Program decoder » Program execution","id":"101","title":"Program execution"},"102":{"body":"The decoder is one of the more complex parts of the VM. It consists of the following components: Main execution trace consisting of 24 trace columns which contain the state of the decoder at a given cycle of a computation. Connection to the hash chiplet, which is used to offload hash computations from the decoder. 3 virtual tables (implemented via multi-set checks), which keep track of code blocks and operations executing on the VM.","breadcrumbs":"Design » Program decoder » Decoder structure","id":"102","title":"Decoder structure"},"103":{"body":"Decoder trace columns can be grouped into several logical sets of registers as illustrated below. decoder_trace.png These registers have the following meanings: Block address register a. This register contains address of the hasher for the current block (row index from the auxiliary hashing table). It also serves the role of unique block identifiers. This is convenient, because hasher addresses are guaranteed to be unique. Registers b0,...,b6, which encode opcodes for operation to be executed by the VM. Each of these registers can contain a single binary value (either 1 or 0). And together these values describe a single opcode. Hasher registers h0,...,h7. When control flow operations are executed, these registers are used to provide inputs for the current block's hash computation (e.g., for JOIN, SPLIT, LOOP, SPAN, CALL, SYSCALL operations) or to record the result of the hash computation (i.e., for END operation). However, when regular operations are executed, 2 of these registers are used to help with op group decoding, and the remaining 6 can be used to hold operation-specific helper variables. Register sp which contains a binary flag indicating whether the VM is currently executing instructions inside a span block. The flag is set to 1 when the VM executes non-control flow instructions, and is set to 0 otherwise. Register gc which keep track of the number of unprocessed operation groups in a given span block. Register ox which keeps track of a currently executing operation's index within its operation group. Operation batch flags c0,c1,c2 which indicate how many operation groups a given operation batch contains. These flags are set only for SPAN and RESPAN operations, and are set to 0's otherwise. Two additional registers (not shown) used primarily for constraint degree reduction.","breadcrumbs":"Design » Program decoder » Decoder trace","id":"103","title":"Decoder trace"},"104":{"body":"To compute hashes of program blocks, the decoder relies on the hash chiplet . Specifically, the decoder needs to perform two types of hashing operations: A simple 2-to-1 hash, where we provide a sequence of 8 field elements, and get back 4 field elements representing the result. Computing such a hash requires 8 rows in the hash chiplet. A sequential hash of n elements. Computing such a hash requires multiple absorption steps, and at each step 8 field elements are absorbed into the hasher. Thus, computing a sequential hash of n elements requires ⌈n/8⌉ rows in the hash chiplet. At the end, we also get 4 field elements representing the result. To make hashing requests to the hash chiplet and to read the results from it, we will need to divide out relevant values from the chiplets bus column bchip as described below. Simple 2-to-1 hash To initiate a 2-to-1 hash of 8 elements (v0,...,v7) we need to divide bchip by the following value: α0+α1⋅mbp+α2⋅r+i=0∑7(αi+8⋅vi) where: mbp is a label indicating beginning of a new permutation. Value of this label is computed based on hash chiplet selector flags according to the methodology described here . r is the address of the row at which the hashing begins. Some α values are skipped in the above (e.g., α3) because of the specifics of how auxiliary hasher table rows are reduced to field elements (described here ). For example, α3 is used as a coefficient for node index values during Merkle path computations in the hasher, and thus, is not relevant in this case. The α4 term is omitted when the number of items being hashed is a multiple of the rate width (8) because it is multiplied by 0 - the value of the first capacity register as determined by the hasher chiplet logic . To read the 4-element result (u0,...,u3), we need to divide bchip by the following value: α0+α1⋅mhout+α2⋅(r+7)+i=0∑3(αi+8⋅ui) where: mhout is a label indicating return of the hash value. Value of this label is computed based on hash chiplet selector flags according to the methodology described here . r is the address of the row at which the hashing began. Sequential hash To initiate a sequential hash of n elements (v0,...,vn−1), we need to divide bchip by the following value: α0+α1⋅mbp+α2⋅r+α4⋅n+i=0∑7(αi+8⋅vi) This also absorbs the first 8 elements of the sequence into the hasher state. Then, to absorb the next sequence of 8 elements (e.g., v8,...,v15), we need to divide bchip by the following value: α0+α1⋅mabp+α2⋅(r+7)+i=0∑7(αi+8⋅vi+8) Where mabp is a label indicating absorption of more elements into the hasher state. Value of this label is computed based on hash chiplet selector flags according to the methodology described here . We can keep absorbing elements into the hasher in the similar manner until all elements have been absorbed. Then, to read the result (e.g., u0,...,u3), we need to divide bchip by the following value: α0+α1⋅mhout+α2⋅(r+⌈n/8⌉⋅8−1)+i=0∑3(αi+8⋅ui) Thus, for example, if n=14, the result will of the hash will be available at hasher row r+15.","breadcrumbs":"Design » Program decoder » Program block hashing","id":"104","title":"Program block hashing"},"105":{"body":"In addition to the hash chiplet, control flow operations rely on 3 virtual tables: block stack table, block hash table, and op group table. These tables are virtual in that they don't require separate trace columns. Their state is described solely by running product columns: p1, p2, and p3. The tables are described in the following sections. Block stack table When the VM starts executing a new program block, it adds its block ID together with the ID of its parent block (and some additional info) to the block stack table. When a program block is fully executed, it is removed from the table. In this way, the table represents a stack of blocks which are currently executing on the VM. By the time program execution completes, block stack table must be empty. The table can be thought of as consisting of 3 columns as shown below: decoder_block_stack_table where: The first column (t0) contains the ID of the block. The second column (t1) contains the ID of the parent block. If the block has no parent (i.e., it is a root block of the program), parent ID is 0. The third column (t2) contains a binary value which is set to 1 is the block is a loop block, and to 0 otherwise. Running product column p1 is used to keep track of the state of the table. At any step of the computation, the current value of p1 defines which rows are present in the table. To reduce a row in the block stack table to a single value, we compute the following. row=α0+i=0∑3(αi+1⋅ti) Where α0,...,α3 are the random values provided by the verifier. Block hash table When the VM starts executing a new program block, it adds hashes of the block's children to the block hash table. And when the VM finishes executing a block, it removes its hash from the block hash table. Thus, by the time program execution completes, block hash table must be empty. The table can be thought of as consisting of 7 columns as shown below: block_hash_table where: The first column (t0) contains the ID of the block's parent. For program root, parent ID is 0. The next 4 columns (t1,...,t4) contain the hash of the block. The next column (t5) contains a binary value which is set to 1 if the block is the first child of a join block, and to 0 otherwise. The last column (t6) contains a binary value which is set to 1 if the block is a body of a loop, and to 0 otherwise. Running product column p2 is used to keep track of the state of the table. At any step of the computation, the current value of p2 defines which rows are present in the table. To reduce a row in the block hash table to a single value, we compute the following. row=α0+i=0∑6(αi+1⋅ti) Where α0,...,α7 are the random values provided by the verifier. Unlike other virtual tables, block hash table does not start out in an empty state. Specifically, it is initialized with a single row containing the hash of the program's root block. This needs to be done because the root block does not have a parent and, thus, otherwise it would never be added to the block hash table. Initialization of the block hash table is done by setting the initial value of p2 to the value of the row containing the hash of a program's root block. Op group table Op group table is used in decoding of span blocks, which are leaves in a program's MAST. As described here , a span block can contain one or more operation batches, each batch containing up to 8 operation groups. When the VM starts executing a new batch of operations, it adds all operation groups within a batch, except for the first one, to the op group table. Then, as the VM starts executing an operation group, it removes the group from the table. Thus, by the time all operation groups in a batch have been executed, the op group table must be empty. The table can be thought of as consisting of 3 columns as shown below: decoder_op_group_table The meaning of the columns is as follows: The first column (t0) contains operation batch ID. During the execution of the program, each operation batch is assigned a unique ID. The second column (t1) contains the position of the group in the span block (not just in the current batch). The position is 1-based and is counted from the end. Thus, for example, if a span block consists of a single batch with 4 groups, the position of the first group would be 4, the position of the second group would be 3 etc. (the reason for this is explained in this section). Note that the group with position 4 is not added to the table, because it is the first group in the batch, so the first row of the table will be for the group with position 3. The third column (t2) contains the actual values of operation groups (this could include up to 9 opcodes or a single immediate value). Permutation column p3 is used to keep track of the state of the table. At any step of the computation, the current value of p3 defines which rows are present in the table. To reduce a row in the op group table to a single value, we compute the following. row=α0+i=0∑2(αi+1⋅ti) Where α0,...,α3 are the random values provided by the verifier.","breadcrumbs":"Design » Program decoder » Control flow tables","id":"105","title":"Control flow tables"},"106":{"body":"In this section we describe high-level semantics of executing all control flow operations. The descriptions are not meant to be complete and omit some low-level details. However, they provide good intuition on how these operations work. JOIN operation Before a JOIN operation is executed by the VM, the prover populates h0,...,h7 registers with hashes of left and right children of the join program block as shown in the diagram below. decoder_join_operation In the above diagram, blk is the ID of the join block which is about to be executed. blk is also the address of the hasher row in the auxiliary hasher table. prnt is the ID of the block's parent. When the VM executes a JOIN operation, it does the following: Adds a tuple (blk, prnt, 0) to the block stack table. Adds tuples (blk, left_child_hash, 1, 0) and (blk, right_child_hash, 0, 0) to the block hash table. Initiates a 2-to-1 hash computation in the hash chiplet (as described here ) using blk as row address in the auxiliary hashing table and h0,...,h7 as input values. SPLIT operation Before a SPLIT operation is executed by the VM, the prover populates h0,...,h7 registers with hashes of true and false branches of the split program block as shown in the diagram below. decoder_split_operation In the above diagram, blk is the ID of the split block which is about to be executed. blk is also the address of the hasher row in the auxiliary hasher table. prnt is the ID of the block's parent. When the VM executes a SPLIT operation, it does the following: Adds a tuple (blk, prnt, 0) to the block stack table. Pops the stack and: a. If the popped value is 1, adds a tuple (blk, true_branch_hash, 0, 0) to the block hash table. b. If the popped value is 0, adds a tuple (blk, false_branch_hash, 0, 0) to the block hash table. c. If the popped value is neither 1 nor 0, the execution fails. Initiates a 2-to-1 hash computation in the hash chiplet (as described here ) using blk as row address in the auxiliary hashing table and h0,...,h7 as input values. LOOP operation Before a LOOP operation is executed by the VM, the prover populates h0,...,h3 registers with hash of the loop's body as shown in the diagram below. decoder_loop_operation In the above diagram, blk is the ID of the loop block which is about to be executed. blk is also the address of the hasher row in the auxiliary hasher table. prnt is the ID of the block's parent. When the VM executes a LOOP operation, it does the following: Pops the stack and: a. If the popped value is 1 adds a tuple (blk, prnt, 1) to the block stack table (the 1 indicates that the loop's body is expected to be executed). Then, adds a tuple (blk, loop_body_hash, 0, 1) to the block hash table. b. If the popped value is 0, adds (blk, prnt, 0) to the block stack table. In this case, nothing is added to the block hash table. c. If the popped value is neither 1 nor 0, the execution fails. Initiates a 2-to-1 hash computation in the hash chiplet (as described here ) using blk as row address in the auxiliary hashing table and h0,...,h3 as input values. SPAN operation Before a SPAN operation is executed by the VM, the prover populates h0,...,h7 registers with contents of the first operation batch of the span block as shown in the diagram below. The prover also sets the group count register gc to the total number of operation groups in the span block. decoder_span_block In the above diagram, blk is the ID of the span block which is about to be executed. blk is also the address of the hasher row in the auxiliary hasher table. prnt is the ID of the block's parent. g0_op0 is the first operation of the batch, and g_0' is the first operation group of the batch with the first operation removed. When the VM executes a SPAN operation, it does the following: Adds a tuple (blk, prnt, 0) to the block stack table. Adds groups of the operation batch, as specified by op batch flags (see here ) to the op group table. Initiates a sequential hash computation in the hash chiplet (as described here ) using blk as row address in the auxiliary hashing table and h0,...,h7 as input values. Sets the in_span register to 1. Decrements group_count register by 1. Sets the op_index register to 0. END operation Before an END operation is executed by the VM, the prover populates h0,...,h3 registers with the hash of the block which is about to end. The prover also sets values in h4 and h5 registers as follows: h4 is set to 1 if the block is a body of a loop block. We denote this value as f0. h5 is set to 1 if the block is a loop block. We denote this value as f1. decoder_end_operation In the above diagram, blk is the ID of the block which is about to finish executing. prnt is the ID of the block's parent. When the VM executes an END operation, it does the following: Removes a tuple (blk, prnt, f1) from the block stack table. Removes a tuple (prnt, current_block_hash, nxt, f0) from the block hash table, where nxt=0 if the next operation is either END or REPEAT, and 1 otherwise. Reads the hash result from the hash chiplet (as described here ) using blk + 7 as row address in the auxiliary hashing table. If h5=1 (i.e., we are exiting a loop block), pops the value off the top of the stack and verifies that the value is 0. Verifies that group_count register is set to 0. HALT operation Before a HALT operation is executed by the VM, the VM copies values in h0,...,h3 registers to the next row as illustrated in the diagram below: decoder_halt_operation In the above diagram, blk is the ID of the block which is about to finish executing. When the VM executes a HALT operation, it does the following: Verifies that block address register is set to 0. If we are not at the last row of the trace, verifies that the next operation is HALT. Copies values of h0,...,h3 registers to the next row. Populates all other decoder registers with 0's in the next row. REPEAT operation Before a REPEAT operation is executed by the VM, the VM copies values in registers h0,...,h4 to the next row as shown in the diagram below. decoder_repeat_operation In the above diagram, blk is the ID of the loop's body and prnt is the ID of the loop. When the VM executes a REPEAT operation, it does the following: Checks whether register h4 is set to 1. If it isn't (i.e., we are not in a loop), the execution fails. Pops the stack and if the popped value is 1, adds a tuple (prnt, loop_body_loop 0, 1) to the block hash table. If the popped value is not 1, the execution fails. The effect of the above is that the VM needs to execute the loop's body again to clear the block hash table. RESPAN operation Before a RESPAN operation is executed by the VM, the VM copies the ID of the current block blk and the number of remaining operation groups in the span to the next row, and sets the value of in_span column to 0. The prover also sets the value of h1 register for the next row to the ID of the current block's parent prnt as shown in the diagram below: decoder_respan_operation In the above diagram, g0_op0 is the first operation of the new operation batch, and g0' is the first operation group of the batch with g0_op0 operation removed. When the VM executes a RESPAN operation, it does the following: Increments block address by 8. Removes the tuple (blk, prnt, 0) from the block stack table. Adds the tuple (blk+8, prnt, 0) to the block stack table. Absorbs values in registers h0,...,h7 into the hasher state of the hash chiplet (as described here ). Sets the in_span register to 1. Adds groups of the operation batch, as specified by op batch flags (see here ) to the op group table using blk+8 as batch ID. The net result of the above is that we incremented the ID of the current block by 8 and added the next set of operation groups to the op group table.","breadcrumbs":"Design » Program decoder » Control flow operation semantics","id":"106","title":"Control flow operation semantics"},"107":{"body":"When decoding a program, we start at the root block of the program. We can compute the hash of the root block directly from hashes of its children. The prover provides hashes of the child blocks non-deterministically, and we use them to compute the program's hash (here we rely on the hash chiplet). We then verify the program hash via boundary constraints. Thus, if the prover provided valid hashes for the child blocks, we will get the expected program hash. Now, we need to verify that the VM executed the child blocks correctly. We do this recursively similar to what is described above: for each of the blocks, the prover provides hashes of its children non-deterministically and we verify that the hash has been computed correctly. We do this until we get to the leaf nodes (i.e., span blocks). Hashes of span blocks are computed sequentially from the instructions executed by the VM. The sections below illustrate how different types of code blocks are decoded by the VM.","breadcrumbs":"Design » Program decoder » Program decoding","id":"107","title":"Program decoding"},"108":{"body":"When decoding a join bock, the VM first executes a JOIN operation, then executes the first child block, followed by the second child block. Once the children of the join block are executed, the VM executes an END operation. This is illustrated in the diagram below. decoder_join_block_decoding As described previously, when the VM executes a JOIN operation, hashes of both children are added to the block hash table. These hashes are removed only when the END operations for the child blocks are executed. Thus, until both child blocks are executed, the block hash table is not cleared.","breadcrumbs":"Design » Program decoder » JOIN block decoding","id":"108","title":"JOIN block decoding"},"109":{"body":"When decoding a split block, the decoder pops an element off the top of the stack, and if the popped element is 1, executes the block corresponding to the true branch. If the popped element is 0, the decoder executes the block corresponding to the false branch. This is illustrated on the diagram below. decoder_split_block_decoding As described previously, when the VM executes a SPLIT operation, only the hash of the branch to be executed is added to the block hash table. Thus, until the child block corresponding to the required branch is executed, the block hash table is not cleared.","breadcrumbs":"Design » Program decoder » SPLIT block decoding","id":"109","title":"SPLIT block decoding"},"11":{"body":"Before you can use Miden VM, you'll need to make sure you have Rust installed . Miden VM v0.7 requires Rust version 1.67 or later. Miden VM consists of several crates, each of which exposes a small set of functionality. The most notable of these crates are: miden-processor , which can be used to execute Miden VM programs. miden-prover , which can be used to execute Miden VM programs and generate proofs of their execution. miden-verifier , which can be used to verify proofs of program execution generated by Miden VM prover. The above functionality is also exposed via the single miden-vm crate, which also provides a CLI interface for interacting with Miden VM.","breadcrumbs":"Introduction » Usage » Usage","id":"11","title":"Usage"},"110":{"body":"When decoding a loop bock, we need to consider two possible scenarios: When the top of the stack is 1, we need to enter the loop and execute loop body at least once. When the top of the stack is, 0 we need to skip the loop. In both cases, we need to pop an element off the top of the stack. Executing the loop If the top of the stack is 1, the VM executes a LOOP operation. This removes the top element from the stack and adds the hash of the loop's body to the block hash table. It also adds a row to the block stack table setting the is_loop value to 1. To clear the block hash table, the VM needs to execute the loop body (executing the END operation for the loop body block will remove the corresponding row from the block hash table). After loop body is executed, if the top of the stack is 1, the VM executes a REPEAT operation (executing REPEAT operation when the top of the stack is 0 will result in an error). This operation again adds the hash of the loop's body to the block hash table. Thus, the VM needs to execute the loop body again to clear the block hash table. This process is illustrated on the diagram below. decoder_loop_execution The above steps are repeated until the top of the stack becomes 0, at which point the VM executes the END operation. Since in the beginning we set is_loop column in the block stack table to 1, h6 column will be set to 1 when the END operation is executed. Thus, executing the END operation will also remove the top value from the stack. If the removed value is not 0, the operation will fail. Thus, the VM can exit the loop block only when the top of the stack is 0. Skipping the loop If the top of the stack is 0, the VM still executes the LOOP operation. But unlike in the case when we need to enter the loop, the VM sets is_loop flag to 0 in the block stack table, and does not add any rows to the block hash table. The last point means that the only possible operation to be executed after the LOOP operation is the END operation. This is illustrated in the diagram below. decoder_loop_skipping Moreover, since we've set the is_loop flag to 0, executing the END operation does not remove any items from the stack.","breadcrumbs":"Design » Program decoder » LOOP block decoding","id":"110","title":"LOOP block decoding"},"111":{"body":"As described here , a span block can contain one or more operation batches, each batch containing up to 8 operation groups. At the high level, decoding of a span block is done as follows: At the beginning of the block, we make a request to the hash chiplet which initiates the hasher, absorbs the first operation batch (8 field elements) into the hasher, and returns the row address of the hasher, which we use as the unique ID for the span block (see here ). We then add groups of the operation batch, as specified by op batch flags (but always skipping the first one) to the op group table. We then remove operation groups from the op group table in the FIFO order one by one, and decode them in the manner similar to the one described here . Once all operation groups in a batch have been decoded, we absorb the next batch into the hasher and repeat the process described above. Once all batches have been decoded, we return the hash of the span block from the hasher. Overall, three control flow operations are used when decoding a span block: SPAN operation is used to initialize a hasher and absorbs the first operation batch into it. RESPAN operation is used to absorb any additional batches in the span block. END operation is used to end the decoding of a span block and retrieve its hash from the hash chiplet. Operation group decoding As described here , an operation group is a sequence of operations which can be encoded into a single field element. For a field element of 64 bits, we can fit up to 9 operations into a group. We do this by concatenating binary representations of opcodes together with the first operation located in the least significant position. We can read opcodes from the group by simply subtracting them from the op group value and then dividing the result by 27. Once the value of the op group reaches 0, we know that all opcodes have been read. Graphically, this can be illustrated like so: decoder_operation_group_decoding Notice that despite their appearance, op bits is actually 7 separate registers, while op group is just a single register. We also need to make sure that at most 9 operations are executed as a part of a single group. For this purpose we use the op_index column. Values in this column start out at 0 for each operation group, and are incremented by 1 for each executed operation. To make sure that at most 9 operations can be executed in a group, the value of the op_index column is not allowed to exceed 8. Operation batch flags Operation batch flags are used to specify how many operation groups comprise in a given operation batch. For most batches, the number of groups will be equal to 8. However, for the last batch in a block (or for the first batch, if the block consists of only a single batch), the number of groups may be less than 8. Since processing of new batches starts only on SPAN and RESPAN operations, only for these operations the flags can be set to non-zero values. To simplify the constraint system, number of groups in a batch can be only one of the following values: 1, 2, 4, and 8. If number of groups in a batch does not match one of these values, the batch is simply padded with NOOP's (one NOOP per added group). Consider the diagram below. decoder_OPERATION_batch_flags In the above, the batch contains 3 operation groups. To bring the count up to 4, we consider the 4-th group (i.e., 0) to be a part of the batch. Since a numeric value for NOOP operation is 0, op group value of 0 can be interpreted as a single NOOP. Operation batch flags (denoted as c0,c1,c2), encode the number of groups and define how many groups are added to the op group table as follows: (1, 0, 0) - 8 groups. Groups in h1,...h7 are added to the op group table. (0, 1, 0) - 4 groups. Groups in h1,...h3 are added to the op group table (0, 0, 1) - 2 groups. Groups in h1 is added to the op group table. (0, 1, 1) - 1 group. Nothing is added to the op group table (0, 0, 0) - not a SPAN or RESPAN operation. Single-batch span The simplest example of a span block is a block with a single batch. This batch may contain up to 8 operation groups (e.g., g0,...,g7). Decoding of such a block is illustrated in the diagram below. decoder_single_batch_span Before the VM starts processing this span block, the prover populates registers h0,...,h7 with operation groups g0,...,g7. The prover also puts the total number of groups into the group count register gc. In this case, the total number of groups is 8. When the VM executes a SPAN operation, it does the following: Initiates hashing of elements g0,...,g7 using hash chiplet. The hasher address is used as the block ID blk, and it is inserted into addr register in the next row. Adds a tuple (blk, prnt, 0) to the block stack table. Sets the is_span register to 1 in the next row. Sets the op_index register to 0 in the next row. Decrements group_count register by 1. Sets op bits registers at the next step to the first operation of g0, and also copies g0 with the first operation removed (denoted as g0′) to the next row. Adds groups g1,...,g7 to the op group table. Thus, after the SPAN operation is executed, op group table looks as shown below. decoder_op_group_table_after_span_op Then, with every step the next operation is removed from g0, and by step 9, value of g0 is 0. Once this happens, the VM does the following: Decrements group_count register by 1. Sets op bits registers at the next step to the first operation of g1. Sets hasher register h0 to the value of g1 with the first operation removed (denoted as g1′). Removes row (blk, 7, g1) from the op group table. This row can be obtained by taking values from registers: addr, group_count, and h0′+i=0∑6(2i⋅bi′) for i∈[0,7), where h0′ and bi′ refer to values in the next row for the first hasher column and op_bits columns respectively. Note that we rely on the group_count column to construct the row to be removed from the op group table. Since group count is decremented from the total number of groups to 0, to remove groups from the op group table in correct order, we need to assign group position to groups in the op group table in the reverse order. For example, the first group to be removed should have position 7, the second group to be removed should have position 6 etc. Decoding of g1 is performed in the same manner as decoding of g0: with every subsequent step the next operation is removed from g1 until its value reaches 0, at which point, decoding of group g2 begins. The above steps are executed until value of group_count reaches 0. Once group_count reaches 0 and the last operation group g7 is executed, the VM executed the END operation. Semantics of the END operation are described here . Notice that by the time we get to the END operation, all rows are removed from the op group table. Multi-batch span A span block may contain an unlimited number of operation batches. As mentioned previously, to absorb a new batch into the hasher, the VM executes a RESPAN operation. The diagram below illustrates decoding of a span block consisting of two operation batches. decoder_multi_batch_span Decoding of such a block will look very similar to decoding of the single-span block described previously, but there also will be some differences. First, after the SPAN operation is executed, the op group table will look as follows: decoder_op_group_table_multi_span Notice that while the same groups (g1,...,g7) are added to the table, their positions now reflect the total number of groups in the span block. Second, executing a RESPAN operation increments hasher address by 8. This is done because absorbing additional 8 elements into the hasher state requires 8 more rows in the auxiliary hasher table. Incrementing value of addr register actually changes the ID of the span block (though, for a span block, it may be more appropriate to view values in this column as IDs of individual operation batches). This means that we also need to update the block stack table. Specifically, we need to remove row (blk, prnt, 0) from it, and replace it with row (blk + 8, prnt, 0). To perform this operation, the prover sets the value of h1 in the next row to prnt. Executing a RESPAN operation also adds groups g9,g10,g11 to the op group table, which now would look as follows: decoder_op_group_table_post_respan Then, the execution of the second batch proceeds in the manner similar to the first batch: we remove operations from the current op group, execute them, and when the value of the op group reaches 0, we start executing the next group in the batch. Thus, by the time we get to the END operation, the op group table should be empty. When executing the END operation, the hash of the span block will be read from hasher row at address addr + 7, which, in our example, will be equal to blk + 15. Handling immediate values Miden VM operations can carry immediate values. Currently, the only such operation is a PUSH operation. Since immediate values can be thought of as constants embedded into program code, we need to make sure that changing immediate values affects program hash. To achieve this, we treat immediate values in a manner similar to how we treat operation groups. Specifically, when computing hash of a span block, immediate values are absorbed into the hasher state in the same way as operation groups are. As mentioned previously, an immediate value is represented by a single field element, and thus, an immediate value takes place of a single operation group. The diagram below illustrates decoding of a span block with 9 operations one of which is a PUSH operation. decoder_decoding_span_block_with_push In the above, when the SPAN operation is executed, immediate value imm0 will be added to the op group table, which will look as follows: decoder_imm_vale_op_group_table Then, when the PUSH operation is executed, the VM will do the following: Decrement group_count by 1. Remove a row from the op group table equal to (addr, group_count, s0'), where s0′ is the value of the top of the stack at the next row (i.e., it is the value that is pushed onto the stack). Thus, after the PUSH operation is executed, the op group table is cleared, and group count decreases to 0 (which means that there are no more op groups to execute). Decoding of the rest of the op group proceeds as described in the previous sections.","breadcrumbs":"Design » Program decoder » SPAN block decoding","id":"111","title":"SPAN block decoding"},"112":{"body":"Let's run through an example of decoding a simple program shown previously: begin if.true else end\nend Translating this into code blocks with IDs assigned, we get the following: b0: JOIN b1: SPAN b1: END b2: SPLIT b3: SPAN b3: END b4: SPAN b4: END b2: END\nb0: END The root of the program is a join block b0. This block contains two children: a span bock b1 and a split block b2. In turn, the split block b2 contains two children: a span block b3 and a span block b4. When this program is executed on the VM, the following happens: Before the program starts executing, block hash table is initialized with a single row containing the hash of b0. Then, JOIN operation for b0 is executed. It adds hashes of b1 and b2 to the block hash table. It also adds an entry for b0 to the block stack table. States of both tables after this step are illustrated below. Then, span b1 is executed and a sequential hash of its operations is computed. Also, when SPAN operation for b1 is executed, an entry for b1 is added to the block stack table. At the end of b1 (when END is executed), entries for b1 are removed from both the block hash and block stack tables. Then, SPLIT operation for b2 is executed. It adds an entry for b2 to the block stack table. Also, depending on whether the top of the stack is 1 or 0, either hash of b3 or hash of b4 is added to the block hash table. Let's say the top of the stack is 1. Then, at this point, the block hash and block stack tables will look like in the second picture below. Then, span b3 is executed and a sequential hash of its instructions is computed. Also, when SPAN operation for b3 is executed, an entry for b3 is added to the block stack table. At the end of b3 (when END is executed), entries for b3 are removed from both the block hash and block stack tables. Then, END operation for b2 is executed. It removes the hash of b2 from the block hash table, and also removes the entry for b2 from the block stack table. The third picture below illustrates the states of block stack and block hash tables after this step. Then, END for b0 is executed, which removes entries for b0 from the block stack and block hash tables. At this point both tables are empty. Finally, a sequence of HALT operations is executed until the length of the trace reaches a power of two. States of block hash and block stack tables after step 2: decoder_state_block_hash_2 States of block hash and block stack tables after step 4: decoder_state_block_hash_4 States of block hash and block stack tables after step 6: decoder_state_block_hash_6","breadcrumbs":"Design » Program decoder » Program decoding example","id":"112","title":"Program decoding example"},"113":{"body":"In this section we describe AIR constraint for Miden VM program decoder. These constraints enforce that the execution trace generated by the prover when executing a particular program complies with the rules described in the previous section . To refer to decoder execution trace columns, we use the names shown on the diagram below (these are the same names as in the previous section). Additionally, we denote the register containing the value at the top of the stack as s0. air_decoder_columns We assume that the VM exposes a flag per operation which is set to 1 when the operation is executed, and to 0 otherwise. The notation for such flags is fopname. For example, when the VM executes a PUSH operation, flag fpush=1. All flags are mutually exclusive - i.e., when one flag is set to 1 all other flags are set to 0. The flags are computed based on values in op_bits columns. AIR constraints for the decoder involve operations listed in the table below. For each operation we also provide the degree of the corresponding flag and the effect that the operation has on the operand stack (however, in this section we do not cover the constraints needed to enforce the correct transition of the operand stack). Operation Flag Degree Effect on stack JOIN fjoin 5 Stack remains unchanged. SPLIT fsplit 5 Top stack element is dropped. LOOP floop 5 Top stack element is dropped. REPEAT frepeat 4 Top stack element is dropped. SPAN fspan 5 Stack remains unchanged. RESPAN frespan 4 Stack remains unchanged. CALL fcall 4 Top stack element is dropped. SYSCALL fsyscall 4 Top stack element is dropped. END fend 4 When exiting a loop block, top stack element is dropped; otherwise, the stack remains unchanged. HALT fhalt 4 Stack remains unchanged. PUSH fpush 4 An immediate value is pushed onto the stack. We also use the control flow flag fctrl exposed by the VM, which is set when any one of the above control flow operations is being executed. It has degree 3. As described previously , the general idea of the decoder is that the prove provides the program to the VM by populating some of cells in the trace non-deterministically. Values in these are then used to update virtual tables (represented via multiset checks) such as block hash table, block stack table etc. Transition constraints are used to enforce that the tables are updates correctly, and we also apply boundary constraints to enforce the correct initial and final states of these tables. One of these boundary constraints binds the execution trace to the hash of the program being executed. Thus, if the virtual tables were updated correctly and boundary constraints hold, we can be convinced that the prover executed the claimed program on the VM. In the sections below, we describe constraints according to their logical grouping. However, we start out with a set of general constraints which are applicable to multiple parts of the decoder.","breadcrumbs":"Design » Program decoder » Decoder constraints » Miden VM decoder AIR constraints","id":"113","title":"Miden VM decoder AIR constraints"},"114":{"body":"When SPLIT or LOOP operation is executed, the top of the operand stack must contain a binary value: (fsplit+floop)⋅(s02−s0)=0 | degree=7 When REPEAT operation is executed, the value at the top of the operand stack must be 1: frepeat⋅(1−s0)=0 | degree=5 Also, when REPEAT operation is executed, the value in h4 column (the is_loop_body flag), must be set to 1. This ensures that REPEAT operation can be executed only inside a loop: frepeat⋅(1−h4)=0 | degree=5 When RESPAN operation is executed, we need to make sure that the block ID is incremented by 8: frespan⋅(a′−a−8)=0 | degree=5 When END operation is executed and we are exiting a loop block (i.e., is_loop, value which is stored in h5, is 1), the value at the top of the operand stack must be 0: fend⋅h5⋅s0=0 | degree=6 Also, when END operation is executed and the next operation is REPEAT, values in h0,...,h4 (the hash of the current block and the is_loop_body flag) must be copied to the next row: fend⋅frepeat′⋅(hi′−hi)=0 for i∈[0,5) | degree=9 A HALT instruction can be followed only by another HALT instruction: fhalt⋅(1−fhalt′)=0 | degree=8 When a HALT operation is executed, block address column must be 0: fhalt⋅a=0 | degree=5 Values in op_bits columns must be binary (i.e., either 1 or 0): bi2−bi=0 for i∈[0,7) | degree=2 When the value in in_span column is set to 1, control flow operations cannot be executed on the VM, but when in_span flag is 0, only control flow operations can be executed on the VM: 1−sp−fctrl=0 | degree=3","breadcrumbs":"Design » Program decoder » Decoder constraints » General constraints","id":"114","title":"General constraints"},"115":{"body":"As described previously , when the VM starts executing a new block, it also initiates computation of the block's hash. There are two separate methodologies for computing block hashes. For join , split , and loop blocks, the hash is computed directly from the hashes of the block's children. The prover provides these child hashes non-deterministically by populating registers h0,...,h7. The hasher is initialized using the hash chiplet, and we use the address of the hasher as the block's ID. The result of the hash is available 7 rows down in the hasher table (i.e., at row with index equal to block ID plus 7). We read the result from the hasher table at the time the END operation is executed for a given block. For span blocks, the hash is computed by absorbing a linear sequence of instructions (organized into operation groups and batches) into the hasher and then returning the result. The prover provides operation batches non-deterministically by populating registers h0,...,h7. Similarly to other blocks, the hasher is initialized using the hash chiplet at the start of the block, and we use the address of the hasher as the ID of the first operation batch in the block. As we absorb additional operation batches into the hasher (by executing RESPAN operation), the batch address is incremented by 8. This moves the \"pointer\" into the hasher table 8 rows down with every new batch. We read the result from the hasher table at the time the END operation is executed for a given block.","breadcrumbs":"Design » Program decoder » Decoder constraints » Block hash computation constraints","id":"115","title":"Block hash computation constraints"},"116":{"body":"The decoder communicates with the hash chiplet via the chiplets bus . This works by dividing values of the multiset check column bchip by the values of operations providing inputs to or reading outputs from the hash chiplet. A constraint to enforce this would look as bchip′⋅u=bchip, where u is the value which defines the operation. In constructing value of u for decoder AIR constraints, we will use the following labels (see here for an explanation of how values for these labels are computed): mbp this label specifies that we are starting a new hash computation. mabp this label specifies that we are absorbing the next sequence of 8 elements into an ongoing hash computation. mhout this label specifies that we are reading the result of a hash computation. To simplify constraint description, we define the following variables: hinit=α0+α1⋅mbp+α2⋅a′+i=0∑7(αi+8⋅hi) In the above, hinit can be thought of as initiating a hasher with address a′ and absorbing 8 elements from the hasher state (h0,...,h7) into it. Control blocks are always padded to fill the hasher rate and as such the α4 (first capacity register) term is set to 0. habp=α0+α1⋅mabp+α2⋅a′+i=0∑7(αi+8⋅hi) It should be noted that a refers to a column in the decoder, as depicted. The addresses in this column are set using the address from the hasher chiplet for the corresponding hash initialization / absorption / return. In the case of habp the value of the address in column a in the current row of the decoder is set to equal the value of the address of the row in the hasher chiplet where the previous absorption (or initialization) occurred. a′ is the address of the next row of the decoder, which is set to equal the address in the hasher chiplet where the absorption referred to by the habp label is happening. hres=α0+α1⋅mhout+α2⋅(a+7)+i=0∑3(αi+8⋅hi) In the above, a represents the address value in the decoder which corresponds to the hasher chiplet address at which the hasher was initialized (or the last absorption took place). As such, a+7 corresponds to the hasher chiplet address at which the result is returned. fctrli=fjoin+fsplit+floop+fcall | degree=5 In the above, fctrli is set to 1 when a control flow operation that signifies the initialization of a control block is being executed on the VM. Otherwise, it is set to 0. An exception is made for the SYSCALL operation. Although it also signifies the initialization of a control block, it must additionally send a procedure access request to the kernel ROM chiplet via the chiplets bus. Therefore, it is excluded from this flag and its communication with the chiplets bus is handled separately. d=b=0∑6(bi⋅2i) In the above, d represents the opcode value of the opcode being executed on the virtual machine. It is calculated via a bitwise combination of the op bits. We leverage the opcode value to achieve domain separation when hashing control blocks. This is done by populating the second capacity register of the hasher with the value d via the α5 term when initializing the hasher. Using the above variables, we define operation values as described below. When a control block initializer operation (JOIN, SPLIT, LOOP, CALL, SYSCALL) is executed, a new hasher is initialized and the contents of h0,...,h7 are absorbed into the hasher. As mentioned above, the opcode value d is populated in the second capacity resister via the α5 term. uctrli=fctrli⋅(hinit+α5⋅d) | degree=6 As mentioned previously, the value sent by the SYSCALL operation is defined separately, since in addition to communicating with the hash chiplet it must also send a kernel procedure access request to the kernel ROM chiplet. This value of this kernel procedure request is described by kproc. kproc=α6+α7⋅opkrom+i=0∑3(αi+8⋅hi) In the above, opkrom is the unique operation label of the kernel procedure call operation. The values h0,h1,h2,h3 contain the root hash of the procedure being called, which is the procedure that must be requested from the kernel ROM chiplet. usyscall=fsyscall⋅(hinit+α5⋅d)⋅kproc | degree=7 The above value sends both the hash initialization request and the kernel procedure access request to the chiplets bus when the SYSCALL operation is executed. When SPAN operation is executed, a new hasher is initialized and contents of h0,...,h7 are absorbed into the hasher. The number of operation groups to be hashed is padded to a multiple of the rate width (8) and so the α4 is set to 0: uspan=fspan⋅hinit | degree=6 When RESPAN operation is executed, contents of h0,...,h7 (which contain the new operation batch) are absorbed into the hasher: urespan=frespan⋅habp | degree=5 When END operation is executed, the hash result is copied into registers h0,..,h3: uend=fend⋅hres | degree=5 Using the above definitions, we can describe the constraint for computing block hashes as follows: bchip′⋅(uctrli+usyscall+uspan+urespan+uend+1−(fctrli+fsyscall+fspan+frespan+fend))=bchip We need to add 1 and subtract the sum of the relevant operation flags to ensure that when none of the flags is set to 1, the above constraint reduces to bchip′=bchip. The degree of this constraint is 8.","breadcrumbs":"Design » Program decoder » Decoder constraints » Chiplets bus constraints","id":"116","title":"Chiplets bus constraints"},"117":{"body":"As described previously , block stack table keeps track of program blocks currently executing on the VM. Thus, whenever the VM starts executing a new block, an entry for this block is added to the block stack table. And when execution of a block completes, it is removed from the block stack table. Adding and removing entries to/from the block stack table is accomplished as follows: To add an entry, we multiply the value in column p1 by a value representing a tuple (blk_id, prnt_id, is_loop). A constraint to enforce this would look as p1′=p1⋅v, where v is the value representing the row to be added. To remove an entry, we divide the value in column p1 by a value representing a tuple (blk_id, prnt_id, is_loop). A constraint to enforce this would look as p1′⋅u=p1, where u is the value representing the row to be removed. Before describing the constraints for the block stack table, we first describe how we compute the values to be added and removed from the table for each operation. In the below, for block start operations (JOIN, SPLIT, LOOP, SPAN) a refers to the ID of the parent block, and a′ refers to the ID of the starting block. For END operation, the situation is reversed: a is the ID of the ending block, and a′ is the ID of the parent block. For RESPAN operation, a refers to the ID of the current operation batch, a′ refers to the ID of the next batch, and the parent ID for both batches is set by the prover non-deterministically in register h1. When JOIN operation is executed, row (a′,a,0) is added to the block stack table: vjoin=fjoin⋅(α0+α1⋅a′+α2⋅a) | degree=6 When SPLIT operation is executed, row (a′,a,0) added to the block stack table: vsplit=fsplit⋅(α0+α1⋅a′+α2⋅a) | degree=6 When LOOP operation is executed, row (a′,a,1) is added to the block stack table if the value at the top of the operand stack is 1, and row (a′,a,0) is added to the block stack table if the value at the top of the operand stack is 0: vloop=floop⋅(α0+α1⋅a′+α2⋅a+α3⋅s0) | degree=6 When SPAN operation is executed, row (a′,a,0) is added to the block stack table: vspan=fspan⋅(α0+α1⋅a′+α2⋅a) | degree=6 When RESPAN operation is executed, row (a,h1′,0) is removed from the block stack table, and row (a′,h1′,0) is added to the table. The prover sets the value of register h1 at the next row to the ID of the parent block: urespan=frespan⋅(α0+α1⋅a+α2⋅h1′) | degree=5vrespan=frespan⋅(α0+α1⋅a′+α2⋅h1′) | degree=5 When END operation is executed, row (a,a′,h5) is removed from the block span table. Register h5 contains the is_loop flag: uend=fend⋅(α0+α1⋅a+α2⋅a′+α3⋅h5) | degree=5 Using the above definitions, we can describe the constraint for updating the block stack table as follows: p1′⋅(uend+urespan+1−(fend+frespan))=p1⋅(vjoin+vsplit+vloop+vspan+vrespan+1−(fjoin+fsplit+floop+fspan+frespan)) We need to add 1 and subtract the sum of the relevant operation flags from each side to ensure that when none of the flags is set to 1, the above constraint reduces to p1′=p1. The degree of this constraint is 7. In addition to the above transition constraint, we also need to impose boundary constraints against the p1 column to make sure the first and the last value in the column is set to 1. This enforces that the block stack table starts and ends in an empty state.","breadcrumbs":"Design » Program decoder » Decoder constraints » Block stack table constraints","id":"117","title":"Block stack table constraints"},"118":{"body":"As described previously , when the VM starts executing a new program block, it adds hashes of the block's children to the block hash table. And when the VM finishes executing a block, it removes the block's hash from the block hash table. This means that the block hash tables gets updated when we execute JOIN, SPLIT, LOOP, REPEAT, and END operations (executing SPAN operation does not affect the block hash table because a span block has no children). Adding and removing entries to/from the block hash table is accomplished as follows: To add an entry, we multiply the value in column p2 by a value representing a tuple (prnt_id, block_hash, is_first_child, is_loop_body). A constraint to enforce this would look as p2′=p2⋅v, where v is the value representing the row to be added. To remove an entry, we divide the value in column p2 by a value representing a tuple (prnt_id, block_hash, is_first_child, is_loop_body). A constraint to enforce this would look as p2′⋅u=p2, where u is the value representing the row to be removed. To simplify constraint descriptions, we define values representing left and right children of a block as follows: ch1=α0+α1⋅a′+i=0∑3(αi+2⋅hi) | degree=1ch2=α0+α1⋅a′+i=0∑3(αi+2⋅hi+4) | degree=1 Graphically, this looks like so: air_decoder_left_right_child In a similar manner, we define a value representing the result of hash computation as follows: bh=α0+α1⋅a+i=0∑3(αi+2⋅hi)+α7⋅h4 | degree=1 Note that in the above we use a (block address from the current row) rather than a′ (block address from the next row) as we did for for values of ch1 and ch2. Also, note that we are not adding a flag indicating whether the block is the first child of a join block (i.e., α6 term is missing). It will be added later on. Using the above variables, we define row values to be added to and removed from the block hash table as follows. When JOIN operation is executed, hashes of both child nodes are added to the block hash table. We add α6 term to the first child value to differentiate it from the second child (i.e., this sets is_first_child to 1): vjoin=fjoin⋅(ch1+α6)⋅ch2 | degree=7 When SPLIT operation is executed and the top of the stack is 1, hash of the true branch is added to the block hash table, but when the top of the stack is 0, hash of the false branch is added to the block hash table: vsplit=fsplit⋅(s0⋅ch1+(1−s0)⋅ch2) | degree=7 When LOOP operation is executed and the top of the stack is 1, hash of loop body is added to the block hash table. We add α7 term to indicate that the child is a body of a loop. The below also means that if the top of the stack is 0, nothing is added to the block hash table as the expression evaluates to 0: vloop=floop⋅s0⋅(ch1+α7) | degree=7 When REPEAT operation is executed, hash of loop body is added to the block hash table. We add α7 term to indicate that the child is a body of a loop: vrepeat=frepeat⋅(ch1+α7) | degree=5 When END operation is executed, hash of the completed block is removed from the block hash table. However, we also need to differentiate between removing the first and the second child of a join block. We do this by looking at the next operation. Specifically, if the next operation is neither END nor REPEAT we know that another block is about to be executed, and thus, we have just finished executing the first child of a join block. Thus, if the next operation is neither END nor REPEAT we need to set the term for α6 coefficient to 1 as shown below: uend=fend⋅(bh+α6⋅(1−(fend′+frepeat′))) | degree=8 Using the above definitions, we can describe the constraint for updating the block hash table as follows: p2′⋅(uend+1−fend)=p2⋅(vjoin+vsplit+vloop+vrepeat+1−(fjoin+fsplit+floop+frepeat)) We need to add 1 and subtract the sum of the relevant operation flags from each side to ensure that when none of the flags is set to 1, the above constraint reduces to p2′=p2. The degree of this constraint is 9. In addition to the above transition constraint, we also need to set the following boundary constraints against the p2 column: The first value in the column represents a row for the entire program. Specifically, the row tuple would be (0, program_hash, 0, 0). This row should be removed from the table when the last END operation is executed. The last value in the column is 1 - i.e., the block hash table is empty.","breadcrumbs":"Design » Program decoder » Decoder constraints » Block hash table constraints","id":"118","title":"Block hash table constraints"},"119":{"body":"Span block constraints ensure proper decoding of span blocks. In addition to the block stack table constraints and block hash table constraints described previously, decoding of span blocks requires constraints described below.","breadcrumbs":"Design » Program decoder » Decoder constraints » Span block","id":"119","title":"Span block"},"12":{"body":"","breadcrumbs":"Introduction » Usage » CLI interface","id":"12","title":"CLI interface"},"120":{"body":"The in_span column (denoted as sp) is used to identify rows which execute non-control flow operations. The values in this column are set as follows: Executing a SPAN operation sets the value of in_span column to 1. The value remains 1 until the END operation is executed. If RESPAN operation is executed between SPAN and END operations, in the row at which RESPAN operation is executed in_span is set to 0. It is then reset to 1 in the following row. In all other cases, value in the in_span column should be 0. The picture below illustrates the above rules. air_decoder_in_spans_column_constraint To enforce the above rules we need the following constraints. When executing SPAN or RESPAN operation, the next value in sp column must be set to 1: (fspan+frespan)⋅(1−sp′)=0 | degree=6 When the next operation is END or RESPAN, the next value in sp column must be set 0. (fend′+frespan′)⋅sp′=0 | degree=5 In all other cases, the value in sp column must be copied over to the next row: (1−fspan−frespan−fend′−frespan′)⋅(sp′−sp)=0 | degree=6 Additionally, we will need to impose a boundary constraint which specifies that the first value in sp=0. Note, however, that we do not need to impose a constraint ensuring that values in sp are binary - this will follow naturally from the above constraints. Also, note that the combination of the above constraints makes it impossible to execute END or RESPAN operations right after SPAN or RESPAN operations.","breadcrumbs":"Design » Program decoder » Decoder constraints » In-span column constraints","id":"120","title":"In-span column constraints"},"121":{"body":"When we are inside a span block, values in block address columns (denoted as a) must remain the same. This can be enforced with the following constraint: sp⋅(a′−a)=0 | degree=2 Notice that this constraint does not apply when we execute any of the control flow operations. For such operations, the prover sets the value of the a column non-deterministically, except for the RESPAN operation. For the RESPAN operation the value in the a column is incremented by 8, which is enforced by a constraint described previously. Notice also that this constraint implies that when the next operation is the END operation, the value in the a column must also be copied over to the next row. This is exactly the behavior we want to enforce so that when the END operation is executed, the block address is set to the address of the current span batch.","breadcrumbs":"Design » Program decoder » Decoder constraints » Block address constraints","id":"121","title":"Block address constraints"},"122":{"body":"The group_count column (denoted as gc) is used to keep track of the number of operation groups which remains to be executed in a span block. In the beginning of a span block (i.e., when SPAN operation is executed), the prover sets the value of gc non-deterministically. This value is subsequently decremented according to the rules described below. By the time we exit the span block (i.e., when END operation is executed), the value in gc must be 0. The rules for decrementing values in the gc column are as follows: The count cannot be decremented by more than 1 in a single row. When an operation group is fully executed (which happens when h0=0 inside a span block), the count is decremented by 1. When SPAN, RESPAN, or PUSH operations are executed, the count is decremented by 1. Note that these rules imply that PUSH operation cannot be the last operation in an operation group (otherwise the count would have to be decremented by 2). To simplify the description of the constraints, we will define the following variable: Δgc=gc−gc′ Using this variable, we can describe the constraints against the gc column as follows: Inside a span block, group count can either stay the same or decrease by one: sp⋅Δgc⋅(Δgc−1)=0 | degree=3 When group count is decremented inside a span block, either h0 must be 0 (we consumed all operations in a group) or we must be executing PUSH operation: sp⋅Δgc⋅(1−fpush)⋅h0=0 | degree=7 Notice that the above constraint does not preclude fpush=1 and h0=0 from being true at the same time. If this happens, op group decoding constraints (described here ) will force that the operation following the PUSH operation is a NOOP. When executing a SPAN, a RESPAN, or a PUSH operation, group count must be decremented by 1: (fspan+frespan+fpush)⋅(Δgc−1)=0 | degree=6 If the next operation is either an END or a RESPAN, group count must remain the same: Δgc⋅(fend′+frespan′)=0 | degree=5 When an END operation is executed, group count must be 0: fend⋅gc=0 | degree=5","breadcrumbs":"Design » Program decoder » Decoder constraints » Group count constraints","id":"122","title":"Group count constraints"},"123":{"body":"Inside a span block, register h0 is used to keep track of operations to be executed in the current operation group. The value of this register is set by the prover non-deterministically at the time when the prover executes a SPAN or a RESPAN operation, or when processing of a new operation group within a batch starts. The picture below illustrates this. air_decoder_op_group_constraint In the above: The prover sets the value of h0 non-deterministically at row 0. The value is set to an operation group containing operations op0 through op8. As we start executing the group, at every row we \"remove\" the least significant operation from the group. This can be done by subtracting opcode of the operation from the group, and then dividing the result by 27. By row 9 the group is fully executed. This decrements the group count and set op_index to 0 (constraints against op_index column are described in the next section). At row 10 we start executing the next group with operations op9 through op11. In this case, the prover populates h0 with the group having its first operation (op9) already removed, and sets the op_bits registers to the value encoding op9. By row 12 this group is also fully executed. To simplify the description of the constraints, we define the following variables: op=i=0∑6(bi⋅2i)fsgc=sp⋅sp′⋅(1−Δgc) op is just an opcode value implied by the values in op_bits registers. fsgc is a flag which is set to 1 when the group count within a span block does not change. We multiply it by sp′ to make sure the flag is 0 when we are about to end decoding of an operation batch. Note that fsgc flag is mutually exclusive with fspan, frespan, and fpush flags as these three operations decrement the group count. Using these variables, we can describe operation group decoding constraints as follows: When a SPAN, a RESPAN, or a PUSH operation is executed or when the group count does not change, the value in h0 should be decremented by the value of the opcode in the next row. (fspan+frespan+fpush+fsgc)⋅(h0−h0′⋅27−op′)=0 | degree=6 Notice that when the group count does change, and we are not executing fspan, frespan, or fpush operations, no constraints are placed against h0, and thus, the prover can populate this register non-deterministically. When we are in a span block and the next operation is END or RESPAN, the current value in h0 column must be 0. sp⋅(fend′+frespan′)⋅h0=0 | degree=6","breadcrumbs":"Design » Program decoder » Decoder constraints » Op group decoding constraints","id":"123","title":"Op group decoding constraints"},"124":{"body":"The op_index column (denoted as ox) tracks index of an operation within its operation group. It is used to ensure that the number of operations executed per group never exceeds 9. The index is zero-based, and thus, the possible set of values for ox is between 0 and 8 (both inclusive). To simplify the description of the constraints, we will define the following variables: ng=Δgc−fpushΔox=ox′−ox The value of ng is set to 1 when we are about to start executing a new operation group (i.e., group count is decremented but we did not execute a PUSH operation). Using these variables, we can describe the constraints against the ox column as follows. When executing SPAN or RESPAN operations the next value of op_index must be set to 0: (fspan+frespan)⋅ox′=0 | degree=6 When starting a new operation group inside a span block, the next value of op_index must be set to 0. Note that we multiply by sp to exclude the cases when the group count is decremented because of SPAN or RESPAN operations: sp⋅ng⋅ox′=0 | degree=6 When inside a span block but not starting a new operation group, op_index must be incremented by 1. Note that we multiply by sp′ to exclude the cases when we are about to exit processing of an operation batch (i.e., the next operation is either END or RESPAN): sp⋅sp′⋅(1−ng)⋅(Δox−1)=0 | degree=7 Values of op_index must be in the range [0,8]. i=0∏8(ox−i)=0 | degree=9","breadcrumbs":"Design » Program decoder » Decoder constraints » Op index constraints","id":"124","title":"Op index constraints"},"125":{"body":"Operation batch flag columns (denoted bc0, bc1, and bc2) are used to specify how many operation groups are present in an operation batch. This is relevant for the last batch in a span block (or the first batch if there is only one batch in a block) as all other batches should be completely full (i.e., contain 8 operation groups). These columns are used to define the following 4 flags: fg8=bc0: there are 8 operation groups in the batch. fg4=(1−bc0)⋅bc1⋅bc2: there are 4 operation groups in the batch. fg2=(1−bc0)⋅(1−bc1)⋅bc2: there are 2 operation groups in the batch. fg1=(1−bc0)⋅bc1⋅(1−bc2): there is only 1 operation groups in the batch. Notice that the degree of fg8 is 1, while the degree of the remaining flags is 3. These flags can be set to 1 only when we are executing SPAN or RESPAN operations as this is when the VM starts processing new operation batches. Also, for a given flag we need to ensure that only the specified number of operations groups are present in a batch. This can be done with the following constraints. All batch flags must be binary: bci2−bci=0 for i∈[0,3) | degree=2 When SPAN or RESPAN operations is executed, one of the batch flags must be set to 1. (fspan+frespan)−(fg1+fg2+fg4+fg8)=0 | degree=5 When we have at most 4 groups in a batch, registers h4,...,h7 should be set to 0's. (fg1+fg2+fg4)⋅hi=0 for i∈[4,8) | degree=4 When we have at most 2 groups in a batch, registers h2 and h3 should also be set to 0's. (fg1+fg2)⋅hi=0 for i∈2,3 | degree=4 When we have at most 1 groups in a batch, register h1 should also be set to 0. fg1⋅h1=0 | degree=4","breadcrumbs":"Design » Program decoder » Decoder constraints » Op batch flags constraints","id":"125","title":"Op batch flags constraints"},"126":{"body":"Op group table is used to ensure that all operation groups in a given batch are consumed before a new batch is started (i.e., via a RESPAN operation) or the execution of a span block is complete (i.e., via an END operation). The op group table is updated according to the following rules: When a new operation batch is started, we add groups from this batch to the table. To add a group to the table, we multiply the value in column p3 by a value representing a tuple (batch_id, group_pos, group). A constraint to enforce this would look as p3′=p3⋅v, where v is the value representing the row to be added. Depending on the batch, we may need to add multiple groups to the table (i.e., p3′=p3⋅v1⋅v2⋅v3...). Flags fg1, fg2, fg4, and fg8 are used to define how many groups to add. When a new operation group starts executing or when an immediate value is consumed, we remove the corresponding group from the table. To do this, we divide the value in column p3 by a value representing a tuple (batch_id, group_pos, group). A constraint to enforce this would look as p3′⋅u=p3, where u is the value representing the row to be removed. To simplify constraint descriptions, we first define variables representing the rows to be added to and removed from the op group table. When a SPAN or a RESPAN operation is executed, we compute the values of the rows to be added to the op group table as follows: vi=α0+α1⋅a′+α2⋅(gc−i)+α3⋅hi | degree=1 Where i∈[1,8). Thus, v1 defines row value for group in h1, v2 defines row value for group h2 etc. Note that batch address column comes from the next row of the block address column (a′). We compute the value of the row to be removed from the op group table as follows: u=α0+α1⋅a+α2⋅gc+α3⋅((h0′⋅27+op′)⋅(1−fpush)+s0′⋅fpush) | degree=5 In the above, the value of the group is computed as (h0′⋅27+op′)⋅(1−fpush)+s0′⋅fpush. This basically says that when we execute a PUSH operation we need to remove the immediate value from the table. This value is at the top of the stack (column s0) in the next row. However, when we are not executing a PUSH operation, the value to be removed is an op group value which is a combination of values in h0 and op_bits columns (also in the next row). Note also that value for batch address comes from the current value in the block address column (a), and the group position comes from the current value of the group count column (gc). We also define a flag which is set to 1 when a group needs to be removed from the op group table. fdg=sp⋅Δgc The above says that we remove groups from the op group table whenever group count is decremented. We multiply by sp to exclude the cases when the group count is decremented due to SPAN or RESPAN operations. Using the above variables together with flags fg2, fg4, fg8 defined in the previous section, we describe the constraint for updating op group table as follows (note that we do not use fg1 flag as when a batch consists of a single group, nothing is added to the op group table): p3′⋅(fdg⋅u+1−fdg)=p3⋅(fg2⋅v1+fg4⋅i=1∏3vi+fg8⋅i=1∏7vi−1+(fspan+frespan)) The above constraint specifies that: When SPAN or RESPAN operations are executed, we add between 1 and 7 groups to the op group table. When group count is decremented inside a span block, we remove a group from the op group table. The degree of this constraint is 9. In addition to the above transition constraint, we also need to impose boundary constraints against the p3 column to make sure the first and the last value in the column is set to 1. This enforces that the op group table table starts and ends in an empty state.","breadcrumbs":"Design » Program decoder » Decoder constraints » Op group table constraints","id":"126","title":"Op group table constraints"},"127":{"body":"Miden VM is a stack machine. The stack is a push-down stack of practically unlimited depth (in practical terms, the depth will never exceed 232), but only the top 16 items are directly accessible to the VM. Items on the stack are elements in a prime field with modulus 264−232+1. To keep the constraint system for the stack manageable, we impose the following rules: All operations executed on the VM can shift the stack by at most one item. That is, the end result of an operation must be that the stack shrinks by one item, grows by one item, or the number of items on the stack stays the same. Stack depth must always be greater than or equal to 16. At the start of program execution, the stack is initialized with exactly 16 input values, all of which could be 0's. By the end of program execution, exactly 16 items must remain on the stack (again, all of them could be 0's). These items comprise the output of the program. To ensure that managing stack depth does not impose significant burden, we adopt the following rule: When the stack depth is 16, removing additional items from the stack does not change its depth. To keep the depth at 16, 0's are inserted into the deep end of the stack for each removed item.","breadcrumbs":"Design » Operand stack » Operand stack","id":"127","title":"Operand stack"},"128":{"body":"The VM allocates 19 trace columns for the stack. The layout of the columns is illustrated below. The meaning of the above columns is as follows: s0...s15 are the columns representing the top 16 slots of the stack. Column b0 contains the number of items on the stack (i.e., the stack depth). In the above picture, there are 16 items on the stacks, so b0=16. Column b1 contains an address of a row in the \"overflow table\" in which we'll store the data that doesn't fit into the top 16 slots. When b1=0, it means that all stack data fits into the top 16 slots of the stack. Helper column h0 is used to ensure that stack depth does not drop below 16. Values in this column are set by the prover non-deterministically to b0−161 when b0=16, and to any other value otherwise.","breadcrumbs":"Design » Operand stack » Stack representation","id":"128","title":"Stack representation"},"129":{"body":"To keep track of the data which doesn't fit into the top 16 stack slots, we'll use an overflow table. This will be a virtual table . To represent this table, we'll use a single auxiliary column p1. The table itself can be thought of as having 3 columns as illustrated below. The meaning of the columns is as follows: Column t0 contains row address. Every address in the table must be unique. Column t1 contains the value that overflowed the stack. Column t2 contains the address of the row containing the value that overflowed the stack right before the value in the current row. For example, in the picture above, first value a overflowed the stack, then b overflowed the stack, and then value c overflowed the stack. Thus, row with value b points back to the row with value a, and row with value c points back to the row with value b. To reduce a table row to a single value, we'll compute a randomized product of column values as follows: ri=α0+α1⋅t0,i+α2⋅t1,i+α3⋅t2,i Then, when row i is added to the table, we'll update the value in the p1 column like so: p1′=p1⋅ri Analogously, when row i is removed from the table, we'll update the value in column p1 like so: p1′=rip1 The initial value of p1 is set to 1. Thus, if by the time Miden VM finishes executing a program the table is empty (we added and then removed exactly the same set of rows), p1 will also be equal to 1. There are a couple of other rules we'll need to enforce: We can delete a row only after the row has been inserted into the table. We can't insert a row with the same address twice into the table (even if the row was inserted and then deleted). How these are enforced will be described a bit later.","breadcrumbs":"Design » Operand stack » Overflow table","id":"129","title":"Overflow table"},"13":{"body":"To compile Miden VM into a binary, we have a Makefile with the following tasks: make exec This will place an optimized, multi-threaded miden executable into the ./target/optimized directory. It is equivalent to executing: cargo build --profile optimized --features concurrent,executable If you would like to enable single-threaded mode, you can compile Miden VM using the following command: cargo build --profile optimized --features executable For a faster build, you can compile with less optimizations, replacing --profile optimized by --release. Example: cargo build --release --features concurrent,executable In this case, the miden executable will be placed in the ./target/release directory.","breadcrumbs":"Introduction » Usage » Compiling Miden VM","id":"13","title":"Compiling Miden VM"},"130":{"body":"If an operation adds data to the stack, we say that the operation caused a right shift. For example, PUSH and DUP operations cause a right shift. Graphically, this looks like so: Here, we pushed value v17 onto the stack. All other values on the stack are shifted by one slot to the right and the stack depth increases by 1. There is not enough space at the top of the stack for all 17 values, thus, v1 needs to be moved to the overflow table. To do this, we need to rely on another column: k0. This is a system column which keeps track of the current VM cycle. The value in this column is simply incremented by 1 with every step. The row we want to add to the overflow table is defined by tuple (clk,v1,0), and after it is added, the table would look like so: The reason we use VM clock cycle as row address is that the clock cycle is guaranteed to be unique, and thus, the same row can not be added to the table twice. Let's push another item onto the stack: Again, as we push v18 onto the stack, all items on the stack are shifted to the right, and now v2 needs to be moved to the overflow table. The tuple we want to insert into the table now is (clk+1,v2,clk). After the operation, the overflow table will look like so: Notice that t2 for row which contains value v2 points back to the row with address clk. Overall, during a right shift we do the following: Increment stack depth by 1. Shift stack columns s0,...,s14 right by 1 slot. Add a row to the overflow table described by tuple (k0,s15,b0). Set the next value of b1 to the current value of k0. Also, as mentioned previously, the prover sets values in h0 non-deterministically to b0−161.","breadcrumbs":"Design » Operand stack » Right shift","id":"130","title":"Right shift"},"131":{"body":"If an operation removes an item from the stack, we say that the operation caused a left shift. For example, a DROP operation causes a left shift. Assuming the stack is in the state we left it at the end of the previous section, graphically, this looks like so: Overall, during the left shift we do the following: When stack depth is greater than 16: Decrement stack depth by 1. Shift stack columns s1,...,s15 left by 1 slot. Remove a row from the overflow table with t0 equal to the current value of b1. Set the next value of s15 to the value in t1 of the removed overflow table row. Set the next value of b1 to the value in t2 of the removed overflow table row. When the stack depth is equal to 16: Keep the stack depth the same. Shift stack columns s1,...,s15 left by 1 slot. Set the value of s15 to 0. Set the value to h0 to 0 (or any other value). If the stack depth becomes (or remains) 16, the prover can set h0 to any value (e.g., 0). But if the depth is greater than 16 the prover sets h0 to b0−161.","breadcrumbs":"Design » Operand stack » Left shift","id":"131","title":"Left shift"},"132":{"body":"To simplify constraint descriptions, we'll assume that the VM exposes two binary flag values described below. Flag Degree Description fshr 6 When this flag is set to 1, the instruction executing on the VM is performing a \"right shift\". fshl 5 When this flag is set to 1, the instruction executing on the VM is performing a \"left shift\". These flags are mutually exclusive. That is, if fshl=1, then fshr=0 and vice versa. However, both flags can be set to 0 simultaneously. This happens when the executed instruction does not shift the stack. How these flags are computed is described here .","breadcrumbs":"Design » Operand stack » AIR Constraints","id":"132","title":"AIR Constraints"},"133":{"body":"Additionally, we'll define a flag to indicate whether the overflow table contains values. This flag will be set to 0 when the overflow table is empty, and to 1 otherwise (i.e., when stack depth >16). This flag can be computed as follows: fov=(b0−16)⋅h0 | degree=2 To ensure that this flag is set correctly, we need to impose the following constraint: (1−fov)⋅(b0−16)=0 | degree=3 The above constraint can be satisfied only when either of the following holds: b0=16, in which case fov evaluates to 0, regardless of the value of h0. fov=1, in which case b0 cannot be equal to 16 (and h0 must be set to b0−161).","breadcrumbs":"Design » Operand stack » Stack overflow flag","id":"133","title":"Stack overflow flag"},"134":{"body":"To make sure stack depth column b0 is updated correctly, we need to impose the following constraints: Condition Constraint__ Description fshr=1 b0′=b0+1 When the stack is shifted to the right, stack depth should be incremented by 1. fshl=1 fov=1 b0′=b0−1 When the stack is shifted to the left and the overflow table is not empty, stack depth should be decremented by 1. otherwise b0′=b0 In all other cases, stack depth should not change. We can combine the above constraints into a single expression as follows: b0′−b0+fshl⋅fov−fshr=0 | degree=7","breadcrumbs":"Design » Operand stack » Stack depth constraints","id":"134","title":"Stack depth constraints"},"135":{"body":"When the stack is shifted to the right, a tuple (k0,s15,b1) should be added to the overflow table. We will denote value of the row to be added to the table as follows: v=α0+α1⋅k0+α2⋅s15+α3⋅b1 When the stack is shifted to the left, a tuple (b1,s15′,b1′) should be removed from the overflow table. We will denote value of the row to be removed from the table as follows. u=α0+α1⋅b1+α2⋅s15′+α3⋅b1′ Using the above variables, we can ensure that right and left shifts update the overflow table correctly by enforcing the following constraint: p1′⋅(u⋅fshl⋅fov+1−fshl⋅fov)=p1⋅(v⋅fshr+1−fshr) | degree=9 The above constraint reduces to the following under various flag conditions: Condition Applied constraint fshl=1, fshr=0, fov=0 p1′=p1 fshl=1, fshr=0, fov=1 p1′⋅u=p1 fshl=0, fshr=1, fov=1 or 0 p1′=p1⋅v fshl=0, fshr=0, fov=1 or 0 p1′=p1 Notice that in the case of the left shift, the constraint forces the prover to set the next values of s15 and b1 to values t1 and t2 of the row removed from the overflow table. In case of a right shift, we also need to make sure that the next value of b1 is set to the current value of k0. This can be done with the following constraint: fshr⋅(b1′−k0)=0 | degree=7 In case of a left shift, when the overflow table is empty, we need to make sure that a 0 is \"shifted in\" from the right (i.e., s15 is set to 0). This can be done with the following constraint: fshl⋅(1−fov)⋅s15′=0 | degree=8","breadcrumbs":"Design » Operand stack » Overflow table constraints","id":"135","title":"Overflow table constraints"},"136":{"body":"In addition to the constraints described above, we also need to enforce the following boundary constraints: b0=16 at the first and at the last row of execution trace. b1=0 at the first and at the last row of execution trace. p1=1 at the first and at the last row of execution trace.","breadcrumbs":"Design » Operand stack » Boundary constraints","id":"136","title":"Boundary constraints"},"137":{"body":"In addition to the constraints described in the previous section, we need to impose constraints to check that each VM operation is executed correctly. For this purpose the VM exposes a set of operation-specific flags. These flags are set to 1 when a given operation is executed, and to 0 otherwise. The naming convention for these flags is fopname. For example, fdup would be set to 1 when DUP operation is executed, and to 0 otherwise. Operation flags are discussed in detail in the section below . To describe how operation-specific constraints work, let's use an example with DUP operation. This operation pushes a copy of the top stack item onto the stack. The constraints we need to impose for this operation are as follows: fdup⋅(s0′−s0)=0fdup⋅(si+1′−si)=0 for i∈[0,15) The first constraint enforces that the top stack item in the next row is the same as the top stack item in the current row. The second constraint enforces that all stack items (starting from item 0) are shifted to the right by 1. We also need to impose all the constraints discussed in the previous section, be we omit them here. Let's write similar constraints for DUP1 operation, which pushes a copy of the second stack item onto the stack: fdup1⋅(s0′−s1)=0fdup1⋅(si+1′−si)=0 for i∈[0,15) It is easy to notice that while the first constraint changed, the second constraint remained the same - i.e., we are still just shifting the stack to the right. In fact, for most operations it makes sense to make a distinction between constraints unique to the operation vs. more general constraints which enforce correct behavior for the stack items not affected by the operation. In the subsequent sections we describe in detail only the former constraints, and provide high-level descriptions of the more general constraints. Specifically, we indicate how the operation affects the rest of the stack (e.g., shifts right starting from position 0).","breadcrumbs":"Design » Operand stack » Operation constraints » Stack operation constraints","id":"137","title":"Stack operation constraints"},"138":{"body":"As mentioned above, operation flags are used as selectors to enforce operation-specific constraints. That is, they turn on relevant constraints for a given operation. In total, the VM provides 88 unique operations, and thus, there are 88 operation flags (not all of them currently used). Operation flags are mutually exclusive. That is, if one flag is set to 1, all other flags are set to 0. Also, one of the flags is always guaranteed to be set to 1. To compute values of operation flags we use op bits registers located in the decoder . These registers contain binary representations of operation codes (opcodes). Each opcode consists of 7 bits, and thus, there are 7 op bits registers. We denote these registers as b0,...,b6. The values are computed by multiplying the op bit registers in various combinations. Notice that binary encoding down below is showed in big-endian order, so the flag bits correspond to the reverse order of the op bits registers, from b6 to b0. For example, the value of the flag for NOOP, which is encoded as 0000000, is computed as follows: fnoop=(1−b6)⋅(1−b5)⋅(1−b4)⋅(1−b3)⋅(1−b2)⋅(1−b1)⋅(1−b0) While the value of the DROP operation, which is encoded as 0101001 is computed as follows: fdrop=(1−b6)⋅b5⋅(1−b4)⋅b3⋅(1−b2)⋅(1−b1)⋅b0 As can be seen from above, the degree for both of these flags is 7. Since degree of constraints in Miden VM can go up to 9, this means that operation-specific constraints cannot exceed degree 2. However, there are some operations which require constraints of higher degree (e.g., 3 or even 5). To support such constraints, we adopt the following scheme. We organize the operations into 4 groups as shown below and also introduce two extra registers e0 and e1 for degree reduction: b6 b5 b4 b3 b2 b1 b0 e0 e1 # of ops degree 0 x x x x x x 0 0 64 7 1 0 0 x x x - 0 0 8 6 1 0 1 x x x x 1 0 16 5 1 1 x x x - - 0 1 8 4 In the above: Operation flags for operations in the first group (with prefix 0), are computed using all 7 op bits, and thus their degree is 7. Operation flags for operations in the second group (with prefix 100), are computed using only the first 6 op bits, and thus their degree is 6. Operation flags for operations in the third group (with prefix 101), are computed using all 7 op bits. We use the extra register e0 (which is set to b6⋅(1−b5)⋅b4) to reduce the degree by 2. Thus, the degree of op flags in this group is 5. Operation flags for operations in the fourth group (with prefix 11), are computed using only the first 5 op bits. We use the extra register e1 (which is set to b6⋅b5) to reduce the degree by 1. Thus, the degree of op flags in this group is 4. How operations are distributed between these 4 groups is described in the sections below.","breadcrumbs":"Design » Operand stack » Operation constraints » Operation flags","id":"138","title":"Operation flags"},"139":{"body":"This group contains 32 operations which do not shift the stack (this is almost all such operations). Since the op flag degree for these operations is 7, constraints for these operations cannot exceed degree 2. Operation Opcode value Binary encoding Operation group Flag degree NOOP 0 000_0000 System ops 7 EQZ 1 000_0001 Field ops 7 NEG 2 000_0010 Field ops 7 INV 3 000_0011 Field ops 7 INCR 4 000_0100 Field ops 7 NOT 5 000_0101 Field ops 7 FMPADD 6 000_0110 System ops 7 MLOAD 7 000_0111 I/O ops 7 SWAP 8 000_1000 Stack ops 7 CALLER 9 000_1001 System ops 7 MOVUP2 10 000_1010 Stack ops 7 MOVDN2 11 000_1011 Stack ops 7 MOVUP3 12 000_1100 Stack ops 7 MOVDN3 13 000_1101 Stack ops 7 ADVPOPW 14 000_1110 I/O ops 7 EXPACC 15 000_1111 Field ops 7 MOVUP4 16 001_0000 Stack ops 7 MOVDN4 17 001_0001 Stack ops 7 MOVUP5 18 001_0010 Stack ops 7 MOVDN5 19 001_0011 Stack ops 7 MOVUP6 20 001_0100 Stack ops 7 MOVDN6 21 001_0101 Stack ops 7 MOVUP7 22 001_0110 Stack ops 7 MOVDN7 23 001_0111 Stack ops 7 SWAPW 24 001_1000 Stack ops 7 EXT2MUL 25 001_1001 Field ops 7 MOVUP8 26 001_1010 Stack ops 7 MOVDN8 27 001_1011 Stack ops 7 SWAPW2 28 001_1100 Stack ops 7 SWAPW3 29 001_1101 Stack ops 7 SWAPDW 30 001_1110 Stack ops 7 31 001_1111 7","breadcrumbs":"Design » Operand stack » Operation constraints » No stack shift operations","id":"139","title":"No stack shift operations"},"14":{"body":"Internally, Miden VM uses rayon for parallel computations. To control the number of threads used to generate a STARK proof, you can use RAYON_NUM_THREADS environment variable.","breadcrumbs":"Introduction » Usage » Controlling parallelism","id":"14","title":"Controlling parallelism"},"140":{"body":"This group contains 16 operations which shift the stack to the left (i.e., remove an item from the stack). Most of left-shift operations are contained in this group. Since the op flag degree for these operations is 7, constraints for these operations cannot exceed degree 2. Operation Opcode value Binary encoding Operation group Flag degree ASSERT 32 010_0000 System ops 7 EQ 33 010_0001 Field ops 7 ADD 34 010_0010 Field ops 7 MUL 35 010_0011 Field ops 7 AND 36 010_0100 Field ops 7 OR 37 010_0101 Field ops 7 U32AND 38 010_0110 u32 ops 7 U32XOR 39 010_0111 u32 ops 7 FRIE2F4 40 010_1000 Crypto ops 7 DROP 41 010_1001 Stack ops 7 CSWAP 42 010_1010 Stack ops 7 CSWAPW 43 010_1011 Stack ops 7 MLOADW 44 010_1100 I/O ops 7 MSTORE 45 010_1101 I/O ops 7 MSTOREW 46 010_1110 I/O ops 7 FMPUPDATE 47 010_1111 System ops 7","breadcrumbs":"Design » Operand stack » Operation constraints » Left stack shift operations","id":"140","title":"Left stack shift operations"},"141":{"body":"This group contains 16 operations which shift the stack to the right (i.e., push a new item onto the stack). Most of right-shift operations are contained in this group. Since the op flag degree for these operations is 7, constraints for these operations cannot exceed degree 2. Operation Opcode value Binary encoding Operation group Flag degree PAD 48 011_0000 Stack ops 7 DUP 49 011_0001 Stack ops 7 DUP1 50 011_0010 Stack ops 7 DUP2 51 011_0011 Stack ops 7 DUP3 52 011_0100 Stack ops 7 DUP4 53 011_0101 Stack ops 7 DUP5 54 011_0110 Stack ops 7 DUP6 55 011_0111 Stack ops 7 DUP7 56 011_1000 Stack ops 7 DUP9 57 011_1001 Stack ops 7 DUP11 58 011_1010 Stack ops 7 DUP13 59 011_1011 Stack ops 7 DUP15 60 011_1100 Stack ops 7 ADVPOP 61 011_1101 I/O ops 7 SDEPTH 62 011_1110 I/O ops 7 CLK 63 011_1111 System ops 7","breadcrumbs":"Design » Operand stack » Operation constraints » Right stack shift operations","id":"141","title":"Right stack shift operations"},"142":{"body":"This group contains 8 u32 operations. These operations are grouped together because all of them require range checks. The constraints for range checks are of degree 5, however, since all these operations require them, we can define a flag with common prefix 100 to serve as a selector for the range check constraints. The value of this flag is computed as follows: fu32rc=b6⋅(1−b5)⋅(1−b4) The degree of this flag is 3, which is acceptable for a selector for degree 5 constraints. Operation Opcode value Binary encoding Operation group Flag degree U32ADD 64 100_0000 u32 ops 6 U32SUB 66 100_0010 u32 ops 6 U32MUL 68 100_0100 u32 ops 6 U32DIV 70 100_0110 u32 ops 6 U32SPLIT 72 100_1000 u32 ops 6 U32ASSERT2 74 100_1010 u32 ops 6 U32ADD3 76 100_1100 u32 ops 6 U32MADD 78 100_1110 u32 ops 6 As mentioned previously, the last bit of the opcode is not used in computation of the flag for these operations. We force this bit to always be set to 0 with the following constraint: b6⋅(1−b5)⋅(1−b4)⋅b0=0 | degree=4 Putting these operations into a group with flag degree 6 is important for two other reasons: Constraints for the U32SPLIT operation have degree 3. Thus, the degree of the op flag for this operation cannot exceed 6. Operations U32ADD3 and U32MADD shift the stack to the left. Thus, having these two operations in this group and putting them under the common prefix 10011 allows us to create a common flag for these operations of degree 5 (recall that the left-shift flag cannot exceed degree 5).","breadcrumbs":"Design » Operand stack » Operation constraints » u32 operations","id":"142","title":"u32 operations"},"143":{"body":"This group contains operations which require constraints with degree up to 3. All 7 operation bits are used for these flags. The extra e0 column is used for degree reduction of the three high-degree bits. Operation Opcode value Binary encoding Operation group Flag degree HPERM 80 101_0000 Crypto ops 5 MPVERIFY 81 101_0001 Crypto ops 5 PIPE 82 101_0010 I/O ops 5 MSTREAM 83 101_0011 I/O ops 5 SPLIT 84 101_0100 Flow control ops 5 LOOP 85 101_0101 Flow control ops 5 SPAN 86 101_0110 Flow control ops 5 JOIN 87 101_0111 Flow control ops 5 88 101_1000 5 89 101_1001 5 90 101_1010 5 91 101_1011 5 92 101_1100 5 93 101_1101 5 94 101_1110 5 95 101_1111 5 Note that the SPLIT and LOOP operations are grouped together under the common prefix 101010, and thus can have a common flag of degree 4 (using e0 for degree reduction). This is important because both of these operations shift the stack to the left. Also, we need to make sure that extra register e0, which is used to reduce the flag degree by 2, is set to 1 when b6=1, b5=0, and b4=1: e0−b6⋅(1−b5)⋅b4=0 | degree=3","breadcrumbs":"Design » Operand stack » Operation constraints » High-degree operations","id":"143","title":"High-degree operations"},"144":{"body":"This group contains operations which require constraints with degree up to 5. Operation Opcode value Binary encoding Operation group Flag degree MRUPDATE 96 110_0000 Crypto ops 4 PUSH 100 110_0100 I/O ops 4 SYSCALL 104 110_1000 Flow control ops 4 CALL 108 110_1100 Flow control ops 4 END 112 111_0000 Flow control ops 4 REPEAT 116 111_0100 Flow control ops 4 RESPAN 120 111_1000 Flow control ops 4 HALT 124 111_1100 Flow control ops 4 As mentioned previously, the last two bits of the opcode are not used in computation of the flag for these operations. We force these bits to always be set to 0 with the following constraints: b6⋅b5⋅b0=0 | degree=3 b6⋅b5⋅b1=0 | degree=3 Also, we need to make sure that extra register e1, which is used to reduce the flag degree by 1, is set to 1 when both b6 and b5 columns are set to 1: e1−b6⋅b5=0 | degree=2","breadcrumbs":"Design » Operand stack » Operation constraints » Very high-degree operations","id":"144","title":"Very high-degree operations"},"145":{"body":"Using the operation flags defined above, we can compute several composite flags which are used by various constraints in the VM.","breadcrumbs":"Design » Operand stack » Operation constraints » Composite flags","id":"145","title":"Composite flags"},"146":{"body":"The right-shift flag indicates that an operation shifts the stack to the right. This flag is computed as follows: fshr=(1−b6)⋅b5⋅b4+fu32split+fpush | degree=6 In the above, (1−b6)⋅b5⋅b4 evaluates to 1 for all right stack shift operations described previously. This works because all these operations have a common prefix 011. We also need to add in flags for other operations which shift the stack to the right but are not a part of the above group (e.g., PUSH operation).","breadcrumbs":"Design » Operand stack » Operation constraints » Shift right flag","id":"146","title":"Shift right flag"},"147":{"body":"The left-shift flag indicates that a given operation shifts the stack to the left. To simplify the description of this flag, we will first compute the following intermediate variables: A flag which is set to 1 when fu32add3=1 or fu32madd=1: fadd3_madd=b6⋅(1−b5)⋅(1−b4)⋅b3⋅b2 | degree=5 A flag which is set to 1 when fsplit=1 or floop=1: fsplit_loop=e0⋅(1−b3)⋅b2⋅(1−b1) | degree=4 Using the above variables, we compute left-shift flag as follows: fshl=(1−b6)⋅b5⋅(1−b4)+fadd3_madd+fsplit_loop+frepeat+fend⋅h5 | degree=5 In the above: (1−b6)⋅b5⋅(1−b4) evaluates to 1 for all left stack shift operations described previously. This works because all these operations have a common prefix 010. h5 is the helper register in the decoder which is set to 1 when we are exiting a LOOP block, and to 0 otherwise. Thus, similarly to the right-shift flag, we compute the value of the left-shift flag based on the prefix of the operation group which contains most left shift operations, and add in flag values for other operations which shift the stack to the left but are not a part of this group.","breadcrumbs":"Design » Operand stack » Operation constraints » Shift left flag","id":"147","title":"Shift left flag"},"148":{"body":"The control flow flag fctrl is set to 1 when a control flow operation is being executed by the VM, and to 0 otherwise. Naively, this flag can be computed as follows: fctrl=fjoin+fsplit+floop+frepeat+fspan+frespan+fcall+fsyscall+fend+fhalt | degree=6 However, this can be computed more efficiently via the common operation prefixes for the two groups of control flow operations as follows. fspan,join,split,loop=e0⋅(1−b3)⋅b2 | degree=3 fend,repeat,respan,halt=e1⋅b4 | degree=2 fctrl=fspan,join,split,loop+fend,repeat,respan,halt+fcall+fsyscall | degree=3","breadcrumbs":"Design » Operand stack » Operation constraints » Control flow flag","id":"148","title":"Control flow flag"},"149":{"body":"In this section we describe the AIR constraints for Miden VM system operations.","breadcrumbs":"Design » Operand stack » System operations » System Operations","id":"149","title":"System Operations"},"15":{"body":"Miden VM proof generation can be accelerated via GPUs. Currently, GPU acceleration is enabled only on Apple silicon hardware (via Metal). To compile Miden VM with Metal acceleration enabled, you can run the following command: make exec-metal Similar to make exec command, this will place the resulting miden executable into the ./target/optimized directory. Currently, GPU acceleration is applicable only to recursive proofs which can be generated using -r flag.","breadcrumbs":"Introduction » Usage » GPU acceleration","id":"15","title":"GPU acceleration"},"150":{"body":"The NOOP operation advances the cycle counter but does not change the state of the operand stack (i.e., the depth of the stack and the values on the stack remain the same). The NOOP operation does not impose any constraints besides the ones needed to ensure that the entire state of the stack is copied over. This constraint looks like so: si′−si=0 for i∈[0,16) | degree=1","breadcrumbs":"Design » Operand stack » System operations » NOOP","id":"150","title":"NOOP"},"151":{"body":"The ASSERT operation pops an element off the stack and checks if the popped element is equal to 1. If the element is not equal to 1, program execution fails. assert Stack transition for this operation must satisfy the following constraints: s0−1=0 | degree=1 The effect on the rest of the stack is: Left shift starting from position 1.","breadcrumbs":"Design » Operand stack » System operations » ASSERT","id":"151","title":"ASSERT"},"152":{"body":"The FMPADD operation pops an element off the stack, adds the current value of the fmp register to it, and pushes the result back onto the stack. The diagram below illustrates this graphically. fmpadd Stack transition for this operation must satisfy the following constraints: s0′−(s0+fmp)=0 | degree=1 The effect on the rest of the stack is: No change starting from position 1.","breadcrumbs":"Design » Operand stack » System operations » FMPADD","id":"152","title":"FMPADD"},"153":{"body":"The FMPUPDATE operation pops an element off the stack and adds it to the current value of the fmp register. The diagram below illustrates this graphically. fmpupdate The stack transition for this operation must follow the following constraint: fmp′−(fmp+s0)=0 | degree=1 The effect on the rest of the stack is: Left shift starting from position 1.","breadcrumbs":"Design » Operand stack » System operations » FMPUPDATE","id":"153","title":"FMPUPDATE"},"154":{"body":"The CLK operation pushes the current value of the clock cycle onto the stack. The diagram below illustrates this graphically. clk The stack transition for this operation must follow the following constraint: s0′−clk=0 | degree=1 The effect on the rest of the stack is: Right shift starting from position 0.","breadcrumbs":"Design » Operand stack » System operations » CLK","id":"154","title":"CLK"},"155":{"body":"In this section we describe the AIR constraints for Miden VM field operations (i.e., arithmetic operations over field elements).","breadcrumbs":"Design » Operand stack » Field operations » Field Operations","id":"155","title":"Field Operations"},"156":{"body":"Assume a and b are the elements at the top of the stack. The ADD operation computes c←(a+b). The diagram below illustrates this graphically. add Stack transition for this operation must satisfy the following constraints: s0′−(s0+s1)=0 | degree=1 The effect on the rest of the stack is: Left shift starting from position 2.","breadcrumbs":"Design » Operand stack » Field operations » ADD","id":"156","title":"ADD"},"157":{"body":"Assume a is the element at the top of the stack. The NEG operation computes b←(−a). The diagram below illustrates this graphically. neg Stack transition for this operation must satisfy the following constraints: s0′+s0=0 | degree=1 The effect on the rest of the stack is: No change starting from position 1.","breadcrumbs":"Design » Operand stack » Field operations » NEG","id":"157","title":"NEG"},"158":{"body":"Assume a and b are the elements at the top of the stack. The MUL operation computes c←(a⋅b). The diagram below illustrates this graphically. mul Stack transition for this operation must satisfy the following constraints: s0′−s0⋅s1=0 | degree=2 The effect on the rest of the stack is: Left shift starting from position 2.","breadcrumbs":"Design » Operand stack » Field operations » MUL","id":"158","title":"MUL"},"159":{"body":"Assume a is the element at the top of the stack. The INV operation computes b←(a−1). The diagram below illustrates this graphically. inv Stack transition for this operation must satisfy the following constraints: 1−s0′⋅s0=0 | degree=2 Note that the above constraint can be satisfied only if the value in s0=0. The effect on the rest of the stack is: No change starting from position 1.","breadcrumbs":"Design » Operand stack » Field operations » INV","id":"159","title":"INV"},"16":{"body":"Once the executable has been compiled, you can run Miden VM like so: ./target/optimized/miden [subcommand] [parameters] Currently, Miden VM can be executed with the following subcommands: run - this will execute a Miden assembly program and output the result, but will not generate a proof of execution. prove - this will execute a Miden assembly program, and will also generate a STARK proof of execution. verify - this will verify a previously generated proof of execution for a given program. compile - this will compile a Miden assembly program (i.e., build a program MAST ) and outputs stats about the compilation process. debug - this will instantiate a Miden debugger against the specified Miden assembly program and inputs. analyze - this will run a Miden assembly program against specific inputs and will output stats about its execution. repl - this will initiate the Miden REPL tool. All of the above subcommands require various parameters to be provided. To get more detailed help on what is needed for a given subcommand, you can run the following: ./target/optimized/miden [subcommand] --help For example: ./target/optimized/miden prove --help To execute a program using the Miden VM there needs to be a .masm file containing the Miden Assembly code and a .inputs file containing the inputs.","breadcrumbs":"Introduction » Usage » Running Miden VM","id":"16","title":"Running Miden VM"},"160":{"body":"Assume a is the element at the top of the stack. The INCR operation computes b←(a+1). The diagram below illustrates this graphically. incr Stack transition for this operation must satisfy the following constraints: s0′−(s0+1)=0 | degree=1 The effect on the rest of the stack is: No change starting from position 1.","breadcrumbs":"Design » Operand stack » Field operations » INCR","id":"160","title":"INCR"},"161":{"body":"Assume a is a binary value at the top of the stack. The NOT operation computes b←(¬a). The diagram below illustrates this graphically. not Stack transition for this operation must satisfy the following constraints: s02−s0=0 | degree=2 s0′−(1−s0)=0 | degree=1 The first constraint ensures that the value in s0 is binary, and the second constraint ensures the correctness of the boolean NOT operation. The effect on the rest of the stack is: No change starting from position 1.","breadcrumbs":"Design » Operand stack » Field operations » NOT","id":"161","title":"NOT"},"162":{"body":"Assume a and b are binary values at the top of the stack. The AND operation computes c←(a∧b). The diagram below illustrates this graphically. and Stack transition for this operation must satisfy the following constraints: si2−si=0 for i∈{0,1} | degree=2 s0′−s0⋅s1=0 | degree=2 The first two constraints ensure that the value in s0 and s1 are binary, and the third constraint ensures the correctness of the boolean AND operation. The effect on the rest of the stack is: Left shift starting from position 2.","breadcrumbs":"Design » Operand stack » Field operations » AND","id":"162","title":"AND"},"163":{"body":"Assume a and b are binary values at the top of the stack. The OR operation computes c←(a∨b) The diagram below illustrates this graphically. or Stack transition for this operation must satisfy the following constraints: si2−si=0 for i∈{0,1} | degree=2 s0′−(s1+s0−s1⋅s0)=0 | degree=2 The first two constraints ensure that the value in s0 and s1 are binary, and the third constraint ensures the correctness of the boolean OR operation. The effect on the rest of the stack is: Left shift starting from position 2.","breadcrumbs":"Design » Operand stack » Field operations » OR","id":"163","title":"OR"},"164":{"body":"Assume a and b are the elements at the top of the stack. The EQ operation computes c such that c=1 if a=b, and 0 otherwise. The diagram below illustrates this graphically. eq Stack transition for this operation must satisfy the following constraints: s0′⋅(s0−s1)=0 | degree=2 s0′−(1−(s0−s1)⋅h0)=0 | degree=2 To satisfy the above constraints, the prover must populate the value of helper register h0 as follows: If s0=s1, set h0=s0−s11. Otherwise, set h0 to any value (e.g., 0). The effect on the rest of the stack is: Left shift starting from position 2.","breadcrumbs":"Design » Operand stack » Field operations » EQ","id":"164","title":"EQ"},"165":{"body":"Assume a is the element at the top of the stack. The EQZ operation computes b such that b=1 if a=0, and 0 otherwise. The diagram below illustrates this graphically. eqz Stack transition for this operation must satisfy the following constraints: s0′⋅s0=0 | degree=2 s0′−(1−s0⋅h0)=0 | degree=2 To satisfy the above constraints, the prover must populate the value of helper register h0 as follows: If s0=0, set h0=s01. Otherwise, set h0 to any value (e.g., 0). The effect on the rest of the stack is: No change starting from position 1.","breadcrumbs":"Design » Operand stack » Field operations » EQZ","id":"165","title":"EQZ"},"166":{"body":"The EXPACC operation pops top 4 elements from the top of the stack, performs a single round of exponent aggregation, and pushes the resulting 4 values onto the stack. The diagram below illustrates this graphically. expacc Stack transition for this operation must satisfy the following constraints: bit should be a binary. s0′2−s0′=0 | degree=2 The exp in the next frame should be the square of the exp in the current frame. s1′−s12=0 | degree=2 The value val in the helper register is computed correctly using the bit and exp in next and current frame respectively. h0−((s1−1)∗s0′+1)=0 | degree=2 The acc in the next frame is the product of val and acc in the current frame. s2′−s2∗h0=0 | degree=2 b in the next frame is the right shift of b in the current frame. s3′−(s3∗2+s0′)=0 | degree=1 The effect on the rest of the stack is: No change starting from position 4.","breadcrumbs":"Design » Operand stack » Field operations » EXPACC","id":"166","title":"EXPACC"},"167":{"body":"The EXT2MUL operation pops top 4 values from the top of the stack, performs mulitplication between the two extension field elements, and pushes the resulting 4 values onto the stack. The diagram below illustrates this graphically. ext2mul Stack transition for this operation must satisfy the following constraints: The first stack element should be unchanged in the next frame. s0′−s0=0 | degree=1 The second stack element should be unchanged in the next frame. s1′−s1=0 | degree=1 The third stack element should satisfy the following constraint. s2′−(s0+s1)⋅(s2+s3)+s0⋅s2=0 | degree=2 The fourth stack element should satisfy the following constraint. s3′−s1⋅s3+2⋅s0⋅s2=0 | degree=2 The effect on the rest of the stack is: No change starting from position 4.","breadcrumbs":"Design » Operand stack » Field operations » EXT2MUL","id":"167","title":"EXT2MUL"},"168":{"body":"In this section we describe semantics and AIR constraints of operations over u32 values (i.e., 32-bit unsigned integers) as they are implemented in Miden VM.","breadcrumbs":"Design » Operand stack » u32 operations » u32 Operations","id":"168","title":"u32 Operations"},"169":{"body":"Most operations described below require some number of 16-bit range checks (i.e., verifying that the value of a field element is smaller than 216). The number of required range checks varies between 2 and 4, depending on the operation. However, to simplify the constraint system, we force each relevant operation to consume exactly 4 range checks. To perform these range checks, the prover puts the values to be range-checked into helper registers h0,...,h3, and then divides the range checker bus column brange by a randomized product of these values. This operation is enforced via the following constraint: brange′⋅(α0+h0)⋅(α0+h1)⋅(α0+h2)⋅(α0+h3)=brange | degree=5 The above is just a partial constraint as it does not show the range checker's part of the constraint, which multiplies the required values into the bus column. It also omits the selector flag which is used to turn this constraint on only when executing relevant operations.","breadcrumbs":"Design » Operand stack » u32 operations » Range checks","id":"169","title":"Range checks"},"17":{"body":"As described here the Miden VM can consume public and secret inputs. Public inputs: operand_stack - can be supplied to the VM to initialize the stack with the desired values before a program starts executing. There is no limit on the number of stack inputs that can be initialized in this way, although increasing the number of public inputs increases the cost to the verifier. Secret (or nondeterministic) inputs: advice_stack - can be supplied to the VM. There is no limit on how much data the advice provider can hold. This is provided as a string array where each string entry represents a field element. advice_map - is supplied as a map of 64-character hex keys, each mapped to an array of numbers. The hex keys are interpreted as 4 field elements and the arrays of numbers are interpreted as arrays of field elements. merkle_store - the Merkle store is container that allows the user to define merkle_tree and sparse_merkle_tree data structures. merkle_tree - is supplied as an array of 64-character hex values where each value represents a leaf (4 elements) in the tree. sparse_merkle_tree - is supplied an an array of tuples of the form (number, 64-character hex string). The number represents the leaf index and the hex string represents the leaf value (4 elements). Check out the comparison example to see how secret inputs work. After a program finishes executing, the elements that remain on the stack become the outputs of the program, along with the overflow addresses (overflow_addrs) that are required to reconstruct the stack overflow table .","breadcrumbs":"Introduction » Usage » Inputs","id":"17","title":"Inputs"},"170":{"body":"Another primitive which is required by most of the operations described below is checking whether four 16-bit values form a valid field element. Assume t0, t1, t2, and t3 are known to be 16-bit values, and we want to verify that 248⋅t3+232⋅t2+216⋅t1+t0 is a valid field element. For simplicity, let's denote: vhi=216⋅t3+t2vlo=216⋅t1+t0 We can then impose the following constraint to verify element validity: (1−m⋅(232−1−vhi))⋅vlo=0 | degree=3 Where m is a value set non-deterministically by the prover. The above constraint should hold only if either of the following hold: vlo=0 vhi=232−1 To satisfy the latter equation, the prover needs to set m=(232−1−vhi)−1, which is possible only when vhi=232−1. This constraint is sufficient because modulus 264−232+1 in binary representation is 32 ones, followed by 31 zeros, followed by a single one: 1111111111111111111111111111111100000000000000000000000000000001 This implies that the largest possible 64-bit value encoding a valid field element would be 32 ones, followed by 32 zeros: 1111111111111111111111111111111100000000000000000000000000000000 Thus, for a 64-bit value to encode a valid field element, either the lower 32 bits must be all zeros, or the upper 32 bits must not be all ones (which is 232−1).","breadcrumbs":"Design » Operand stack » u32 operations » Checking element validity","id":"170","title":"Checking element validity"},"171":{"body":"Assume a is the element at the top of the stack. The U32SPLIT operation computes (b,c)←a, where b contains the lower 32 bits of a, and c contains the upper 32 bits of a. The diagram below illustrates this graphically. u32split To facilitate this operation, the prover sets values in h0,...,h3 to 16-bit limbs of a with h0 being the least significant limb. Thus, stack transition for this operation must satisfy the following constraints: s0=248⋅h3+232⋅h2+216⋅h1+h0 | degree=1 s1′=216⋅h1+h0 | degree=1 s0′=216⋅h3+h2 | degree=1 In addition to the above constraints, we also need to verify that values in h0,...,h3 are smaller than 216, which we can do using 16-bit range checks as described previously . Also, we need to make sure that values in h0,...,h3, when combined, form a valid field element, which we can do by putting a nondeterministic value m into helper register h4 and using the technique described here . The effect of this operation on the rest of the stack is: Right shift starting from position 1.","breadcrumbs":"Design » Operand stack » u32 operations » U32SPLIT","id":"171","title":"U32SPLIT"},"172":{"body":"Assume a and b are the elements at the top of the stack. The U32ASSERT2 verifies that both a and b are smaller than 232. The diagram below illustrates this graphically. u32assert2 To facilitate this operation, the prover sets values in h0 and h1 to low and high 16-bit limbs of a, and values in h2 and h3 to to low and high 16-bit limbs of b. Thus, stack transition for this operation must satisfy the following constraints: s0′=216⋅h3+h2 | degree=1 s1′=216⋅h1+h0 | degree=1 In addition to the above constraints, we also need to verify that values in h0,...,h3 are smaller than 216, which we can do using 16-bit range checks as described previously . The effect of this operation on the rest of the stack is: No change starting from position 0 - i.e., the state of the stack does not change.","breadcrumbs":"Design » Operand stack » u32 operations » U32ASSERT2","id":"172","title":"U32ASSERT2"},"173":{"body":"Assume a and b are the values at the top of the stack which are known to be smaller than 232. The U32ADD operation computes (c,d)←a+b, where c contains the low 32-bits of the result, and d is the carry bit. The diagram below illustrates this graphically. u32add To facilitate this operation, the prover sets values in h0, h1, and h2 to 16-bit limbs of a+b with h0 being the least significant limb. Value in h3 is set to 0. Thus, stack transition for this operation must satisfy the following constraints: s0+s1=232⋅h2+216⋅h1+h0 | degree=1 s0′=h2 | degree=1 s1′=216⋅h1+h0 | degree=1 In addition to the above constraints, we also need to verify that values in h0,...,h3 are smaller than 216, which we can do using 16-bit range checks as described previously . The effect of this operation on the rest of the stack is: No change starting from position 2.","breadcrumbs":"Design » Operand stack » u32 operations » U32ADD","id":"173","title":"U32ADD"},"174":{"body":"Assume a, b, c are the values at the top of the stack which are known to be smaller than 232. The U32ADD3 operation computes (d,e)←a+b+c, where c and d contains the low and the high 32-bits of the result respectively. The diagram below illustrates this graphically. u32add3 To facilitate this operation, the prover sets values in h0, h1, and h2 to 16-bit limbs of a+b+c with h0 being the least significant limb. Value in h3 is set to 0. Thus, stack transition for this operation must satisfy the following constraints: s0+s1+s2=232⋅h2+216⋅h1+h0 | degree=1 s0′=h2 | degree=1 s1′=216⋅h1+h0 | degree=1 In addition to the above constraints, we also need to verify that values in h0,...,h3 are smaller than 216, which we can do using 16-bit range checks as described previously . The effect of this operation on the rest of the stack is: Left shift starting from position 3.","breadcrumbs":"Design » Operand stack » u32 operations » U32ADD3","id":"174","title":"U32ADD3"},"175":{"body":"Assume a and b are the values at the top of the stack which are known to be smaller than 232. The U32SUB operation computes (c,d)←a−b, where c contains the 32-bit result in two's complement, and d is the borrow bit. The diagram below illustrates this graphically. u32sub To facilitate this operation, the prover sets values in h0 and h1 to the low and the high 16-bit limbs of a−b respectively. Values in h2 and h3 are set to 0. Thus, stack transition for this operation must satisfy the following constraints: s1=s0+s1′+232⋅s0′ | degree=1 s0′2−s0′=0 | degree=2 s1′=216⋅h1+h0 | degree=1 In addition to the above constraints, we also need to verify that values in h0,...,h3 are smaller than 216, which we can do using 16-bit range checks as described previously . The effect of this operation on the rest of the stack is: No change starting from position 2.","breadcrumbs":"Design » Operand stack » u32 operations » U32SUB","id":"175","title":"U32SUB"},"176":{"body":"Assume a and b are the values at the top of the stack which are known to be smaller than 232. The U32MUL operation computes (c,d)←a⋅b, where c and d contain the low and the high 32-bits of the result respectively. The diagram below illustrates this graphically. u32mul To facilitate this operation, the prover sets values in h0,...,h3 to 16-bit limbs of a⋅b with h0 being the least significant limb. Thus, stack transition for this operation must satisfy the following constraints: s0⋅s1=248⋅h3+232⋅h2+216⋅h1+h0 | degree=2 s1′=216⋅h1+h0 | degree=1 s0′=216⋅h3+h2 | degree=1 In addition to the above constraints, we also need to verify that values in h0,...,h3 are smaller than 216, which we can do using 16-bit range checks as described previously . Also, we need to make sure that values in h0,...,h3, when combined, form a valid field element, which we can do by putting a nondeterministic value m into helper register h4 and using the technique described here . The effect of this operation on the rest of the stack is: No change starting from position 2.","breadcrumbs":"Design » Operand stack » u32 operations » U32MUL","id":"176","title":"U32MUL"},"177":{"body":"Assume a, b, c are the values at the top of the stack which are known to be smaller than 232. The U32MADD operation computes (d,e)←a+b⋅c, where c and d contains the low and the high 32-bits of a+b⋅c. The diagram below illustrates this graphically. u32madd To facilitate this operation, the prover sets values in h0,...,h3 to 16-bit limbs of a+b⋅c with h0 being the least significant limb. Thus, stack transition for this operation must satisfy the following constraints: s0⋅s1+s2=248⋅h3+232⋅h2+216⋅h1+h0 | degree=2 s1′=216⋅h1+h0 | degree=1 s0′=216⋅h3+h2 | degree=1 In addition to the above constraints, we also need to verify that values in h0,...,h3 are smaller than 216, which we can do using 16-bit range checks as described previously . Also, we need to make sure that values in h0,...,h3, when combined, form a valid field element, which we can do by putting a nondeterministic value m into helper register h4 and using the technique described here . Note : that the above constraints guarantee the correctness of the operation iff a+b⋅c cannot overflow field modules (which is the case for the field with modulus 264−232+1). The effect of this operation on the rest of the stack is: Left shift starting from position 3.","breadcrumbs":"Design » Operand stack » u32 operations » U32MADD","id":"177","title":"U32MADD"},"178":{"body":"Assume a and b are the values at the top of the stack which are known to be smaller than 232. The U32DIV operation computes (c,d)←a/b, where c contains the quotient and d contains the remainder. The diagram below illustrates this graphically. u32div To facilitate this operation, the prover sets values in h0 and h1 to 16-bit limbs of a−c, and values in h2 and h3 to 16-bit limbs of b−d−1. Thus, stack transition for this operation must satisfy the following constraints: s1=s0⋅s1′+s0′ | degree=2 s1−s1′=216⋅h1+h0 | degree=1 s0−s0′−1=216⋅h2+h3 | degree=1 The second constraint enforces that s1′≤s1, while the third constraint enforces that s0′216), we can do over 4n arbitrary 16-bit range-checks. For short traces (25> In order to add a breakpoint, the user should insert a breakpoint instruction into the MASM file. This will generate a Noop operation that will be decorated with the debug break configuration. This is a provisory solution until the source mapping is implemented. The following example will halt on the third instruction of foo: proc.foo dup dup.2 breakpoint swap add.1\nend begin exec.foo\nend","breadcrumbs":"Development tooling » Debugger » Miden Debugger","id":"23","title":"Miden Debugger"},"230":{"body":"Some chiplets require the use of a virtual table to maintain and enforce the correctness of their internal state. Because the length of these virtual tables does not exceed the length of the chiplets themselves, a single virtual table called vtchip can be shared by all chiplets. Currently, the chiplets virtual table combines two virtual tables: the hash chiplet's sibling table the kernel ROM chiplet's kernel procedure table To combine these correctly, the running product column for this table must be constrained not only at the beginning and the end of the trace, but also where the hash chiplet ends and where the kernel ROM chiplet begins. These positions can be identified using the chiplet selector columns.","breadcrumbs":"Design » Chiplets » Chiplets virtual table","id":"230","title":"Chiplets virtual table"},"231":{"body":"The expected boundary values for each chiplet's portion of the virtual table must be enforced. This can be done as follows. For the sibling table to be properly constrained, the value of the running product column must be 1 when the sibling table starts and finishes. This can be achieved by: enforcing a boundary constraint for vtchip=1 at the first row using the the following transition constraint to enforce that the value is once again 1 at the last cycle of the hash chiplet. (s0′−s0)⋅(1−vtchip)=0 | degree=2 For the kernel procedure table to be properly constrained, the value must be 1 when it starts, and it must be equal to the product of all of the kernel ROM procedures when it finishes. This can be achieved by: enforcing a boundary constraint against the last row for the value of all of the kernel ROM procedures using the following transition constraint to enforce that when the active chiplet changes to the kernel ROM chiplet the value is 1. s0⋅s1⋅(s2′−s2)⋅(1−vtchip′)=0 | degree=4","breadcrumbs":"Design » Chiplets » Chiplets virtual table constraints","id":"231","title":"Chiplets virtual table constraints"},"232":{"body":"Miden VM \"offloads\" all hash-related computations to a separate hash processor . This chiplet supports executing the Rescue Prime Optimized hash function (or rather a specific instantiation of it) in the following settings: A single permutation of Rescue Prime Optimized. A simple 2-to-1 hash. A linear hash of n field elements. Merkle path verification. Merkle root update. The chiplet can be thought of as having a small instruction set of 11 instructions. These instructions are listed below, and examples of how these instructions are used by the chiplet are described in the following sections. Instruction Description HR Executes a single round of the VM's native hash function. All cycles which are not one less than a multiple of 8 execute this instruction. That is, the chiplet executes this instruction on cycles 0,1,2,3,4,5,6, but not 7, and then again, 8,9,10,11,12,13,14, but not 15 etc. BP Initiates computation of a single permutation, a 2-to-1 hash, or a linear hash of many elements. This instruction can be executed only on cycles which are multiples of 8, and it can also be executed concurrently with an HR instruction. MP Initiates Merkle path verification computation. This instruction can be executed only on cycles which are multiples of 8, and it can also be executed concurrently with an HR instruction. MV Initiates Merkle path verification for the \"old\" node value during Merkle root update computation. This instruction can be executed only on cycles which are multiples of 8, and it can also be executed concurrently with an HR instruction. MU Initiates Merkle path verification for the \"new\" node value during Merkle root update computation. This instruction can be executed only on cycles which are multiples of 8, and it can also be executed concurrently with an HR instruction. HOUT Returns the result of the currently running computation. This instruction can be executed only on cycles which are one less than a multiple of 8 (e.g. 7, 15 etc.). SOUT Returns the whole hasher state. This instruction can be executed only on cycles which are one less than a multiple of 8, and only if the computation was started using BP instruction. ABP Absorbs a new set of elements into the hasher state when computing a linear hash of many elements. This instruction can be executed only on cycles which are one less than a multiple of 8, and only if the computation was started using BP instruction. MPA Absorbs the next Merkle path node into the hasher state during Merkle path verification computation. This instruction can be executed only on cycles which are one less than a multiple of 8, and only if the computation was started using MP instruction. MVA Absorbs the next Merkle path node into the hasher state during Merkle path verification for the \"old\" node value during Merkle root update computation. This instruction can be executed only on cycles which are one less than a multiple of 8, and only if the computation was started using MV instruction. MUA Absorbs the next Merkle path node into the hasher state during Merkle path verification for the \"new\" node value during Merkle root update computation. This instruction can be executed only on cycles which are one less than a multiple of 8, and only if the computation was started using Mu instruction.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Hash chiplet","id":"232","title":"Hash chiplet"},"233":{"body":"Execution trace table of the chiplet consists of 16 trace columns and 3 periodic columns. The structure of the table is such that a single permutation of the hash function can be computed using 8 table rows. The layout of the table is illustrated below. hash_execution_trace The meaning of the columns is as follows: Three periodic columns k0, k1, and k2 are used to help select the instruction executed at a given row. All of these columns contain patterns which repeat every 8 rows. For k0 the pattern is 7 zeros followed by 1 one, helping us identify the last row in the cycle. For k1 the pattern is 6 zeros, 1 one, and 1 zero, which can be used to identify the second-to-last row in a cycle. For k2 the pattern is 1 one followed by 7 zeros, which can identify the first row in the cycle. Three selector columns s0, s1, and s2. These columns can contain only binary values (ones or zeros), and they are also used to help select the instruction to execute at a given row. Twelve hasher state columns h0,...,h11. These columns are used to hold the hasher state for each round of the hash function permutation. The state is laid out as follows: The first four columns (h0,...,h3) are reserved for capacity elements of the state. When the state is initialized for hash computations, h0 should be set to 0 if the number of elements to be hashed is a multiple of the rate width (8). Otherwise, h0 should be set to 1. h1 should be set to the domain value if a domain has been provided (as in the case of control block hashing ). All other capacity elements should be set to 0's. The next eight columns (h4,...,h11) are reserved for the rate elements of the state. These are used to absorb the values to be hashed. Once the permutation is complete, hash output is located in the first four rate columns (h4,...,h7). One index column i. This column is used to help with Merkle path verification and Merkle root update computations. In addition to the columns described above, the chiplet relies on two running product columns which are used to facilitate multiset checks (similar to the ones described here ). These columns are: bchip - which is used to tie the chiplet table with the main VM's stack and decoder. That is, values representing inputs consumed by the chiplet and outputs produced by the chiplet are multiplied into bchip, while the main VM stack (or decoder) divides them out of bchip. Thus, if the sets of inputs and outputs between the main VM stack and hash chiplet are the same, the value of bchip should be equal to 1 at the start and the end of the execution trace. p1 - which is used to keep track of the sibling table used for Merkle root update computations. Specifically, when a root for the old leaf value is computed, we add an entry for all sibling nodes to the table (i.e., we multiply p1 by the values representing these entries). When the root for the new leaf value is computed, we remove the entries for the nodes from the table (i.e., we divide p1 by the value representing these entries). Thus, if both computations used the same set of sibling nodes (in the same order), the sibling table should be empty by the time Merkle root update procedure completes (i.e., the value of p1 would be 1).","breadcrumbs":"Design » Chiplets » Hash Chiplet » Chiplet trace","id":"233","title":"Chiplet trace"},"234":{"body":"As mentioned above, chiplet instructions are encoded using a combination of periodic and selector columns. These columns can be used to compute a binary flag for each instruction. Thus, when a flag for a given instruction is set to 1, the chiplet executes this instruction. Formulas for computing instruction flags are listed below. Flag Value Notes frpr 1−k0 Set to 1 on the first 7 steps of every 8-step cycle. fbp k2⋅s0⋅(1−s1)⋅(1−s2) Set to 1 when selector flags are (1,0,0) on rows which are multiples of 8. fmp k2⋅s0⋅(1−s1)⋅s2 Set to 1 when selector flags are (1,0,1) on rows which are multiples of 8. fmv k2⋅s0⋅s1⋅(1−s2) Set to 1 when selector flags are (1,1,0) on rows which are multiples of 8. fmu k2⋅s0⋅s1⋅s2 Set to 1 when selector flags are (1,1,1) on rows which are multiples of 8. fhout k0⋅(1−s0)⋅(1−s1)⋅(1−s2) Set to 1 when selector flags are (0,0,0) on rows which are 1 less than a multiple of 8. fsout k0⋅(1−s0)⋅(1−s1)⋅s2 Set to 1 when selector flags are (0,0,1) on rows which are 1 less than a multiple of 8. fabp k0⋅s0⋅(1−s1)⋅(1−s2) Set to 1 when selector flags are (1,0,0) on rows which are 1 less than a multiple of 8. fmpa k0⋅s0⋅(1−s1)⋅s2 Set to 1 when selector flags are (1,0,1) on rows which are 1 less than a multiple of 8. fmva k0⋅s0⋅s1⋅(1−s2) Set to 1 when selector flags are (1,1,0) on rows which are 1 less than a multiple of 8. fmua k0⋅s0⋅s1⋅s2 Set to 1 when selector flags are (1,1,1) on rows which are 1 less than a multiple of 8. A few additional notes about flag values: With the exception of frpr, all flags are mutually exclusive. That is, if one flag is set to 1, all other flats are set to 0. With the exception of frpr, computing flag values involves 3 multiplications, and thus the degree of these flags is 4. We can also define a flag fout=k0⋅(1−s0)⋅(1−s1). This flag will be set to 1 when either fhout=1 or fsout=1 in the current row. We can define a flag fout′=k1⋅(1−s0′)⋅(1−s1′). This flag will be set to 1 when either fhout=1 or fsout=1 in the next row. We also impose the following restrictions on how values in selector columns can be updated: Values in columns s1 and s2 must be copied over from one row to the next, unless fout=1 or fout′=1 indicating the hout or sout flag is set for the current or the next row. Value in s0 must be set to 1 if fout=1 for the previous row, and to 0 if any of the flags fabp, fmpa, fmva, or fmua are set to 1 for the previous row. The above rules ensure that we must finish one computation before starting another, and we can't change the type of the computation before the computation is finished.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Instruction flags","id":"234","title":"Instruction flags"},"235":{"body":"","breadcrumbs":"Design » Chiplets » Hash Chiplet » Computation examples","id":"235","title":"Computation examples"},"236":{"body":"Computing a single permutation of Rescue Prime Optimized hash function involves the following steps: Initialize hasher state with 12 field elements. Apply Rescue Prime Optimized permutation. Return the entire hasher state as output. The chiplet accomplishes the above by executing the following instructions: [BP, HR] // init state and execute a hash round (concurrently)\nHR HR HR HR HR HR // execute 6 more hash rounds\nSOUT // return the entire state as output Execution trace for this computation would look as illustrated below. hash_1_permutation_trace In the above {a0,...,a11} is the input state of the hasher, and {b0,...,b11} is the output state of the hasher.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Single permutation","id":"236","title":"Single permutation"},"237":{"body":"Computing a 2-to-1 hash involves the following steps: Initialize hasher state with 8 field elements, setting the second capacity element to domain if the domain is provided (as in the case of control block hashing ) or else 0, and the remaining capacity elements to 0. Apply Rescue Prime Optimized permutation. Return elements [4,8) of the hasher state as output. The chiplet accomplishes the above by executing the following instructions: [BP, HR] // init state and execute a hash round (concurrently)\nHR HR HR HR HR HR // execute 6 more hash rounds\nHOUT // return elements 4, 5, 6, 7 of the state as output Execution trace for this computation would look as illustrated below. hash_2_to_1_hash In the above, we compute the following: {c0,c1,c2,c3}←hash({a0,a1,a2,a3},{b0,b1,b2,b3})","breadcrumbs":"Design » Chiplets » Hash Chiplet » Simple 2-to-1 hash","id":"237","title":"Simple 2-to-1 hash"},"238":{"body":"Computing a linear hash of n elements consists of the following steps: Initialize hasher state with the first 8 elements, setting the first capacity register to 0 if n is a multiple of the rate width (8) or else 1, and the remaining capacity elements to 0. Apply Rescue Prime Optimized permutation. Absorb the next set of elements into the state (up to 8 elements), while keeping capacity elements unchanged. Repeat steps 2 and 3 until all n elements have been absorbed. Return elements [4,8) of the hasher state as output. The chiplet accomplishes the above by executing the following instructions (for hashing 16 elements): [BP, HR] // init state and execute a hash round (concurrently)\nHR HR HR HR HR HR // execute 6 more hash rounds\nABP // absorb the next set of elements into the state\nHR HR HR HR HR HR HR // execute 7 hash rounds\nHOUT // return elements 4, 5, 6, 7 of the state as output Execution trace for this computation would look as illustrated below. hash_linear_hash_n In the above, the value absorbed into hasher state between rows 7 and 8 is the delta between values ti and si. Thus, if we define bi=ti−si for i∈[0,8), the above computes the following: {r0,r1,r2,r3}←hash(a0,...,a7,b0,...,b7)","breadcrumbs":"Design » Chiplets » Hash Chiplet » Linear hash of n elements","id":"238","title":"Linear hash of n elements"},"239":{"body":"Verifying a Merkle path involves the following steps: Initialize hasher state with the leaf and the first node of the path, setting all capacity elements to 0s. a. Also, initialize the index register to the leaf's index value. Apply Rescue Prime Optimized permutation. a. Make sure the index value doesn't change during this step. Copy the result of the hash to the next row, and absorb the next node of the Merkle path into the hasher state. a. Remove a single bit from the index, and use it to determine how to place the copied result and absorbed node in the state. Repeat steps 2 and 3 until all nodes of the Merkle path have been absorbed. Return elements [4,8) of the hasher state as output. a. Also, make sure the index value has been reduced to 0. The chiplet accomplishes the above by executing the following instructions (for Merkle tree of depth 3): [MP, HR] // init state and execute a hash round (concurrently)\nHR HR HR HR HR HR // execute 6 more hash rounds\nMPA // copy result & absorb the next node into the state\nHR HR HR HR HR HR HR // execute 7 hash rounds\nHOUT // return elements 4, 5, 6, 7 of the state as output Suppose we have a Merkle tree as illustrated below. This Merkle tree has 4 leaves, each of which consists of 4 field elements. For example, leaf a consists of elements a0,a1,a2,a3, leaf be consists of elements b0,b1,b2,b3 etc. hash_merkle_tree If we wanted to verify that leaf d is in fact in the tree, we'd need to compute the following hashes: r←hash(e,hash(c,d)) And if r=g, we can be convinced that d is in fact in the tree at position 3. Execution trace for this computation would look as illustrated below. hash_merkle_tree_trace In the above, the prover provides values for nodes c and e non-deterministically.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Verify Merkle path","id":"239","title":"Verify Merkle path"},"24":{"body":"The Miden Read–eval–print loop (REPL) is a Miden shell that allows for quick and easy debugging of Miden assembly. After the REPL gets initialized, you can execute any Miden instruction, undo executed instructions, check the state of the stack and memory at a given point, and do many other useful things! When the REPL is exited, a history.txt file is saved. One thing to note is that all the REPL native commands start with an ! to differentiate them from regular assembly instructions. Miden REPL can be started via the CLI repl command like so: ./target/optimized/miden repl","breadcrumbs":"Development tooling » REPL » Miden REPL","id":"24","title":"Miden REPL"},"240":{"body":"Updating a node in a Merkle tree (which also updates the root of the tree) can be simulated by verifying two Merkle paths: the path that starts with the old leaf and the path that starts with the new leaf. Suppose we have the same Merkle tree as in the previous example, and we want to replace node d with node d′. The computations we'd need to perform are: r←hash(e,hash(c,d))r′←hash(e,hash(c,d′)) Then, as long as r=g, and the same values were used for c and e in both computations, we can be convinced that the new root of the tree is r′. The chiplet accomplishes the above by executing the following instructions: // verify the old merkle path\n[MV, HR] // init state and execute a hash round (concurrently)\nHR HR HR HR HR HR // execute 6 more hash rounds\nMPV // copy result & absorb the next node into the state\nHR HR HR HR HR HR HR // execute 7 hash rounds\nHOUT // return elements 4, 5, 6, 7 of the state as output // verify the new merkle path\n[MU, HR] // init state and execute a hash round (concurrently)\nHR HR HR HR HR HR // execute 6 more hash rounds\nMPU // copy result & absorb the next node into the state\nHR HR HR HR HR HR HR // execute 7 hash rounds\nHOUT // return elements 4, 5, 6, 7 of the state as output The semantics of MV and MU instructions are similar to the semantics of MP instruction from the previous example (and MVA and MUA are similar to MPA) with one important difference: MV* instructions add the absorbed node (together with its index in the tree) to permutation column p1, while MU* instructions remove the absorbed node (together with its index in the tree) from p1. Thus, if the same nodes were used during both Merkle path verification, the state of p1 should not change. This mechanism is used to ensure that the same internal nodes were used in both computations.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Update Merkle root","id":"240","title":"Update Merkle root"},"241":{"body":"When describing AIR constraints, we adopt the following notation: for column x, we denote the value in the current row simply as x, and the value in the next row of the column as x′. Thus, all transition constraints described in this note work with two consecutive rows of the execution trace.","breadcrumbs":"Design » Chiplets » Hash Chiplet » AIR constraints","id":"241","title":"AIR constraints"},"242":{"body":"For selector columns, first we must ensure that only binary values are allowed in these columns. This can be done with the following constraints: s02−s0=0 | degree=2s12−s1=0 | degree=2s22−s2=0 | degree=2 Next, we need to make sure that unless fout=1 or fout′=1, the values in columns s1 and s2 are copied over to the next row. This can be done with the following constraints: (s1′−s1)⋅(1−fout′)⋅(1−fout)=0 | degree=7(s2′−s2)⋅(1−fout′)⋅(1−fout)=0 | degree=7 Next, we need to enforce that if any of fabp,fmpa,fmva,fmua flags is set to 1, the next value of s0 is 0. In all other cases, s0 should be unconstrained. These flags will only be set for rows that are 1 less than a multiple of 8 (the last row of each cycle). This can be done with the following constraint: s0′⋅(fabp+fmpa+fmva+fmua)=0 | degree=5 Lastly, we need to make sure that no invalid combinations of flags are allowed. This can be done with the following constraints: k0⋅(1−s0)⋅s1=0 | degree=3 The above constraints enforce that on every step which is one less than a multiple of 8, if s0=0, then s1 must also be set to 0. Basically, if we set s0=0, then we must make sure that either fhout=1 or fsout=1.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Selector columns constraints","id":"242","title":"Selector columns constraints"},"243":{"body":"Node index column i is relevant only for Merkle path verification and Merkle root update computations, but to simplify the overall constraint system, the same constraints will be imposed on this column for all computations. Overall, we want values in the index column to behave as follows: When we start a new computation, we should be able to set i to an arbitrary value. When a computation is finished, value in i must be 0. When we absorb a new node into the hasher state we must shift the value in i by one bit to the right. In all other cases value in i should not change. A shift by one bit to the right can be described with the following equation: i=2⋅i′+b, where b is the value of the bit which is discarded. Thus, as long as b is a binary value, the shift to the right is performed correctly, and this can be enforced with the following constraint: b2−b=0 Since we want to enforce this constraint only when a new node is absorbed into the hasher state, we'll define a flag for when this should happen as follows: fan=fmp+fmv+fmu+fmpa+fmva+fmua And then the full constraint would looks as follows: fan⋅(b2−b)=0 | degree=6 Next, to make sure when a computation is finished i=0, we can use the following constraint: fout⋅i=0 | degree=4 Finally, to make sure that the value in i is copied over to the next row unless we are absorbing a new row or the computation is finished, we impose the following constraint: (1−fan−fout)⋅(i′−i)=0 | degree=5 To satisfy these constraints for computations not related to Merkle paths (i.e., 2-to-1 hash and liner hash of elements), we can set i=0 at the start of the computation. This guarantees that i will remain 0 until the end of the computation.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Node index constraints","id":"243","title":"Node index constraints"},"244":{"body":"Hasher state columns h0,...,h11 should behave as follows: For the first 7 row of every 8-row cycle (i.e., when k0=0), we need to apply Rescue Prime Optimized round constraints to the hasher state. For brevity, we omit these constraints from this note. On the 8th row of every 8-row cycle, we apply the constraints based on which transition flag is set as described in the table below. Specifically, when absorbing the next set of elements into the state during linear hash computation (i.e., fabp=1), the first 4 elements (the capacity portion) are carried over to the next row. For j∈[0,4) this can be described as follows: fabp⋅(hj′−hj)=0 | degree=5 When absorbing the next node during Merkle path computation (i.e., fmp+fmv+fmu=1), the result of the previous hash (h4,...,h7) are copied over either to (h4′,...,h7′) or to (h8′,...,h11′) depending on the value of b, which is defined in the same way as in the previous section. For j∈[0,4) this can be described as follows: (fmp+fmv+fmu)⋅((1−b)⋅(hj+4′−hj+4)+b⋅(hj+8′−hj+4))=0 | degree=6 Note, that when a computation is completed (i.e., fout=1), the next hasher state is unconstrained.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Hasher state constraints","id":"244","title":"Hasher state constraints"},"245":{"body":"In this sections we describe constraints which enforce updates for multiset check columns bchip and p1. These columns can be updated only on rows which are multiples of 8 or 1 less than a multiple of 8. On all other rows the values in the columns remain the same. To simplify description of the constraints, we define the following variables. Below, we denote random values sent by the verifier after the prover commits to the main execution trace as α0, α1, α2 etc. m=oplabel+24⋅k0+25⋅k2vh=α0+α1⋅m+α2⋅(clk+1)+α3⋅iva=j=0∑3(αj+4⋅hj)vb=j=4∑7(αj+4⋅hj)vc=j=8∑11(αj+4⋅hj)vd=j=8∑11(αj⋅hj) In the above: m is a transition label , composed of the operation label and the periodic columns that uniquely identify each transition function. The values in the k0 and k2 periodic columns are included to identify the row in the hash cycle where the operation occurs. They serve to differentiate between operations that share selectors but occur at different rows in the cycle, such as BP, which uses oplinhash at the first row in the cycle to initiatiate a linear hash, and ABP, which uses oplinhash at the last row in the cycle to absorb new elements. vh is a common header which is a combination of the transition label, a unique row address, and the node index. For the unique row address, the clk column from the system component is used, but we add 1, because the system's clk column starts at 0. va, vb, vc are the first, second, and third words (4 elements) of the hasher state. vd is the third word of the hasher state but computed using the same α values as used for the second word. This is needed for computing the value of vleaf below to ensure that the same α values are used for the leaf node regardless of which part of the state the node comes from. Chiplets bus constraints As described previously, the chiplets bus bchip, implemented as a running product column, is used to tie the hash chiplet with the main VM's stack and decoder. When receiving inputs from or returning results to the stack (or decoder), the hash chiplet multiplies bchip by their respective values. On the other side, when sending inputs to the hash chiplet or receiving results from the chiplet, the stack (or decoder) divides bchip by their values. In the section below we describe only the hash chiplet side of the constraints (i.e., multiplying bchip by relevant values). We define the values which are to be multiplied into bchip for each operation as follows: When starting a new simple or linear hash computation (i.e., fbp=1) or when returning the entire state of the hasher (fsout=1), the entire hasher state is included into bchip: vall=vh+va+vb+vc When starting a Merkle path computation (i.e., fmp+fmv+fmu=1), we include the leaf of the path into bchip. The leaf is selected from the state based on value of b (defined as in the previous section): vleaf=vh+(1−b)⋅vb+b⋅vd When absorbing a new set of elements into the state while computing a linear hash (i.e., fabp=1), we include deltas between the last 8 elements of the hasher state (the rate) into bchip: vabp=vh+vb′+vc′−(vb+vc) When a computation is complete (i.e., fhout=1), we include the second word of the hasher state (the result) into bchip: vres=vh+vb Using the above values, we can describe the constraints for updating column bchip as follows. bchip′=bchip⋅((fbp+fsout)⋅vall+(fmp+fmv+fmu)⋅vleaf+fabp⋅vabp+fhout⋅vres+1−(fbp+fmp+fmv+fmu+fabp+fout)) The above constraint reduces to the following under various flag conditions: Condition Applied constraint fbp=1 bchip′=bchip⋅vall fsout=1 bchip′=bchip⋅vall fmp=1 bchip′=bchip⋅vleaf fmv=1 bchip′=bchip⋅vleaf fmu=1 bchip′=bchip⋅vleaf fabp=1 bchip′=bchip⋅vabp fhout=1 bchip′=bchip⋅vres Otherwise bchip′=bchip Note that the degree of the above constraint is 7. Sibling table constraints Note: Although this table is described independently, it is implemented as part of the chiplets virtual table , which combines all virtual tables required by the any of the chiplets into a single master table. As mentioned previously, the sibling table (represented by running column p1) is used to keep track of sibling nodes used during Merkle root update computations. For this computation, we need to enforce the following rules: When computing the old Merkle root, whenever a new sibling node is absorbed into the hasher state (i.e., fmv+fmva=1), an entry for this sibling should be included into p1. When computing the new Merkle root, whenever a new sibling node is absorbed into the hasher state (i.e., fmu+fmua=1), the entry for this sibling should be removed from p1. To simplify the description of the constraints, we use variables vb and vc defined above and define the value representing an entry in the sibling table as follows: vsibling=α0+α3⋅i+b⋅vb+(1−b)⋅vc Using the above value, we can define the constraint for updating p1 as follows: p1′⋅((fmv+fmva)⋅vsibling+1−(fmv+fmva))=p1⋅((fmu+fmua)⋅vsibling+1−(fmu+fmua)) The above constraint reduces to the following under various flag conditions: Condition Applied constraint fmv=1 p1′⋅vsibling=p1 fmva=1 p1′⋅vsibling=p1 fmu=1 p1′=p1⋅vsibling fmua=1 p1′=p1⋅vsibling Otherwise p1′=p1 Note that the degree of the above constraint is 7. To make sure computation of the old Merkle root is immediately followed by the computation of the new Merkle root, we impose the following constraint: (fbp+fmp+fmv)⋅(1−p1)=0 | degree=5 The above means that whenever we start a new computation which is not the computation of the new Merkle root, the sibling table must be empty. Thus, after the hash chiplet computes the old Merkle root, the only way to clear the table is to compute the new Merkle root. Together with boundary constraints enforcing that p1=1 at the first and last rows of the running product column which implements the sibling table, the above constraints ensure that if a node was included into p1 as a part of computing the old Merkle root, the same node must be removed from p1 as a part of computing the new Merkle root. These two boundary constraints are described as part of the chiplets virtual table constraints .","breadcrumbs":"Design » Chiplets » Hash Chiplet » Multiset check constraints","id":"245","title":"Multiset check constraints"},"246":{"body":"In this note we describe how to compute bitwise AND and XOR operations on 32-bit values and the constraints required for proving correct execution. Assume that a and b are field elements in a 64-bit prime field. Assume also that a and b are known to contain values smaller than 232. We want to compute a⊕b→z, where ⊕ is either bitwise AND or XOR, and z is a field element containing the result of the corresponding bitwise operation. First, observe that we can compute AND and XOR relations for single bit values as follows: and(a,b)=a⋅b xor(a,b)=a+b−2⋅a⋅b To compute bitwise operations for multi-bit values, we will decompose the values into individual bits, apply the operations to single bits, and then aggregate the bitwsie results into the final result. To perform this operation we will use a table with 12 columns, and computing a single AND or XOR operation will require 8 table rows. We will also rely on two periodic columns as shown below. bitwise_execution_trace In the above, the columns have the following meanings: Periodic columns k0 and k1. These columns contain values needed to switch various constraint on or off. k0 contains a repeating sequence of a single one, followed by seven zeros. k1 contains a repeating sequence of seven ones, followed by a single zero. Input columns a and b. On the first row of each 8-row cycle, the prover will set values in these columns to the upper 4 bits of the values to which a bitwise operation is to be applied. For all subsequent rows, we will append the next-most-significant 4-bit limb to each value. Thus, by the final row columns a and b will contain the full input values for the bitwise operation. Columns a0, a1, a2, a3, b0, b1, b2, b3 will contain lower 4 bits of their corresponding values. Output column zp. This column represents the value of column z for the prior row. For the first row, it is set to 0. Output column z. This column will be used to aggregate the results of bitwise operations performed over columns a0, a1, a2, a3, b0, b1, b2, b3. By the time we get to the last row in each 8-row cycle, this column will contain the final result.","breadcrumbs":"Design » Chiplets » Bitwise Chiplet » Bitwise chiplet","id":"246","title":"Bitwise chiplet"},"247":{"body":"Let's illustrate the above table on a concrete example. For simplicity, we'll use 16-bit values, and thus, we'll only need 4 rows to complete the operation (rather than 8 for 32-bit values). Let's say a=41851 (b1010_0011_0111_1011) and b=40426 (b1001_1101_1110_1010), then and(a,b)=33130 (b1000_0001_0110_1010). The table for this computation looks like so: a b x0 x1 x2 x3 y0 y1 y2 y3 zp z 10 9 0 1 0 1 1 0 0 1 0 8 163 157 1 1 0 0 1 0 1 1 8 129 2615 2526 1 1 1 0 0 1 1 1 129 2070 41851 40426 1 1 0 1 0 1 0 1 2070 33130 Here, in the first row, we set each of the a and b columns to the value of their most-significant 4-bit limb. The bit columns (a0..a3 and b0..b3) in the first row contain the lower 4 bits of their corresponding values (b1010 and b1001). Column z contains the result of bitwise AND for the upper 4 bits (b1000), while column zp contains that result for the prior row. With every subsequent row, we inject the next-most-significant 4 bits of each value into the bit columns, increase the a and b columns accordingly, and aggregate the result of bitwise AND into the z column, adding it to 24 times the value of z in the previous row. We set column zp to be the value of z in the prior row. By the time we get to the last row, the z column contains the result of the bitwise AND, while columns a and b contain their original values.","breadcrumbs":"Design » Chiplets » Bitwise Chiplet » Example","id":"247","title":"Example"},"248":{"body":"AIR constraints needed to ensure the correctness of the above table are described below. We also add one more column s to the execution trace, to allow us to select between two bitwise operations (U32AND and U32XOR).","breadcrumbs":"Design » Chiplets » Bitwise Chiplet » Constraints","id":"248","title":"Constraints"},"249":{"body":"The Bitwise chiplet supports two operations with the following operation selectors: U32AND: s=0 U32XOR: s=1 The constraints must require that the selectors be binary and stay the same throughout the cycle: s2−s=0 | degree=2 k1⋅(s′−s)=0 | degree=2","breadcrumbs":"Design » Chiplets » Bitwise Chiplet » Selectors","id":"249","title":"Selectors"},"25":{"body":"All Miden instructions mentioned in the Miden Assembly sections are valid. One can either input instructions one by one or multiple instructions in one input. For example, the below two commands will result in the same output. >> push.1\n>> push.2\n>> push.3 push.1 push.2 push.3 To execute a control flow operation, one must write the entire statement in a single line with spaces between individual operations. repeat.20 pow2\nend The above example should be written as follows in the REPL tool: repeat.20 pow2 end","breadcrumbs":"Development tooling » REPL » Miden assembly instruction","id":"25","title":"Miden assembly instruction"},"250":{"body":"We need to make sure that inputs a and b are decomposed correctly into their individual bits. To do this, first, we need to make sure that columns a0, a1, a2, a3, b0, b1, b2, b3, can contain only binary values (0 or 1). This can be accomplished with the following constraints (for i ranging between 0 and 3): ai2−ai=0 | degree=2 bi2−bi=0 | degree=2 Then, we need to make sure that on the first row of every 8-row cycle, the values in the columns a and b are exactly equal to the aggregation of binary values contained in the individual bit columns ai, and bi. This can be enforced with the following constraints: k0⋅(a−i=0∑3(2i⋅ai))=0 | degree=2 k0⋅(b−i=0∑3(2i⋅bi))=0 | degree=2 The above constraints enforce that when k0=1, a=∑i=03(2i⋅ai) and b=∑i=03(2i⋅bi). Lastly, we need to make sure that for all rows in an 8-row cycle except for the last one, the values in a and b columns are increased by the values contained in the individual bit columns ai and bi. Denoting a as the value of column a in the current row, and a′ as the value of column a in the next row, we can enforce these conditions as follows: k1⋅(a′−(a⋅16+i=0∑3(2i⋅ai′)))=0 | degree=2 k1⋅(b′−(b⋅16+i=0∑3(2i⋅bi′)))=0 | degree=2 The above constraints enforce that when k1=1 , a′=16⋅a+∑i=03(2i⋅ai′) and b′=16⋅b+∑i=03(2i⋅bi′).","breadcrumbs":"Design » Chiplets » Bitwise Chiplet » Input decomposition","id":"250","title":"Input decomposition"},"251":{"body":"To ensure correct aggregation of operations over individual bits, first we need to ensure that in the first row, the aggregated output value of the previous row should be 0. k0⋅zp=0 | degree=2 Next, we need to ensure that for each row except the last, the aggregated output value must equal the previous aggregated output value in the next row. k1⋅(z−zp′)=0 | degree=2 Lastly, we need to ensure that for all rows the value in the z column is computed by multiplying the previous output value (from the zp column in the current row) by 16 and then adding it to the bitwise operation applied to the row's set of bits of a and b. The entire constraint must also be multiplied by the operation selector flag to ensure it is only applied for the appropriate operation. For U32AND, this is enforced with the following constraint: (1−s)⋅(z−(zp⋅16+i=0∑3(2i⋅ai⋅bi)))=0 | degree=3 For U32XOR, this is enforced with the following constraint: s⋅(z−(zp⋅16+i=0∑3(2i⋅(ai+bi−2⋅ai⋅bi))))=0 | degree=3","breadcrumbs":"Design » Chiplets » Bitwise Chiplet » Output aggregation","id":"251","title":"Output aggregation"},"252":{"body":"To simplify the notation for describing bitwise constraints on the chiplets bus, we'll first define variable u, which represents how a, b, and z in the execution trace are reduced to a single value. Denoting the random values received from the verifier as α0,α1, etc., this can be achieved as follows. u=α0+α1⋅opbit+α2⋅a+α3⋅b+α4⋅z Where, opbit is the unique operation label of the bitwise operation. The request side of the constraint for the bitwise operation is described in the stack bitwise operation section . To provide the results of bitwise operations to the chiplets bus, we want to include values of a, b and z at the last row of the cycle. First, we'll define another intermediate variable vi. It will include u into the product when k1=0. (ui represents the value of u for row i of the trace.) vi=(1−k1)⋅ui Then, setting m=1−k1, we can compute the permutation product from the bitwise chiplet as follows: i=0∏n(vi⋅mi+1−mi) The above ensures that when 1−k1=0 (which is true for all rows in the 8-row cycle except for the last one), the product does not change. Otherwise, vi gets included into the product. The response side of the bus communication can be enforced with the following constraint: bchip′=bchip⋅(vi⋅mi+1−mi) | degree=4","breadcrumbs":"Design » Chiplets » Bitwise Chiplet » Chiplets bus constraints","id":"252","title":"Chiplets bus constraints"},"253":{"body":"Miden VM supports linear read-write random access memory. This memory is word-addressable, meaning, four values are located at each address, and we can read and write values to/from memory in batches of four. Each value is a field element in a 64-bit prime field with modulus 264−232+1. Memory address can be any field element. In this note we describe the rational for selecting the above design and describe AIR constraints needed to support it. The design makes extensive use of 16-bit range checks. An efficient way of implementing such range checks is described here .","breadcrumbs":"Design » Chiplets » Memory Chiplet » Memory chiplet","id":"253","title":"Memory chiplet"},"254":{"body":"The simplest (and most efficient) alternative to the above design is contiguous write-once memory. To support such memory, we need to allocate just two trace columns as illustrated below. memory_alternative_design In the above, addr column holds memory address, and value column holds the field element representing the value stored at this address. Notice that some rows in this table are duplicated. This is because we need one row per memory access (either read or write operation). In the example above, value b was first stored at memory address 1, and then read from this address. The AIR constraints for this design are very simple. First, we need to ensure that values in the addr column either remain the same or are incremented by 1 as we move from one row to the next. This can be achieved with the following constraint: (a′−a)⋅(a′−a−1)=0 where a is the value in addr column in the current row, and a′ is the value in this column in the next row. Second, we need to make sure that if the value in the addr column didn't change, the value in the value column also remained the same (i.e., a value stored in a given address can only be set once). This can be achieved with the following constraint: (v′−v)⋅(a′−a−1)=0 where v is the value in value column at the current row, and v′ is the value in this column in the next row. In addition to the above constraints we would also need to impose constraints needed for permutation checks, but we omit these constraints here because they are needed for all designs described in this note. As mentioned above, this approach is very efficient: each memory access requires just 2 trace cells.","breadcrumbs":"Design » Chiplets » Memory Chiplet » Alternative designs","id":"254","title":"Alternative designs"},"255":{"body":"Write-once memory is tricky to work with, and many developers may need to climb a steep learning curve before they become comfortable working in this model. Thus, ideally, we'd want to support read-write memory. To do this, we need to introduce additional columns as illustrated below. memory_read_write In the above, we added clk column, which keeps track of the clock cycle at which memory access happened. We also need to differentiate between memory reads and writes. To do this, we now use two columns to keep track of the value: old val contains the value stored at the address before the operation, and new val contains the value after the operation. Thus, if old val and new val are the same, it was a read operation. If they are different, it was a write operation. The AIR constraints needed to support the above structure are as follows. We still need to make sure memory addresses are contiguous: (a′−a)⋅(a′−a−1)=0 Whenever memory address changes, we want to make sure that old val is set to 0 (i.e., our memory is always initialized to 0). This can be done with the following constraint: (a′−a)⋅vold′=0 On the other hand, if memory address doesn't change, we want to make sure that new val in the current row is the same as old val in the next row. This can be done with the following constraint: (1+a−a′)⋅(vnew−vold′)=0 Lastly, we need to make sure that for the same address values in clk column are always increasing. One way to do this is to perform a 16-bit range check on the value of (i′−i−1), where i is the reference to clk column. However, this would mean that memory operations involving the same address must happen within 65536 VM cycles from each other. This limitation would be difficult to enforce statically. To remove this limitation, we need to add two more columns as shown below: memory_limitation_diagram In the above column d0 contains the lower 16 bits of (i′−i−1) while d1 contains the upper 16 bits. The constraint needed to enforces this is as follows: (1+a−a′)⋅((i′−i−1)−(216⋅d1′+d0′))=0 Additionally, we need to apply 16-bit range checks to columns d0 and d1. Overall, the cost of reading or writing a single element is now 6 trace cells and 2 16-bit range-checks.","breadcrumbs":"Design » Chiplets » Memory Chiplet » Read-write memory","id":"255","title":"Read-write memory"},"256":{"body":"Requiring that memory addresses are contiguous may also be a difficult limitation to impose statically. To remove this limitation, we need to introduce one more column as shown below: memory_non_contiguous_memory In the above, the prover sets the value in the new column t to 0 when the address doesn't change, and to 1/(a′−a) otherwise. To simplify constraint description, we'll define variable n computed as follows: n=(a′−a)⋅t′ Then, to make sure the prover sets the value of t correctly, we'll impose the following constraints: n2−n=0(1−n)⋅(a′−a)=0 The above constraints ensure that n=1 whenever the address changes, and n=0 otherwise. We can then define the following constraints to make sure values in columns d0 and d1 contain either the delta between addresses or between clock cycles. Condition Constraint Comments n=1 (a′−a)−(216⋅d1′+d0′)=0 When the address changes, columns d0 and d1 at the next row should contain the delta between the old and the new address. n=0 (i′−i−1)−(216⋅d1′+d0′)=0 When the address remains the same, columns d0 and d1 at the next row should contain the delta between the old and the new clock cycle. We can combine the above constraints as follows: (n⋅(a′−a)+(1−n)⋅(i′−i−1))−(216⋅d1′+d0′)=0 The above constraint, in combination with 16-bit range checks against columns d0 and d1 ensure that values in addr and clk columns always increase monotonically, and also that column addr may contain duplicates, while values in clk column must be unique for a given address.","breadcrumbs":"Design » Chiplets » Memory Chiplet » Non-contiguous memory","id":"256","title":"Non-contiguous memory"},"257":{"body":"In many situations it may be desirable to assign memories to different context. For example, when making a cross-contract calls, memories of the caller and the callee should be separate. That is, caller should not be able to access the memory of the callee and vice-versa. To accommodate this feature, we need to add one more column as illustrated below. memory_context_separation This new column ctx should behave similarly to the address column: values in it should increase monotonically, and there could be breaks between them. We also need to change how the prover populates column t: If the context changes, t should be set to the inverse (c′−c), where c is a reference to column ctx. If the context remains the same but the address changes, column t should be set to the inverse of (a′−a). Otherwise, column t should be set to 0. To simplify description of constraints, we'll define two variables n0 and n1 as follows: n0=(c′−c)⋅t′n1=(a′−a)⋅t′ Thus, n0=1 when the context changes, and 0 otherwise. Also, (1−n0)⋅n1=1 when context remains the same and address changes, and 0 otherwise. To make sure the prover sets the value of column t correctly, we'll need to impose the following constraints: n02−n0=0(1−n0)⋅(c′−c)=0(1−n0)⋅(n12−n1)=0(1−n0)⋅(1−n1)⋅(a′−a)=0 We can then define the following constraints to make sure values in columns d0 and d1 contain the delta between contexts, between addresses, or between clock cycles. Condition Constraint Comments n0=1 (c′−c)−(216⋅d1′+d0′)=0 When the context changes, columns d0 and d1 at the next row should contain the delta between the old and the new contexts. n0=0 n1=1 (a′−a)−(216⋅d1′+d0′)=0 When the context remains the same but the address changes, columns d0 and d1 at the next row should contain the delta between the old and the new addresses. n0=0 n1=0 (i′−i−1)−(216⋅d1′+d0′)=0 When both the context and the address remain the same, columns d0 and d1 at the next row should contain the delta between the old and the new clock cycle. We can combine the above constraints as follows: (n0⋅(c′−c)+(1−n0)⋅(n1⋅(a−a′)+(1−n1)⋅(i′−i−1)))−(216⋅d1′+d0′)=0 The above constraint, in combination with 16-bit range checks against columns d0 and d1 ensure that values in ctx, addr, and clk columns always increase monotonically, and also that columns ctx and addr may contain duplicates, while the values in column clk must be unique for a given combination of ctx and addr. Notice that the above constraint has degree 5.","breadcrumbs":"Design » Chiplets » Memory Chiplet » Context separation","id":"257","title":"Context separation"},"258":{"body":"While the approach described above works, it comes at significant cost. Reading or writing a single value requires 8 trace cells and 2 16-bit range checks. Assuming a single range check requires roughly 2 trace cells, the total number of trace cells needed grows to 12. This is about 6x worse the simple contiguous write-once memory described earlier. Miden VM frequently needs to deal with batches of 4 field elements, which we call words . For example, the output of Rescue Prime Optimized hash function is a single word. A single 256-bit integer value can be stored as two words (where each element contains one 32-bit value). Thus, we can optimize for this common use case by making the memory word-addressable . That is 4 field elements are located at each memory address, and we can read and write elements to/from memory in batches of four. The layout of Miden VM memory table is shown below: memory_miden_vm_layout where: s0 is a selector column which is set to 1 for read operations and 0 for write operations. s1 is a selector oclumn which is set to 1 when previously accessed memory is being read and 0 otherwise. In other words, it is set to 1 only when the context and address are the same as they were in the previous row and the s0 operation selector is set to 1 (indicating a read). ctx contains context ID. Values in this column must increase monotonically but there can be gaps between two consecutive values of up to 232. Also, two consecutive values can be the same. In AIR constraint description below, we refer to this column as c. addr contains memory address. Values in this column must increase monotonically for a given context but there can be gaps between two consecutive values of up to 232. Also, two consecutive values can be the same. In AIR constraint description below, we refer to this column as a. clk contains clock cycle at which the memory operation happened. Values in this column must increase monotonically for a given context and memory address but there can be gaps between two consecutive values of up to 232. In AIR constraint description below, we refer to this column as i. v0, v1, v2, v3 columns contain field elements stored at a given context/address/clock cycle after the memory operation. Columns d0 and d1 contain lower and upper 16 bits of the delta between two consecutive context IDs, addresses, or clock cycles. Specifically: When the context changes, these columns contain (c′−c). When the context remains the same but the address changes, these columns contain (a′−a). When both the context and the address remain the same, these columns contain (i′−i−1). Column t contains the inverse of the delta between two consecutive context IDs, addresses, or clock cycles. Specifically: When the context changes, this column contains the inverse of (c′−c). When the context remains the same but the address changes, this column contains the inverse of (a′−a). When both the context and the address remain the same, this column contains the inverse of (i′−i−1). For every memory access operation (i.e., read or write), a new row is added to the memory table. For read operations, s0 is set to 1. If neither ctx nor addr have changed, then s1 is set to 1 and the v columns are set to equal the values from the previous row. If ctx or addr have changed, then s1 is set to 0 and the v columns are initialized to 0. For write operations, the values may be different, and both selector columns s0 and s1 are set to 0. The amortized cost of reading or writing a single value is between 4 and 5 trace cells (this accounts for the trace cells needed for 16-bit range checks). Thus, from performance standpoint, this approach is roughly 2.5x worse than the simple contiguous write-once memory described earlier. However, our view is that this trade-off is worth it given that this approach provides read-write memory, context separation, and eliminates the contiguous memory requirement.","breadcrumbs":"Design » Chiplets » Memory Chiplet » Miden approach","id":"258","title":"Miden approach"},"259":{"body":"To simplify description of constraints, we'll define two variables n0 and n1 as follows: n0=Δc⋅t′n1=Δa⋅t′ Where Δc=c′−c and Δa=a′−a. To make sure the prover sets the value of column t correctly, we'll need to impose the following constraints: n02−n0=0 | degree=4 (1−n0)⋅Δc=0 | degree=3 (1−n0)⋅(n12−n1)=0 | degree=6 (1−n0)⋅(1−n1)⋅Δa=0 | degree=5 The above constraints guarantee that when context changes, n0=1. When context remains the same but address changes, (1−n0)⋅n1=1. And when neither the context nor the address change, (1−n0)⋅(1−n1)=1. To enforce the values of the selector columns, we first require that they both contain only binary values. s02−s0=0 | degree=2 s12−s1=0 | degree=2 Then we require that s1 is always set to 1 during read operations when the context and address did not change and to 0 in all other cases. (1−n0)⋅(1−n1)⋅s0′⋅(1−s1′)=0 | degree=6 (n0+(1−n0)⋅n1+(1−s0′))⋅s1′=0 | degree=5 The first constraint enforces that s_1 is 1 when the operation is a read and ctx and addr are both unchanged. The second constraint enforces that when either the context changed, the address changed, or the operation is a write, then s_1 is set to 0. To enforce the values of context ID, address, and clock cycle grow monotonically as described in the previous section, we define the following constraint. (n0⋅Δc+(1−n0)⋅(n1⋅Δa+(1−n1)⋅Δi))−(216⋅d1′+d0′)=0 | degree=5 Where Δi=i′−i−1. In addition to this constraint, we also need to make sure that values in registers d0 and d1 are less than 216, and this can be done with permutation-based range checks. Next, we need to make sure that values at a given memory address are always initialized to 0. This can be done with the following constraint: s0⋅(1−s1)⋅vi=0 for i∈{0,1,2,3} | degree=3 Thus, when the operation is a read and either the context changes or the address changes, values in the vi columns are guaranteed to be zeros. Lastly, we need to make sure that for the same context/address combination, the vi columns of the current row are equal to the corresponding vi columns of the next row. This can be done with the following constraints: s1⋅(vi′−vi)=0 for i∈{0,1,2,3} | degree=2 Chiplets bus constraints Communication between the memory chiplet and the stack is accomplished via the chiplets bus bchip. To respond to memory access requests from the stack, we need to divide the current value in bchip by the value representing a row in the memory table. This value can be computed as follows: vmem=α0+α1⋅opmem+α2⋅c+α3⋅a+α4⋅i+j=0∑3(αj+5⋅vj) Where, opmem is the unique operation label of the memory access operation. To ensure that values of memory table rows are included into the chiplets bus, we impose the following constraint: bchip′=bchip⋅vmem | degree=2 On the stack side, for every memory access request, a corresponding value is divided out of the bchip column. Specifics of how this is done are described here .","breadcrumbs":"Design » Chiplets » Memory Chiplet » AIR constraints","id":"259","title":"AIR constraints"},"26":{"body":"The !help command prints out all the available commands in the REPL tool.","breadcrumbs":"Development tooling » REPL » !help","id":"26","title":"!help"},"260":{"body":"The kernel ROM enables executing predefined kernel procedures. These procedures are always executed in the root context and can only be accessed by a SYSCALL operation. The chiplet tracks and enforces correctness of all kernel procedure calls as well as maintaining a list of all the procedures defined for the kernel, whether they are executed or not. More background about Miden VM execution contexts can be found here .","breadcrumbs":"Design » Chiplets » Kernel ROM Chiplet » Kernel ROM chiplet","id":"260","title":"Kernel ROM chiplet"},"261":{"body":"The kernel ROM table consists of 6 columns. kernel_rom_execution_trace The meaning of columns in the above is as follows: Column s0 specifies whether the value in the row should be included into the chiplets bus bchip. addr is a row address column which starts out at 0 and must either remain the same or be incremented by 1 with every row. r0,...,r3 are contain the roots of the kernel functions. The values in these columns can change only when the value in the addr column changes. If the addr column remains the same, the values in the r columns must also remain the same.","breadcrumbs":"Design » Chiplets » Kernel ROM Chiplet » Kernel ROM trace","id":"261","title":"Kernel ROM trace"},"262":{"body":"The following constraints are required to enforce correctness of the kernel ROM trace. For convenience, let's define Δaddr=addr′−addr. The s0 column must be binary. s02−s0=0 | degree=2 The value in the addr column must either stay the same or increase by 1. Δaddr⋅(1−Δaddr)=0 | degree=2 Finally, if the addr column stays the same then the kernel procedure root must not change. This can be achieved by enforcing the following constraint against each of the four procedure root columns: (1−Δaddr)⋅(ri′−ri)=0 | degree=2 These constraints on addr should not be applied to the very last row of the kernel ROM's execution trace, since we do not want to enforce a value that would conflict with the first row of a subsequent chiplet (or padding). Therefore we can create a special virtual flag for this constraint using the chip_s3 selector column from the chiplets module that selects for the kernel ROM chiplet. The modified constraints which should be applied are the following: (1−chip_s3′)⋅Δaddr⋅(1−Δaddr)=0 | degree=3 (1−chip_s3′)⋅(1−Δaddr)⋅(ri′−ri)=0 | degree=3 Note: these constraints should also be multiplied by chiplets module's selector flag for the kernel ROM chiplet, as is true for all constraints in this chiplet.","breadcrumbs":"Design » Chiplets » Kernel ROM Chiplet » Constraints","id":"262","title":"Constraints"},"263":{"body":"The chiplets bus is used to keep track of all kernel function calls. To simplify the notation for describing kernel ROM constraints on the chiplets bus, we'll first define variable u, which represents how each kernel procedure in the kernel ROM's execution trace is reduced to a single value. Denoting the random values received from the verifier as α0,α1, etc., this can be achieved as follows. v=α0+α1⋅opkrom+i=0∑3(αi+2⋅ri) Where, opkrom is the unique operation label of the kernel procedure call operation. The request side of the constraint for the operation is enforced during program block hashing of the SYSCALL operation . To provide accessed kernel procedures to the chiplets bus, we must send the kernel procedure to the bus every time it is called, which is indicated by the s0 column. bchip′=bchip⋅(s0⋅v+1−s0) | degree=3 Thus, when s0=0 this reduces to bchip′=bchip, but when s0=1 it becomes bchip′=bchip⋅u.","breadcrumbs":"Design » Chiplets » Kernel ROM Chiplet » Chiplets bus constraints","id":"263","title":"Chiplets bus constraints"},"264":{"body":"Note: Although this table is described independently, it is implemented as part of the chiplets virtual table , which combines all virtual tables required by the any of the chiplets into a single master table. This kernel procedure table keeps track of all unique kernel function roots. The values in this table will be updated only when the value in the address column changes. The row value included into vtchip is: v=α0+α1⋅addr+i=0∑3(αi+2⋅ri) The constraint against vtchip is: vtchip′=vtchip⋅(Δaddr⋅v+1−Δaddr) | degree=3 Thus, when Δaddr=0, the above reduces to vtchip′=vtchip, but when Δaddr=1, the above becomes vtchip′=vtchip⋅v. We also need to impose boundary constraints to make sure that running product column implementing the kernel procedure table is equal to 1 when the kernel procedure table begins and to the product of all unique kernel functions when it ends. The last boundary constraint means that the verifier only needs to know which kernel was used, but doesn't need to know which functions were invoked within the kernel. These two constraints are described as part of the chiplets virtual table constraints .","breadcrumbs":"Design » Chiplets » Kernel ROM Chiplet » Kernel procedure table constraints","id":"264","title":"Kernel procedure table constraints"},"265":{"body":"Zero knowledge virtual machines frequently make use of lookup arguments to enable performance optimizations. Miden VM uses multiset checks, and a brief introduction to them can be found here . In Miden VM, multiset checks are used for two purposes: To prove the consistency of intermediate values that must persist between different cycles of the trace, without storing the full data in the execution trace (which would require adding more columns to the trace). To prove correct interaction between two independent sections of the execution trace, e.g., between the main trace where the result of some operation is required, but would be expensive to compute, and a specialized component which can perform that operation cheaply. The first is achieved using virtual tables of data, where we add a row at some cycle in the trace and remove it at a later cycle when it is needed again. Instead of maintaining the entire table in the execution trace, multiset checks allow us to prove data consistency of this table using one running product column. The second is done by reducing each operation to a lookup value and then using a communication bus , implemented as a running product column, to provably connect the two sections of the trace.","breadcrumbs":"Design » Multiset checks » Multiset checks","id":"265","title":"Multiset checks"},"266":{"body":"Although the multiset equality check can be thought of as comparing multiset equality between two vectors a and b, in Miden VM it is implemented as a single running product column in the following way: The running product column is initialized to a value x at the beginning of the trace. (We typically use x=1.) All values of a are multiplied into the running product column. All values of b are divided out of the running product column. If a and b were multiset equal, then the running product column will equal x at the end of the trace. Running product columns are computed using a set of random values α0, α1,... sent to the prover by the verifier after the prover commits to the execution trace of the program. Length of running product columns Running product columns are computed by including information from the current row of the main execution trace into the next row of the running product column. Thus, in order to ensure that the trace is long enough to give the running product column space for its final value, a padding row may be required at the end of the trace of the component upon which the running product column depends. This is true when the data in the main trace could go all the way to the end of the trace, such as in the case of the range checker. Cost of running product columns It is important to note that depending on the field in which we operate, a running product column may actually require more than one trace column. This is specifically true for small fields. Since Miden uses a 64-bit field, each running product column needs to be represented by 2 columns to achieve ~100-bit security and by 3 columns to achieve ~128-bit security.","breadcrumbs":"Design » Multiset checks » Running product columns","id":"266","title":"Running product columns"},"267":{"body":"Virtual tables can be used to store intermediate data which is computed at one cycle and used at a different cycle. When the data is computed, the row is added to the table, and when it is used later, the row is deleted from the table. Thus, all that needs to be proved is the data consistency between the row that was added and the row that was deleted. The consistency of a virtual table can be proved with a single trace column p, which keeps a running product of rows that were inserted into and deleted from the table. This is done by reducing each row to a single value, multiplying the value into p when the row is inserted, and dividing the value out of p when the row is removed. Thus, at any step of the computation, p will contain a product of all rows currently in the table. The initial value of p is set to 1. Thus, if the table is empty by the time Miden VM finishes executing a program (we added and then removed exactly the same set of rows), the final value of p will also be equal to 1. The initial and final values are enforced via boundary constraints.","breadcrumbs":"Design » Multiset checks » Virtual tables","id":"267","title":"Virtual tables"},"268":{"body":"To compute a product of rows, we'll first need to reduce each row to a single value. This can be done as follows. Let t0,t1,t2,... be columns in the virtual table, and assume the verifier sends a set of random values α0, α1,... to the prover after the prover commits to the execution trace of the program. The prover reduces row i in the table to a single value ri as: ri=α0+α1⋅t0,i+α2⋅t1,i+α3⋅t2,i+... Then, when row i is added to the table, we'll update the value in the p column like so: p′=p⋅ri Analogously, when row i is removed from the table, we'll update the value in column p like so: p′=rip","breadcrumbs":"Design » Multiset checks » Computing a virtual table's trace column","id":"268","title":"Computing a virtual table's trace column"},"269":{"body":"Miden VM currently makes use of 6 virtual tables across 4 components: Stack: Overflow table Decoder: Block stack table Block hash table Op group table Chiplets: Chiplets virtual table , which combines the following two tables into one: Hash chiplet sibling table Kernel ROM chiplet procedure table","breadcrumbs":"Design » Multiset checks » Virtual tables in Miden VM","id":"269","title":"Virtual tables in Miden VM"},"27":{"body":"The !program command prints out the entire Miden program being executed. E.g., in the below scenario: >> push.1.2.3.4\n>> repeat.16 pow2 end\n>> u32checked_add >> !program\nbegin push.1.2.3.4 repeat.16 pow2 end u32checked_add\nend","breadcrumbs":"Development tooling » REPL » !program","id":"27","title":"!program"},"270":{"body":"One strategy for improving the efficiency of a zero knowledge virtual machine is to use specialized components for complex operations and have the main circuit “offload” those operations to the corresponding components by specifying inputs and outputs and allowing the proof of execution to be done by the dedicated component instead of by the main circuit. These specialized components are designed to prove the internal correctness of the execution of the operations they support. However, in isolation they cannot make any guarantees about the source of the input data or the destination of the output data. In order to prove that the inputs and outputs specified by the main circuit match the inputs and outputs provably executed in the specialized component, some kind of provable communication bus is needed. This bus is typically implemented as some kind of lookup argument, and in Miden VM in particular we use multiset checks.","breadcrumbs":"Design » Multiset checks » Communication buses","id":"270","title":"Communication buses"},"271":{"body":"A bus can be implemented as a single trace column b where a request can be sent to a specific component and a corresponding response will be sent back by that component. The values in this column contain a running product of the communication with the component as follows: Each request is “sent” by computing a lookup value from some information that's specific to the specialized component, the operation inputs, and the operation outputs, and then dividing it out of the running product column b. Each chiplet response is “sent” by computing the same lookup value from the component-specific information, inputs, and outputs, and then multiplying it into the running product column b. Thus, if the requests and responses match, and the bus column b is initialized to 1, then b will start and end with the value 1. This condition is enforced by boundary constraints on column b. Note that the order of the requests and responses does not matter, as long as they are all included in b. In fact, requests and responses for the same operation will generally occur at different cycles. Additionally, there could be multiple requests sent in the same cycle, and there could also be a response provided at the same cycle that a request is received.","breadcrumbs":"Design » Multiset checks » Implementation","id":"271","title":"Implementation"},"272":{"body":"These constraints can be expressed in a general way with the 2 following requirements: The lookup value must be computed using random values α0,α1, etc. that are provided by the verifier after the prover has committed to the main execution trace. The lookup value must include all uniquely identifying information for the component/operation and its inputs and outputs. Given an example operation opex with inputs i0,...,in and outputs o0,...,om, the lookup value can be computed as follows: lookup=α0+α1⋅opex+α2⋅i0+...+αn+2⋅in+αn+3⋅o0+...+αn+2+m⋅om The constraint for sending this to the bus as a request would be: b′⋅lookup=b The constraint for sending this to the bus as a response would be: b′=b⋅lookup However, these constraints must be combined, since it's possible that requests and responses both occur during the same cycle. To combine them, let ulookup be the request value and let vlookup be the response value. These values are both computed the same way as shown above, but the data sources are different, since the input/output values used to compute ulookup come from the trace of the component that's \"offloading\" the computation, while the input/output values used to compute vlookup come from the trace of the specialized component. The final constraint can be expressed as: b′⋅ulookup=b⋅vlookup","breadcrumbs":"Design » Multiset checks » Communication bus constraints","id":"272","title":"Communication bus constraints"},"273":{"body":"In Miden VM, the specialized components are implemented as dedicated segments of the execution trace, which include the range checker and the 3 chiplets in the Chiplets module (the hash chiplet, bitwise chiplet, and memory chiplet). Miden VM currently uses 2 buses to communicate with these components: The chiplets bus bchip , which communicates with all of the chiplets (Hash, Bitwise, and Memory). The range checker bus brange .","breadcrumbs":"Design » Multiset checks » Communication buses in Miden VM","id":"273","title":"Communication buses in Miden VM"},"274":{"body":"Proofs of execution generated by Miden VM are based on STARKs. A STARK is a novel proof-of-computation scheme that allows you to create an efficiently verifiable proof that a computation was executed correctly. The scheme was developed by Eli Ben-Sasson, Michael Riabzev et al. at Technion - Israel Institute of Technology. STARKs do not require an initial trusted setup, and rely on very few cryptographic assumptions. Here are some resources to learn more about STARKs: STARKs paper: Scalable, transparent, and post-quantum secure computational integrity STARKs vs. SNARKs: A Cambrian Explosion of Crypto Proofs Vitalik Buterin's blog series on zk-STARKs: STARKs, part 1: Proofs with Polynomials STARKs, part 2: Thank Goodness it's FRI-day STARKs, part 3: Into the Weeds Alan Szepieniec's STARK tutorials: Anatomy of a STARK BrainSTARK StarkWare's STARK Math blog series: STARK Math: The Journey Begins Arithmetization I Arithmetization II Low Degree Testing A Framework for Efficient STARKs StarkWare's STARK tutorial: STARK 101","breadcrumbs":"Background Material » Background Material","id":"274","title":"Background Material"},"28":{"body":"The !stack command prints out the state of the stack at the last executed instruction. Since the stack always contains at least 16 elements, 16 or more elements will be printed out (even if all of them are zeros). >> push.1 push.2 push.3 push.4 push.5\n>> exp\n>> u32checked_mul\n>> swap\n>> eq.2\n>> assert The !stack command will print out the following state of the stack: >> !stack\n3072 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0","breadcrumbs":"Development tooling » REPL » !stack","id":"28","title":"!stack"},"29":{"body":"The !mem command prints out the contents of all initialized memory locations. For each such location, the address, along with its memory values, is printed. Recall that four elements are stored at each memory address. If the memory has at least one value that has been initialized: >> !mem\n7: [1, 2, 0, 3]\n8: [5, 7, 3, 32]\n9: [9, 10, 2, 0] If the memory is not yet been initialized: >> !mem\nThe memory has not been initialized yet","breadcrumbs":"Development tooling » REPL » !mem","id":"29","title":"!mem"},"3":{"body":"In the coming months we plan to finalize the design of the VM and implement support for the following features: Recursive proofs. Miden VM will soon be able to verify a proof of its own execution. This will enable infinitely recursive proofs, an extremely useful tool for real-world applications. Better debugging. Miden VM will provide a better debugging experience including the ability to place breakpoints, better source mapping, and more complete program analysis info. Faulty execution. Miden VM will support generating proofs for programs with faulty execution (a notoriously complex task in ZK context). That is, it will be possible to prove that execution of some program resulted in an error.","breadcrumbs":"Introduction » Planned features","id":"3","title":"Planned features"},"30":{"body":"The !mem[addr] command prints out memory contents at the address specified by addr. If the addr has been initialized: >> !mem[9]\n9: [9, 10, 2, 0] If the addr has not been initialized: >> !mem[87]\nMemory at address 87 is empty","breadcrumbs":"Development tooling » REPL » !mem[addr]","id":"30","title":"!mem[addr]"},"31":{"body":"The !undo command reverts to the previous state of the stack and memory by dropping off the last executed assembly instruction from the program. One could use !undo as often as they want to restore the state of a stack and memory n instructions ago (provided there are n instructions in the program). The !undo command will result in an error if no remaining instructions are left in the Miden program. >> push.1 push.2 push.3\n>> push.4\n>> !stack\n4 3 2 1 0 0 0 0 0 0 0 0 0 0 0 0 >> push.5\n>> !stack\n5 4 3 2 1 0 0 0 0 0 0 0 0 0 0 0 >> !undo\n4 3 2 1 0 0 0 0 0 0 0 0 0 0 0 0 >> !undo\n3 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0","breadcrumbs":"Development tooling » REPL » !undo","id":"31","title":"!undo"},"32":{"body":"In the following sections, we provide developer-focused documentation useful to those who want to develop on Miden VM or build compilers from higher-level languages to Miden VM. This documentation consists of two high-level sections: Miden assembly which provides a detailed description of Miden assembly language, which is the native language of Miden VM. Miden Standard Library which provides descriptions of all procedures available in Miden Standard Library. For info on how to run programs on Miden VM, please refer to the usage section in the introduction.","breadcrumbs":"User Documentation » User Documentation","id":"32","title":"User Documentation"},"33":{"body":"Miden assembly is a simple, low-level language for writing programs for Miden VM. It stands just above raw Miden VM instruction set, and in fact, many instructions of Miden assembly map directly to raw instructions of Miden VM. Before Miden assembly can be executed on Miden VM, it needs to be compiled into a Program MAST (Merkelized Abstract Syntax Tree) which is a binary tree of code blocks each containing raw Miden VM instructions. assembly_to_VM As compared to raw Miden VM instructions, Miden assembly has several advantages: Miden assembly is intended to be a more stable external interface for the VM. That is, while we plan to make significant changes to the underlying VM to optimize it for stability, performance etc., we intend to make very few breaking changes to Miden assembly. Miden assembly natively supports control flow expressions which the assembler automatically transforms into a program MAST. This greatly simplifies writing programs with complex execution logic. Miden assembly supports macro instructions . These instructions expand into short sequences of raw Miden VM instructions making it easier to encode common operations. Miden assembly supports procedures . These are stand-alone blocks of code which the assembler inlines into program MAST at compile time. This improves program modularity and code organization. The last two points also make Miden assembly much more concise as compared to the raw program MAST. This may be important in the blockchain context where pubic programs need to be stored on chain.","breadcrumbs":"User Documentation » Miden Assembly » Miden Assembly","id":"33","title":"Miden Assembly"},"34":{"body":"In this document we use the following terms and notations: p is the modulus of the VM's base field which is equal to 264−232+1. A binary value means a field element which is either 0 or 1. Inequality comparisons are assumed to be performed on integer representations of field elements in the range [0,p). Throughout this document, we use lower-case letters to refer to individual field elements (e.g., a). Sometimes it is convenient to describe operations over groups of elements. For these purposes we define a word to be a group of four elements. We use upper-case letters to refer to words (e.g., A). To refer to individual elements within a word, we use numerical subscripts. For example, a0 is the first element of word A, b3 is the last element of word B, etc.","breadcrumbs":"User Documentation » Miden Assembly » Terms and notations","id":"34","title":"Terms and notations"},"35":{"body":"The design of Miden assembly tries to achieve the following goals: Miden assembly should be an easy compilation target for high-level languages. Programs written in Miden assembly should be readable, even if the code is generated by a compiler from a high-level language. Control flow should be easy to understand to help in manual inspection, formal verification, and optimization. Compilation of Miden assembly into Miden program MAST should be as straight-forward as possible. Serialization of Miden assembly into a binary representation should be as compact and as straight-forward as possible. In order to achieve the first goal, Miden assembly exposes a set of native operations over 32-bit integers and supports linear read-write memory. Thus, from the stand-point of a higher-level language compiler, Miden VM can be viewed as a regular 32-bit stack machine with linear read-write memory. In order to achieve the second and third goals, Miden assembly facilitates flow control via high-level constructs like while loops, if-else statements, and function calls with statically defined targets. Thus, for example, there are no explicit jump instructions. In order to achieve the fourth goal, Miden assembly retains direct access to the VM stack rather than abstracting it away with higher-level constructs and named variables. Lastly, in order to achieve the fifth goal, each instruction of Miden assembly can be encoded using a single byte. The resulting byte-code is simply a one-to-one mapping of instructions to their binary values.","breadcrumbs":"User Documentation » Miden Assembly » Design goals","id":"35","title":"Design goals"},"36":{"body":"A Miden assembly program is just a sequence of instructions each describing a specific directive or an operation. You can use any combination of whitespace characters to separate one instruction from another. In turn, Miden assembly instructions are just keywords which can be parameterized by zero or more parameters. The notation for specifying parameters is keyword.param1.param2 - i.e., the parameters are separated by periods. For example, push.123 instruction denotes a push operation which is parameterized by value 123. Miden assembly programs are organized into procedures. Procedures, in turn, can be grouped into modules.","breadcrumbs":"User Documentation » Miden Assembly » Code Organization » Code organization","id":"36","title":"Code organization"},"37":{"body":"A procedure can be used to encapsulate a frequently-used sequence of instructions which can later be invoked via a label. A procedure must start with a proc.. instruction and terminate with an end instruction. For example: proc.foo.2 \nend A procedure label must start with a letter and can contain any combination of numbers, ASCII letters, and underscores (_). The number of characters in the procedure label cannot exceed 100. The number of locals specifies the number of memory-based local words a procedure can access (via loc_load, loc_store, and other instructions ). If a procedure doesn't need any memory-based locals, this parameter can be omitted or set to 0. A procedure can have at most 216 locals, and the total number of locals available to all procedures at runtime is limited to 230. To execute a procedure, the exec., call., and syscall. instructions can be used. For example: exec.foo The difference between using each of these instructions is explained in the next section . A procedure may execute any other previously defined procedure, but it cannot execute itself or any of the subsequent procedures. Thus, recursive procedure calls are not possible. For example, the following code block defines a program with two procedures: proc.foo \nend proc.bar exec.foo \nend begin exec.bar exec.foo\nend","breadcrumbs":"User Documentation » Miden Assembly » Code Organization » Procedures","id":"37","title":"Procedures"},"38":{"body":"A module consists of one or more procedures. There are two types of modules: library modules and executable modules (also called programs ). Library modules Library modules contain zero or more internal procedures and one or more exported procedures. For example, the following module defines one internal procedure (defined with proc instruction) and one exported procedure (defined with export instruction): proc.foo \nend export.bar exec.foo \nend Programs Executable modules are used to define programs. A program contains zero or more internal procedures (defined with proc instruction) and exactly one main procedure (defined with begin instruction). For example, the following module defines one internal procedure and a main procedure: proc.foo \nend begin exec.foo \nend A program cannot contain any exported procedures. When a program is executed, the execution starts at the first instruction following the begin instruction. The main procedure is expected to be the last procedure in the program and can be followed only by comments. Importing modules To invoke a procedure from an external module, the module first needs to be imported using a use instruction. Once a module is imported, procedures from this module can be invoked via the regular exec or call instructions as exec|call.:: where label is the name of the procedure. For example: use.std::math::u64 begin push.1.0 push.2.0 exec.u64::checked_add\nend In the above example we import std::math::u64 module from the standard library . We then execute a program which pushes two 64-bit integers onto the stack, and then invokes a 64-bit addition procedure from the imported module. The set of modules which can be imported by a program can be specified via a Module Provider when instantiating the Miden Assembler used to compile the program. Re-exporting procedures A procedure defined in one module can be re-exported from a different module under the same or a different name. For example: use.std::math::u64 export.u64::add\nexport.u64::mul->mul64 export.foo \nend In addition to the locally-defined procedure foo, the above module also exports procedures add and mul64 implementations of which will be identical to add and mul procedures from the std::math::u64 module respectively.","breadcrumbs":"User Documentation » Miden Assembly » Code Organization » Modules","id":"38","title":"Modules"},"39":{"body":"Miden assembly supports constant declarations. These constants are scoped to the module they are defined in and can be used as immediate parameters for Miden assembly instructions. Constants are supported as immediate values for the following instructions: push, locaddr, loc_load, loc_loadw, loc_store, loc_storew, mem_load, mem_loadw, mem_store, mem_storew. Constants must be declared right after module imports and before any procedures or program bodies. A constant's name must start with an upper-case letter and can contain any combination of numbers, upper-case ASCII letters, and underscores (_). The number of characters in a constant name cannot exceed 100. use.std::math::u64 const.CONSTANT_1=100\nconst.CONSTANT_2=200\nconst.ADDR_1=3 begin push.CONSTANT_1.CONSTANT_2 exec.u64::checked_add mem_store.ADDR_1\nend","breadcrumbs":"User Documentation » Miden Assembly » Code Organization » Constants","id":"39","title":"Constants"},"4":{"body":"This document is meant to provide an in-depth description of Miden VM. It is organized as follows: In the introduction, we provide a high-level overview of Miden VM and describe how to run simple programs. In the user documentation section, we provide developer-focused documentation useful to those who want to develop on Miden VM or build compilers from higher-level languages to Miden assembly (the native language of Miden VM). In the design section, we provide in-depth descriptions of the VM's internals, including all AIR constraints for the proving system. We also provide the rationale for settling on specific design choices. Finally, in the background material section, we provide references to materials which could be useful for learning more about STARKs - the proving system behind Miden VM.","breadcrumbs":"Introduction » Structure of this document","id":"4","title":"Structure of this document"},"40":{"body":"Miden assembly allows annotating code with simple comments. There are two types of comments: single-line comments which start with a # (pound) character, and documentation comments which start with #! characters. For example: #! This is a documentation comment\nexport.foo # this is a comment push.1\nend Documentation comments must precede a procedure declaration. Using them inside a procedure body is an error.","breadcrumbs":"User Documentation » Miden Assembly » Code Organization » Comments","id":"40","title":"Comments"},"41":{"body":"Miden assembly program execution can span multiple isolated contexts. An execution context defines its own memory space which is not accessible from other execution contexts. All programs start executing in a root context. Thus, the main procedure of a program is always executed in the root context. To move execution into a different context, we can invoke a procedure using the call instruction. In fact, any time we invoke a procedure using the call instruction, the procedure is executed in a new context. We refer to all non-root contexts as user contexts . While executing in a user context, we can request to execute some procedures in the root context. This can be done via the syscall instruction. The set of procedures which can be invoked via the syscall instruction is limited by the kernel against which a program is compiled. Once the procedure called via syscall returns, the execution moves back to the user context from which it was invoked. The diagram below illustrates this graphically: context transitions","breadcrumbs":"User Documentation » Miden Assembly » Execution contexts » Execution contexts","id":"41","title":"Execution contexts"},"42":{"body":"As mentioned in the previous section , procedures in Miden assembly can be invoked via three different instructions: exec, call, and syscall. Invocation semantics of call and syscall instructions are basically the same, the only difference being that the syscall instruction can be used only with procedures which are defined in the program's kernel. The exec instruction is different, and we explain these differences below. Invoking via call and syscall instructions When a procedure is invoked via a call or a syscall instruction, the following happens: Execution moves into a different context. In case of a call instruction, a new user context is created. In case of a syscall instruction, the execution moves back into the root context. All stack items beyond the 16th item get \"hidden\" from the invoked procedure. That is, from the standpoint of the invoked procedure, the initial stack depth is set to 16. When a procedure returns from a call or a syscall, the following happens: Execution moves back to the context from which the procedure was invoked. Stack depth is set to its original depth. Before the stack depth is reset, the VM checks if the current stack depth is exactly 16, and fails otherwise. The manipulations of the stack depth described above have the following implications: The top 16 elements of the stack can be used to pass parameters and return values between the caller and the callee. Caller's stack beyond the top 16 elements is inaccessible to the callee, and thus, is guaranteed not to change as the result of the call. At the end of its execution, the callee must ensure that stack depth is exactly 16. If this is difficult to ensure manually, the truncate_stack procedure can be used to drop all elements from the stack except for the top 16. Invoking via exec instruction Procedures invoked via the exec instruction, are inlined at their call sites during compilation. Thus, from the standpoint of the final program, executing procedures this way is indistinguishable from manually including procedure code in place of the exec instruction. This also means that procedures invoked via the exec instruction are executed in the same context as the caller.","breadcrumbs":"User Documentation » Miden Assembly » Execution contexts » Procedure invocation semantics","id":"42","title":"Procedure invocation semantics"},"43":{"body":"A kernel defines a set of procedures which can be invoked from user contexts to be executed in the root context. Miden assembly programs are always compiled against some kernel. The default kernel is empty - i.e., it does not contain any procedures. To compile a program against a non-empty kernel, the kernel needs to be specified when instantiating the Miden Assembler . A kernel can be defined similarly to a regular library module - i.e., it can have internal and exported procedures. However, there are some small differences between what procedures can do in a kernel module vs. what they can do in a regular library module. Specifically: Procedures in a kernel module cannot use call or syscall instructions. This means that creating a new context from within a syscall is not possible. Unlike procedures in regular library modules, procedures in a kernel module can use the caller instruction. This instruction puts the hash of the procedure which initiated the parent context onto the stack.","breadcrumbs":"User Documentation » Miden Assembly » Execution contexts » Kernels","id":"43","title":"Kernels"},"44":{"body":"As mentioned earlier, procedures executed within a given context can access memory only of that context. This is true for both memory reads and memory writes. Address space of every context is the same: the smallest accessible address is 0 and the largest accessible address is 232−1. Any code executed in a given context has access to its entire address space. However, by convention, we assign different meanings to different regions of the address space. For user contexts we have the following: The first 230 words (each word is 4 field elements) are assumed to be global memory. The next 230 words are reserved for memory locals of procedures executed in the same context (i.e., via the exec instruction). The remaining address space has no special meaning. user memory layout For the root context we have the following: The first 230 words are assumed to be global memory. The next 230 words are reserved for memory locals of procedures executed in the root context. The next 230 words are reserved for memory locals of procedures executed from within a syscall. The remaining address space has no special meaning. root memory layout For both types of contexts, writing directly into regions of memory reserved for procedure locals is not advisable. Instead, loc_load, loc_store and other similar dedicated instructions should be used to access procedure locals.","breadcrumbs":"User Documentation » Miden Assembly » Execution contexts » Memory layout","id":"44","title":"Memory layout"},"45":{"body":"To better illustrate what happens as we execute procedures in different contexts, let's go over the following example. kernel\n--------------------\nexport.baz.2 caller \nend program\n--------------------\nproc.bar.1 syscall.baz \nend proc.foo.3 call.bar exec.bar \nend begin call.foo \nend Execution of the above program proceeds as follows: The VM starts executing instructions immediately following the begin statement. These instructions are executed in the root context (let's call this context ctx0). When call.foo is executed, a new context is created (ctx1). Memory in this context is isolated from ctx0. Additionally, any elements on the stack beyond the top 16 are hidden from foo. Instructions executed inside foo can access memory of ctx1 only. The address of the first procedure local in foo (e.g., accessed via loc_load.0) is 230. When call.bar is executed, a new context is created (ctx2). The stack depth is set to 16 again, and any instruction executed in this context can access memory of ctx2 only. The first procedure local of bar is also located at address 230. When syscall.baz is executed, the execution moves back into the root context. That is, instructions executed inside baz have access to the memory of ctx0. The first procedure local of baz is located at address 231. When baz starts executing, the stack depth is again set to 16. When caller is executed inside baz, the first 4 elements of the stack are populated with the hash of bar since baz was invoked from bar's context. Once baz returns, execution moves back to ctx2, and then, when bar returns, execution moves back to ctx1. We assume that instructions executed right before each procedure returns ensure that the stack depth is exactly 16 right before procedure's end. Next, when exec.bar is executed, bar is executed again, but this time it is executed in the same context as foo. Thus, it can access memory of ctx1. Moreover, the stack depth is not changed, and thus, bar can access the entire stack of foo. Lastly, this first procedure local of bar now will be at address 230+3 (since the first 3 locals in this context are reserved for foo). When syscall.baz is executed the second time, execution moves into the root context again. However, now, when caller is executed inside baz, the first 4 elements of the stack are populated with the hash of foo (not bar). This happens because this time around bar does not have its own context and baz is invoked from foo's context. Finally, when baz returns, execution moves back to ctx1, and then as bar and foo return, back to ctx0, and the program terminates.","breadcrumbs":"User Documentation » Miden Assembly » Execution contexts » Example","id":"45","title":"Example"},"46":{"body":"As mentioned above, Miden assembly provides high-level constructs to facilitate flow control. These constructs are: if-else expressions for conditional execution. repeat expressions for bounded counter-controlled loops. while expressions for unbounded condition-controlled loops.","breadcrumbs":"User Documentation » Miden Assembly » Flow Control » Flow control","id":"46","title":"Flow control"},"47":{"body":"Conditional execution in Miden VM can be accomplished with if-else statements. These statements look like so: if.true \nelse \nend where instructions can be a sequence of any instructions, including nested control structures; the else clause is optional. The above does the following: Pops the top item from the stack. If the value of the item is 1, instructions in the if.true branch are executed. If the value of the item is 0, instructions in the else branch are executed. If the value is not binary, the execution fails. A note on performance: using if-else statements incurs a small, but non-negligible overhead. Thus, for simple conditional statements, it may be more efficient to compute the result of both branches, and then select the result using conditional drop instructions.","breadcrumbs":"User Documentation » Miden Assembly » Flow Control » Conditional execution","id":"47","title":"Conditional execution"},"48":{"body":"Executing a sequence of instructions a predefined number of times can be accomplished with repeat statements. These statements look like so: repeat. \nend where: instructions can be a sequence of any instructions, including nested control structures. count is the number of times the instructions sequence should be repeated (e.g. repeat.10). count must be an integer greater than 0. Note : During compilation the repeat. blocks are unrolled and expanded into copies of its inner block, there is no additional cost for counting variables in this case.","breadcrumbs":"User Documentation » Miden Assembly » Flow Control » Counter-controlled loops","id":"48","title":"Counter-controlled loops"},"49":{"body":"Executing a sequence of instructions zero or more times based on some condition can be accomplished with while loop expressions. These expressions look like so: while.true \nend where instructions can be a sequence of any instructions, including nested control structures. The above does the following: Pops the top item from the stack. If the value of the item is 1, instructions in the loop body are executed. a. After the body is executed, the stack is popped again, and if the popped value is 1, the body is executed again. b. If the popped value is 0, the loop is exited. c. If the popped value is not binary, the execution fails. If the value of the item is 0, execution of loop body is skipped. If the value is not binary, the execution fails. Example: # push the boolean true to the stack\npush.1 # pop the top element of the stack and loop while it is true\nwhile.true # push the boolean false to the stack, finishing the loop for the next iteration push.0\nend","breadcrumbs":"User Documentation » Miden Assembly » Flow Control » Condition-controlled loops","id":"49","title":"Condition-controlled loops"},"5":{"body":"Licensed under the MIT license .","breadcrumbs":"Introduction » License","id":"5","title":"License"},"50":{"body":"Miden assembly provides a set of instructions which can perform operations with raw field elements. These instructions are described in the tables below. While most operations place no restrictions on inputs, some operations expect inputs to be binary values, and fail if executed with non-binary inputs. For instructions where one or more operands can be provided as immediate parameters (e.g., add and add.b), we provide stack transition diagrams only for the non-immediate version. For the immediate version, it can be assumed that the operand with the specified name is not present on the stack.","breadcrumbs":"User Documentation » Miden Assembly » Field Operations » Field operations","id":"50","title":"Field operations"},"51":{"body":"Instruction Stack_input Stack_output Notes assert - (1 cycle) [a, ...] [...] If a=1, removes it from the stack. Fails if a=1 assertz - (2 cycles) [a, ...] [...] If a=0, removes it from the stack, Fails if a=0 assert_eq - (2 cycles) [b, a, ...] [...] If a=b, removes them from the stack. Fails if a=b assert_eqw - (11 cycles) [B, A, ...] [...] If A=B, removes them from the stack. Fails if A=B","breadcrumbs":"User Documentation » Miden Assembly » Field Operations » Assertions and tests","id":"51","title":"Assertions and tests"},"52":{"body":"Instruction Stack_input Stack_output Notes add - (1 cycle) add. b - (1-2 cycle) [b, a, ...] [c, ...] c←(a+b)modp sub - (2 cycles) sub. b - (2 cycles) [b, a, ...] [c, ...] c←(a−b)modp mul - (1 cycle) mul. b - (2 cycles) [b, a, ...] [c, ...] c←(a⋅b)modp div - (2 cycles) div. b - (2 cycles) [b, a, ...] [c, ...] c←(a⋅b−1)modp Fails if b=0 neg - (1 cycle) [a, ...] [b, ...] b←−amodp inv - (1 cycle) [a, ...] [b, ...] b←a−1modp Fails if a=0 pow2 - (16 cycles) [a, ...] [b, ...] b←2a Fails if a>63 exp. uxx - (9 + xx cycles) exp. b - (9 + log2(b) cycles) [b, a, ...] [c, ...] c←ab Fails if xx is outside [0, 63) exp is equivalent to exp.u64 and needs 73 cycles not - (1 cycle) [a, ...] [b, ...] b←1−a Fails if a>1 and - (1 cycle) [b, a, ...] [c, ...] c←a⋅b Fails if max(a,b)>1 or - (1 cycle) [b, a, ...] [c, ...] c←a+b−a⋅b Fails if max(a,b)>1 xor - (7 cycles) [b, a, ...] [c, ...] c←a+b−2⋅a⋅b Fails if max(a,b)>1","breadcrumbs":"User Documentation » Miden Assembly » Field Operations » Arithmetic and Boolean operations","id":"52","title":"Arithmetic and Boolean operations"},"53":{"body":"Instruction Stack_input Stack_output Notes eq - (1 cycle) eq. b - (1-2 cycles) [b, a, ...] [c, ...] c←{1,0,if a=botherwise neq - (2 cycle) neq. b - (2-3 cycles) [b, a, ...] [c, ...] c←{1,0,if a=botherwise lt - (17 cycles) [b, a, ...] [c, ...] c←{1,0,if abotherwise gte - (19 cycles) [b, a, ...] [c, ...] c←{1,0,if a≥botherwise is_odd - (5 cycles) [a, ...] [b, ...] b←{1,0,if a is oddotherwise eqw - (15 cycles) [A, B, ...] [c, A, B, ...] c←{1,0,if ai=bi∀i∈{0,1,2,3}otherwise ","breadcrumbs":"User Documentation » Miden Assembly » Field Operations » Comparison operations","id":"53","title":"Comparison operations"},"54":{"body":"Instruction Stack Input Stack Output Notes ext2add - (5 cycles) [b1, b0, a1, a0, ...] [c1, c0, ...] c1←(a1+b1)modp and c0←(a0+b0)modp ext2sub - (7 cycles) [b1, b0, a1, a0, ...] [c1, c0, ...] c1←(a1−b1)modp and c0←(a0−b0)modp ext2mul - (3 cycles) [b1, b0, a1, a0, ...] [c1, c0, ...] c1←(a0+a1)∗(b0+b1)modp and c0←(a0∗b0)−2∗(a1∗b1)modp ext2neg - (4 cycles) [a1, a0, ...] [a1', a0', ...] a1′←−a1 and a0′←−a0 ext2inv - (8 cycles) [a1, a0, ...] [a1', a0', ...] a′←a−1modq Fails if a=0 ext2div - (11 cycles) [b1, b0, a1, a0, ...] [c1, c0,] c←a∗b−1 fails if b=0, where multiplication and inversion are as defined by the operations above","breadcrumbs":"User Documentation » Miden Assembly » Field Operations » Extension Field Operations","id":"54","title":"Extension Field Operations"},"55":{"body":"Miden assembly provides a set of instructions which can perform operations on regular two-complement 32-bit integers. These instructions are described in the tables below. Most instructions have checked variants. These variants ensure that input values are 32-bit integers, and fail if that's not the case. All other variants do not perform these checks, and thus, should be used only if the inputs are known to be 32-bit integers. Supplying inputs which are greater than or equal to 232 to unchecked operations results in undefined behavior. The primary benefit of using unchecked operations is performance: they can frequently be executed 2 or 3 times faster than their checked counterparts. In general, vast majority of the unchecked operations listed below can be executed in a single VM cycle. For instructions where one or more operands can be provided as immediate parameters (e.g., u32checked_add and u32checked_add.b), we provide stack transition diagrams only for the non-immediate version. For the immediate version, it can be assumed that the operand with the specified name is not present on the stack. In all the table below, the number of cycles it takes for the VM to execute each instruction is listed beneath the instruction.","breadcrumbs":"User Documentation » Miden Assembly » u32 Operations » u32 operations","id":"55","title":"u32 operations"},"56":{"body":"Instruction Stack input Stack output Notes u32test - (5 cycles) [a, ...] [b, a, ...] b←{1,0,if a<232otherwise u32testw - (23 cycles) [A, ...] [b, A, ...] b←{1,0,if ∀ i∈{0,1,2,3} ai<232otherwise u32assert u32assert.1 - (3 cycles) [a, ...] [a, ...] Fails if a≥232 u32assert.2 - (1 cycle) [b, a,...] [b, a,...] Fails if a≥232 or b≥232 u32assertw - (6 cycles) [A, ...] [A, ...] Fails if ∃ i∈{0,1,2,3}∋ai≥232 u32cast - (2 cycles) [a, ...] [b, ...] b←amod232 u32split - (1 cycle) [a, ...] [c, b, ...] b←amod232, c←⌊a/232⌋","breadcrumbs":"User Documentation » Miden Assembly » u32 Operations » Conversions and tests","id":"56","title":"Conversions and tests"},"57":{"body":"Instruction Stack input Stack output Notes u32checked_add - (4 cycles) u32checked_add. b - (5-6 cycles) [b, a, ...] [c, ...] c←a+b Fails if max(a,b,c)≥232 u32overflowing_add - (1 cycle) u32overflowing_add. b - (2-3 cycles) [b, a, ...] [d, c, ...] c←(a+b)mod232 d←{1,0,if (a+b)≥232otherwise Undefined if max(a,b)≥232 u32wrapping_add - (2 cycles) u32wrapping_add. b - (3-4 cycles) [b, a, ...] [c, ...] c←(a+b)mod232 Undefined if max(a,b)≥232 u32overflowing_add3 - (1 cycle) [c, b, a, ...] [e, d, ...] d←(a+b+c)mod232, e←⌊(a+b+c)/232⌋ Undefined if max(a,b,c)≥232 u32wrapping_add3 - (2 cycles) [c, b, a, ...] [d, ...] d←(a+b+c)mod232, Undefined if max(a,b,c)≥232 u32checked_sub - (4 cycles) u32checked_sub. b - (5-6 cycles) [b, a, ...] [c, ...] c←(a−b) Fails if max(a,b)≥232 or a31 u32unchecked_shl - (40 cycles) u32unchecked_shl. b - (3 cycles) [b, a, ...] [c, ...] c←(a⋅2b)mod232 Undefined if a≥232 or b>31 u32checked_shr - (47 cycles) u32checked_shr. b - (4 cycles) [b, a, ...] [c, ...] c←⌊a/2b⌋ Fails if a≥232 or b>31 u32unchecked_shr - (40 cycles) u32unchecked_shr. b - (3 cycles) [b, a, ...] [c, ...] c←⌊a/2b⌋ Undefined if a≥232 or b>31 u32checked_rotl - (47 cycles) u32checked_rotl. b - (4 cycles) [b, a, ...] [c, ...] Computes c by rotating a 32-bit representation of a to the left by b bits. Fails if a≥232 or b>31 u32unchecked_rotl - (40 cycles) u32unchecked_rotl. b - (3 cycles) [b, a, ...] [c, ...] Computes c by rotating a 32-bit representation of a to the left by b bits. Undefined if a≥232 or b>31 u32checked_rotr - (59 cycles) u32checked_rotr. b - (6 cycles) [b, a, ...] [c, ...] Computes c by rotating a 32-bit representation of a to the right by b bits. Fails if a≥232 or b>31 u32unchecked_rotr - (44 cycles) u32unchecked_rotr. b - (3 cycles) [b, a, ...] [c, ...] Computes c by rotating a 32-bit representation of a to the right by b bits. Undefined if a≥232 or b>31 u32checked_popcnt - (36 cycles) [a, ...] [b, ...] Computes b by counting the number of set bits in a (hamming weight of a). Fails if a≥232 u32unchecked_popcnt - (33 cycles) [a, ...] [b, ...] Computes b by counting the number of set bits in a (hamming weight of a). Undefined if a≥232","breadcrumbs":"User Documentation » Miden Assembly » u32 Operations » Bitwise operations","id":"58","title":"Bitwise operations"},"59":{"body":"Instruction Stack input Stack output Notes u32checked_eq - (2 cycles) u32checked_eq. b - (3-4 cycles) [b, a, ...] [c, ...] c←{1,0,if a=botherwise Fails if max(a,b)≥232 Note: unchecked version is not provided because it is equivalent to simple eq. u32checked_neq - (3 cycles) u32checked_neq. b - (4-5 cycles) [b, a, ...] [c, ...] c←{1,0,if a=botherwise Fails if max(a,b)≥232 Note: unchecked version is not provided because it is equivalent to simple neq. u32checked_lt - (6 cycles) [b, a, ...] [c, ...] c←{1,0,if abotherwise Fails if max(a,b)≥232 u32unchecked_gt - (6 cycles) [b, a, ...] [c, ...] c←{1,0,if a>botherwise Undefined if max(a,b)≥232 u32checked_gte - (7 cycles) [b, a, ...] [c, ...] c←{1,0,if a≥botherwise Fails if max(a,b)≥232 u32unchecked_gte - (6 cycles) [b, a, ...] [c, ...] c←{1,0,if a≥botherwise Undefined if max(a,b)≥232 u32checked_min - (9 cycles) [b, a, ...] [c, ...] c←{a,b,if abotherwise Fails if max(a,b)≥232 u32unchecked_max - (9 cycles) [b, a, ...] [c, ...] c←{a,b,if a>botherwise Undefined if max(a,b)≥232","breadcrumbs":"User Documentation » Miden Assembly » u32 Operations » Comparison operations","id":"59","title":"Comparison operations"},"6":{"body":"Miden VM is a stack machine. The base data type of the MV is a field element in a 64-bit prime field defined by modulus p=264−232+1. This means that all values that the VM operates with are field elements in this field (i.e., values between 0 and 264−232, both inclusive). Miden VM consists of three high-level components as illustrated below. These components are: Stack which is a push-down stack where each item is a field element. Most assembly instructions operate with values located on the stack. The stack can grow up to 232 items deep, however, only the top 16 items are directly accessible. Memory which is a linear random-access read-write memory. The memory is word-addressable, meaning, four elements are located at each address, and we can read and write elements to/from memory in batches of four. Memory addresses can be in the range [0,232). Advice provider which is a way for the prover to provide nondeterministic inputs to the VM. The advice provider is composed of a single advice stack , an advice map , and a merkle store . The advice stack yields elements to the VM stack; the advice map stores key-mapped element lists which can be pushed onto the advice stack; finally, the Merkle store contains structured Merkle tree data and serves Merkle paths to the VM. In the future, additional components (e.g., storage, logs) may be added to the VM.","breadcrumbs":"Introduction » Overview » Miden VM overview","id":"6","title":"Miden VM overview"},"60":{"body":"Miden VM stack is a push-down stack of field elements. The stack has a maximum depth of 232, but only the top 16 elements are directly accessible via the instructions listed below. In addition to the typical stack manipulation instructions such as drop, dup, swap etc., Miden assembly provides several conditional instructions which can be used to manipulate the stack based on some condition - e.g., conditional swap cswap or conditional drop cdrop. Instruction Stack_input Stack_output Notes drop - (1 cycle) [a, ... ] [ ... ] Deletes the top stack item. dropw - (4 cycles) [A, ... ] [ ... ] Deletes a word (4 elements) from the top of the stack. padw - (4 cycles) [ ... ] [0, 0, 0, 0, ... ] Pushes four 0 values onto the stack. Note: simple pad is not provided because push.0 does the same thing. dup. n - (1-3 cycles) [ ..., a, ... ] [a, ..., a, ... ] Pushes a copy of the nth stack item onto the stack. dup and dup.0 are the same instruction. Valid for n∈{0,...,15} dupw. n - (4 cycles) [ ..., A, ... ] [A, ..., A, ... ] Pushes a copy of the nth stack word onto the stack. dupw and dupw.0 are the same instruction. Valid for n∈{0,1,2,3} swap. n - (1-6 cycles) [a, ..., b, ... ] [b, ..., a, ... ] Swaps the top stack item with the nth stack item. swap and swap.1 are the same instruction. Valid for n∈{1,...,15} swapw. n - (1 cycle) [A, ..., B, ... ] [B, ..., A, ... ] Swaps the top stack word with the nth stack word. swapw and swapw.1 are the same instruction. Valid for n∈{1,2,3} swapdw - (1 cycle) [D, C, B, A, ... ] [B, A, D, C ... ] Swaps words on the top of the stack. The 1st with the 3rd, and the 2nd with the 4th. movup. n - (1-4 cycles) [ ..., a, ... ] [a, ... ] Moves the nth stack item to the top of the stack. Valid for n∈{2,...,15} movupw. n - (2-3 cycles) [ ..., A, ... ] [A, ... ] Moves the nth stack word to the top of the stack. Valid for n∈{2,3} movdn. n - (1-4 cycles) [a, ... ] [ ..., a, ... ] Moves the top stack item to the nth position of the stack. Valid for n∈{2,...,15} movdnw. n - (2-3 cycles) [A, ... ] [ ..., A, ... ] Moves the top stack word to the nth word position of the stack. Valid for n∈{2,3}","breadcrumbs":"User Documentation » Miden Assembly » Stack manipulation » Stack manipulation","id":"60","title":"Stack manipulation"},"61":{"body":"Instruction Stack_input Stack_output Notes cswap - (1 cycle) [c, b, a, ... ] [e, d, ... ] d={a,b,if c=0if c=1 e={b,a,if c=0if c=1 Fails if c>1 cswapw - (1 cycle) [c, B, A, ... ] [E, D, ... ] D={A,B,if c=0if c=1 E={B,A,if c=0if c=1 Fails if c>1 cdrop - (2 cycles) [c, b, a, ... ] [d, ... ] d={a,b,if c=0if c=1 Fails if c>1 cdropw - (5 cycles) [c, B, A, ... ] [D, ... ] D={A,B,if c=0if c=1 Fails if c>1","breadcrumbs":"User Documentation » Miden Assembly » Stack manipulation » Conditional manipulation","id":"61","title":"Conditional manipulation"},"62":{"body":"Miden assembly provides a set of instructions for moving data between the operand stack and several other sources. These sources include: Program code : values to be moved onto the operand stack can be hard-coded in a program's source code. Environment : values can be moved onto the operand stack from environment variables. These include current clock cycle, current stack depth, and a few others. Advice provider : values can be moved onto the operand stack from the advice provider by popping them from the advice stack (see more about the advice provider here ). The VM can also inject new data into the advice provider via advice injector instructions. Memory : values can be moved between the stack and random-access memory. The memory is word-addressable, meaning, four elements are located at each address, and we can read and write elements to/from memory in batches of four. Memory can be accessed via absolute memory references (i.e., via memory addresses) as well as via local procedure references (i.e., local index). The latter approach ensures that a procedure does not access locals of another procedure.","breadcrumbs":"User Documentation » Miden Assembly » Input / Output Operations » Input / output operations","id":"62","title":"Input / output operations"},"63":{"body":"Instruction Stack_input Stack_output Notes push. a - (1-2 cycles) push. a . b push. a . b . c ... [ ... ] [a, ... ] [b, a, ... ] [c, b, a, ... ] Pushes values a, b, c etc. onto the stack. Up to 16 values can be specified. All values must be valid field elements in decimal (e.g., 123) or hexadecimal (e.g., 0x7b) representation. When specifying values in hexadecimal format, it is possible to omit the periods between individual values as long as total number of specified bytes is a multiple of 8. That is, the following are semantically equivalent: push.0x1234.0xabcd\npush.0x0000000000001234000000000000abcd In both case the values must still encode valid field elements.","breadcrumbs":"User Documentation » Miden Assembly » Input / Output Operations » Constant inputs","id":"63","title":"Constant inputs"},"64":{"body":"Instruction Stack_input Stack_output Notes clk - (1 cycle) [ ... ] [t, ... ] t←clock_value() Pushes the current value of the clock cycle counter onto the stack. sdepth - (1 cycle) [ ... ] [d, ... ] d←stack.depth() Pushes the current depth of the stack onto the stack. caller - (1 cycle) [A, b, ... ] [H, b, ... ] H←context.fn_hash() Overwrites the top four stack items with the hash of a function which initiated the current SYSCALL. Executing this instruction outside of SYSCALL context will fail. locaddr. i - (2 cycles) [ ... ] [a, ... ] a←address_of(i) Pushes the absolute memory address of local memory at index i onto the stack.","breadcrumbs":"User Documentation » Miden Assembly » Input / Output Operations » Environment inputs","id":"64","title":"Environment inputs"},"65":{"body":"As mentioned above, nondeterministic inputs are provided to the VM via the advice provider. Instructs which access the advice provider fall into two categories. The first category consists of instructions which move data from the advice stack onto the operand stack and/or memory. Instruction Stack_input Stack_output Notes adv_push. n - (n cycles) [ ... ] [a, ... ] a←stack.pop() Pops n values from the advice stack and pushes them onto the operand stack. Valid for n∈{1,...,16}. Fails if the advice stack has fewer than n values. adv_loadw - (1 cycle) [0, 0, 0, 0, ... ] [A, ... ] A←stack.pop(4) Pop the next word (4 elements) from the advice stack and overwrites the first word of the operand stack (4 elements) with them. Fails if the advice stack has fewer than 4 values. adv_pipe - (1 cycle) [C, B, A, a, ... ] [E, D, A, a', ... ] [D,E]←[adv stack.pop(4),adv stack.pop(4)] a′←a+2 Pops the next two words from the advice stack, overwrites the top of the operand stack with them and also writes these words into memory at address a and a+1. Fails if the advice stack has fewer than 8 values. Note : The opcodes above always push data onto the operand stack so that the first element is placed deepest in the stack. For example, if the data on the stack is a,b,c,d and you use the opcode adv_push.4, the data will be d,c,b,a on your stack. This is also the behavior of the other opcodes. The second category injects new data into the advice provider. These operations are called advice injectors and they affect only the advice provider state. That is, the state of all other VM components (e.g., stack, memory) are unaffected. Executing advice injectors does not consume any VM cycles (i.e., these instructions are executed in 0 cycles). Advice injectors fall into two categories: (1) injectors which push new data onto the advice stack, and (2) injectors which insert new data into the advice map. Instruction Stack_input Stack_output Notes adv.push_mapval adv.push_mapval. s [K, ... ] [K, ... ] Pushes a list of field elements onto the advice stack. The list is looked up in the advice map using word K as the key. If offset s is provided, the key is taken starting from item s on the stack. adv.push_mapvaln adv.push_mapvaln. s [K, ... ] [K, ... ] Pushes a list of field elements together with the number of elements onto the advice stack. The list is looked up in the advice map using word K as the key. If offset s is provided, the key is taken starting from item s on the stack. adv.push_mtnode [d, i, R, ... ] [d, i, R, ... ] Pushes a node of a Merkle tree with root R at depth d and index i from Merkle store onto the advice stack. adv.push_u64div [b1, b0, a1, a0, ...] [b1, b0, a1, a0, ...] Pushes the result of u64 division a/b onto the advice stack. Both a and b are represented using 32-bit limbs. The result consists of both the quotient and the remainder. adv.push_ext2intt [osize, isize, iptr, ... ] [osize, isize, iptr, ... ] Given evaluations of a polynomial over some specified domain, interpolates the evaluations into a polynomial in coefficient form and pushes the result into the advice stack. adv.smt_get [K, R, ... ] [K, R, ... ] Pushes values onto the advice stack which are required for successful retrieval of a value under the key K from a Sparse Merkle Tree with root R. adv.insert_mem [K, a, b, ... ] [K, a, b, ... ] Reads words data←mem[a]..mem[b] from memory, and save the data into advice_map[K]←data. adv.insert_hdword adv.insert_hdword. d [B, A, ... ] [B, A, ... ] Reads top two words from the stack, computes a key as K←hash(A∣∣b,d), and saves the data into advice_map[K]←[A,B]. d is an optional domain value which can be between 0 and 255, default value 0.","breadcrumbs":"User Documentation » Miden Assembly » Input / Output Operations » Nondeterministic inputs","id":"65","title":"Nondeterministic inputs"},"66":{"body":"As mentioned above, there are two ways to access memory in Miden VM. The first way is via memory addresses using the instructions listed below. The addresses are absolute - i.e., they don't depend on the procedure context. Memory addresses can be in the range [0,232). Memory is guaranteed to be initialized to zeros. Thus, when reading from memory address which hasn't been written to previously, zero elements will be returned. Instruction Stack_input Stack_output Notes mem_load - (1 cycle) mem_load. a - (2 cycles) [a, ... ] [v, ... ] v←mem[a][0] Reads a word (4 elements) from memory at address a , and pushes the first element of the word onto the stack. If a is provided via the stack, it is removed from the stack first. Fails if a≥232 mem_loadw - (1 cycle) mem_loadw. a - (2 cycles) [a, 0, 0, 0, 0, ... ] [A, ... ] A←mem[a] Reads a word from memory at address a and overwrites top four stack elements with it. If a is provided via the stack, it is removed from the stack first. Fails if a≥232 mem_store - (2 cycles) mem_store. a - (3-4 cycles) [a, v, ... ] [ ... ] v→mem[a][0] Pops the top element off the stack and stores it as the first element of the word in memory at address a. All other elements of the word are not affected. If a is provided via the stack, it is removed from the stack first. Fails if a≥232 mem_storew - (1 cycle) mem_storew. a - (2-3 cycles) [a, A, ... ] [A, ... ] A→mem[a] Stores the top four elements of the stack in memory at address a. If a is provided via the stack, it is removed from the stack first. Fails if a≥232 mem_stream - (1 cycle) [C, B, A, a, ... ] [E, D, A, a', ... ] [E,D]←[mem[a],mem[a+1]] a′←a+2 Read two sequential words from memory starting at address a and overwrites the first two words in the operand stack. The second way to access memory is via procedure locals using the instructions listed below. These instructions are available only in procedure context. The number of locals available to a given procedure must be specified at procedure declaration time, and trying to access more locals than was declared will result in a compile-time error. The number of locals per procedure is not limited, but the total number of locals available to all procedures at runtime must be smaller than 232. Instruction Stack_input Stack_output Notes loc_load. i - (3-4 cycles) [ ... ] [v, ... ] v←local[i][0] Reads a word (4 elements) from local memory at index i , and pushes the first element of the word onto the stack. loc_loadw. i - (3-4 cycles) [0, 0, 0, 0, ... ] [A, ... ] A←local[i] Reads a word from local memory at index i and overwrites top four stack elements with it. loc_store. i - (4-5 cycles) [v, ... ] [ ... ] v→local[i][0] Pops the top element off the stack and stores it as the first element of the word in local memory at index i. All other elements of the word are not affected. loc_storew. i - (3-4 cycles) [A, ... ] [A, ... ] A→local[i] Stores the top four elements of the stack in local memory at index i. Unlike regular memory, procedure locals are not guaranteed to be initialized to zeros. Thus, when working with locals, one must assume that before a local memory address has been written to, it contains \"garbage\". Internally in the VM, procedure locals are stored at memory offset stating at 230. Thus, every procedure local has an absolute address in regular memory. The locaddr.i instruction is provided specifically to map an index of a procedure's local to an absolute address so that it can be passed to downstream procedures, when needed.","breadcrumbs":"User Documentation » Miden Assembly » Input / Output Operations » Random access memory","id":"66","title":"Random access memory"},"67":{"body":"Miden assembly provides a set of instructions for performing common cryptographic operations. These instructions are listed in the table below.","breadcrumbs":"User Documentation » Miden Assembly » Cryptographic Operations » Cryptographic operations","id":"67","title":"Cryptographic operations"},"68":{"body":"Rescue Prime Optimized is the native hash function of Miden VM. The parameters of the hash function were chosen to provide 128-bit security level against preimage and collision attacks. The function operates over a state of 12 field elements, and requires 7 rounds for a single permutation. However, due to its special status within the VM, computing Rescue Prime Optimized hashes can be done very efficiently. For example, applying a permutation of the hash function can be done in a single VM cycle. Instruction Stack_input Stack_output Notes hash - (20 cycles) [A, ...] [B, ...] {B}←hash(A) where, hash() computes a 1-to-1 Rescue Prime Optimized hash. hperm - (1 cycle) [C, B, A, ...] [F, E, D, ...] {D,E,F}←permute(A,B,C) Performs a Rescue Prime Optimized permutation on the top 3 words of the operand stack, where the top 2 words elements are the rate (words C and B), the deepest word is the capacity (word A), the digest output is the word E. hmerge - (16 cycles) [B, A, ...] [C, ...] C←hash(A,B) where, hash() computes a 2-to-1 Rescue Prime Optimized hash. mtree_get - (9 cycles) [d, i, R, ...] [V, R, ...] Fetches the node value from the advice provider and runs a verification equivalent to mtree_verify, returning the value if succeeded. mtree_set - (29 cycles) [d, i, R, V', ...] [V, R', ...] Updates a node in the Merkle tree with root R at depth d and index i to value V′. R′ is the Merkle root of the resulting tree and V is old value of the node. Merkle tree with root R must be present in the advice provider, otherwise execution fails. At the end of the operation the advice provider will contain both Merkle trees. mtree_merge - (16 cycles) [R, L, ...] [M, ...] Merges two Merkle trees with the provided roots R (right), L (left) into a new Merkle tree with root M (merged). The input trees are retained in the advice provider. mtree_verify - (1 cycle) [V, d, i, R, ...] [V, d, i, R, ...] Verifies that a Merkle tree with root R opens to node V at depth d and index i. Merkle tree with root R must be present in the advice provider, otherwise execution fails.","breadcrumbs":"User Documentation » Miden Assembly » Cryptographic Operations » Hashing and Merkle trees","id":"68","title":"Hashing and Merkle trees"},"69":{"body":"Miden standard library provides a set of procedures which can be used by any Miden program. These procedures build on the core instruction set of Miden assembly expanding the functionality immediately available to the user. The goals of Miden standard library are: Provide highly-optimized and battle-tested implementations of commonly-used primitives. Reduce the amount of code that needs to be shared between parties for proving and verifying program execution. The second goal can be achieved because calls to procedures in the standard library can always be serialized as 32 bytes, regardless of how large the procedure is.","breadcrumbs":"User Documentation » Miden Standard Library » Miden Standard Library","id":"69","title":"Miden Standard Library"},"7":{"body":"Our goal is to make Miden VM an easy compilation target for high-level blockchain-centric languages such as Solidity, Move, Sway, and others. We believe it is important to let people write programs in the languages of their choice. However, compilers to help with this have not been developed yet. Thus, for now, the primary way to write programs for Miden VM is to use Miden assembly . While writing programs in assembly is far from ideal, Miden assembly does make this task a little bit easier by supporting high-level flow control structures and named procedures.","breadcrumbs":"Introduction » Overview » Writing programs","id":"7","title":"Writing programs"},"70":{"body":"In this document we use the following terms and notations: A field element is an element in a prime field of size p=264−232+1. A binary value means a field element which is either 0 or 1. Inequality comparisons are assumed to be performed on integer representations of field elements in the range [0,p). Throughout this document, we use lower-case letters to refer to individual field elements (e.g., a). Sometimes it is convenient to describe operations over groups of elements. For these purposes we define a word to be a group of four elements. We use upper-case letters to refer to words (e.g., A). To refer to individual elements within a word, we use numerical subscripts. For example, a0 is the first element of word A, b3 is the last element of word B, etc.","breadcrumbs":"User Documentation » Miden Standard Library » Terms and notations","id":"70","title":"Terms and notations"},"71":{"body":"Procedures in the Miden Standard Library are organized into modules, each targeting a narrow set of functionality. Modules are grouped into higher-level namespaces. However, higher-level namespaces do not expose any procedures themselves. For example, std::math::u64 is a module containing procedures for working with 64-bit unsigned integers. This module is a part of the std::math namespace. However, the std::math namespace does not expose any procedures. For an example of how to invoke procedures from imported modules see this section .","breadcrumbs":"User Documentation » Miden Standard Library » Organization and usage","id":"71","title":"Organization and usage"},"72":{"body":"Currently, Miden standard library contains just a few modules, which are listed below. Over time, we plan to add many more modules which will include various cryptographic primitives, additional numeric data types and operations, and many others. Module Description std::collections::mmr Contains procedures for manipulating Merkle Mountain Ranges . std::collections::smt64 Contains procedures for manipulating key-value maps with single-element keys and 4-element values. std::crypto::fri::frie2f4 Contains procedures for verifying FRI proofs (field extension = 2, folding factor = 4). std::crypto::hashes::blake3 Contains procedures for computing hashes using BLAKE3 hash function. std::crypto::hashes::sha256 Contains procedures for computing hashes using SHA256 hash function. std::math::u64 Contains procedures for working with 64-bit unsigned integers. std::mem Contains procedures for working with random access memory. std::sys Contains system-level utility procedures.","breadcrumbs":"User Documentation » Miden Standard Library » Available modules","id":"72","title":"Available modules"},"73":{"body":"Namespace std::collections contains modules for commonly authenticated data structures.","breadcrumbs":"User Documentation » Miden Standard Library » std::collections » Collections","id":"73","title":"Collections"},"74":{"body":"Module std::collections::mmr contains procedures for manipulating Merkle Mountain Range data structure which can be used as an append-only log. Procedure Description get Loads the leaf at the absolute pos in the MMR onto the stack.Valid range for pos is between 0 and 232−1 (both inclusive).Inputs:- Operand stack: [pos, mmr_ptr, ...]Output:- Operand stack: [N, ...]Where N is the leaf loaded from the MMR whose memory location starts at mmr_ptr. add Adds a new leaf to the MMR.This will update the MMR peaks in the VM's memory and the advice provider with any merged nodes.Inputs:- Operand stack: [N, mmr_ptr, ...]Outputs:- Operand stack: [...]Where N is the leaf added to the MMR whose memory locations starts at mmr_ptr. pack Computes the hash of the given MMR and copies it to the Advice Map using its hash as a key.Inputs:- Operand stack: [mmr_ptr, ...]Outputs:- Operand stack: [HASH, ...] unpack Load the MMR peak data based on its hash.Inputs:- Operand stack: [HASH, mmr_ptr, ...]Outputs:- Operand stack: [...]Where:- HASH: is the MMR peak hash, the hash is expected to be padded to an even length and to have a minimum size of 16 elements.- The advice map must contain a key with HASH, and its value is num_leaves \\|\\| hash_data, and hash_data is the data used to computed HASH- mmt_ptr: the memory location where the MMR data will be written, starting with the MMR forest (the total count of its leaves) followed by its peaks.","breadcrumbs":"User Documentation » Miden Standard Library » std::collections » Merkle Mountain Range","id":"74","title":"Merkle Mountain Range"},"75":{"body":"Module std::collections::smt64 contains procedures for manipulating key-value maps with single-element keys and 4-element values. The current implementation is a thin wrapper over a simple Sparse Merkle Tree of depth 64. In the future, this will be replaced with a compact Sparse Merkle Tree implementation. Procedure Description get Returns the value located under the specified key in the Sparse Merkle Tree defined by the specified root.If no values had been previously inserted under the specified key, an empty word (i.e., [ZERO; 4]) is returned.Inputs:- Operand stack: [key, ROOT, ...]Outputs:-Operand stack: [VALUE, ROOT, ...]Fails if the tree with the specified root does not exist in the VM's advice provider. set Inserts the specified value under the specified key in a Sparse Merkle Tree defined by the specified root. If the insert is successful, the old value located under the specified key is returned via the stack.If VALUE is an empty word (i.e., [ZERO; 4]), the new state of the tree is guaranteed to be equivalent to the state as if the updated value was never inserted.Inputs: - Operand stack: [VALUE, key, ROOT, ...]Outputs:- Operand stack: [OLD_VALUE, NEW_ROOT, ...]Fails if the tree with the specified root does not exits in the VM's advice provider. insert Inserts the specified value under the specified key in a Sparse Merkle Tree defined by the specified root. If the insert is successful, the old value located under the specified key is returned via the stack.This procedure requires that VALUE be a non-empty word (i.e., not [ZERO; 4]).Inputs:- Operand stack: [VALUE, key, ROOT, ...]Outputs: -Operand stack: [OLD_VALUE, NEW_ROOT, ...]Fails if:- The tree with the specified root does not exits in the VM's advice provider.- The provided value is an empty word.","breadcrumbs":"User Documentation » Miden Standard Library » std::collections » Sparse Merkle Tree (64)","id":"75","title":"Sparse Merkle Tree (64)"},"76":{"body":"Namespace std::crypto::fri contains modules for verifying FRI proofs.","breadcrumbs":"User Documentation » Miden Standard Library » std::crypto::fri » FRI verification procedures","id":"76","title":"FRI verification procedures"},"77":{"body":"Module std::crypto::fri::frie2f4 contains procedures for verifying FRI proofs generated over the quadratic extension of the Miden VM's base field. Moreover, the procedures assume that layer folding during the commit phase of FRI protocol was performed using folding factor 4. Procedure Description verify Verifies a FRI proof where the proof was generated over the quadratic extension of the base field and layer folding was performed using folding factor 4.Input: [query_start_ptr, query_end_ptr, layer_ptr, rem_ptr, g, ...]>Output: [...]- query_start_ptr is a pointer to a list of tuples of the form (e0, e1, p, 0) where p is a query index at the first layer and (e0, e1) is an extension field element corresponding to the value of the first layer at index p.- query_end_ptr is a pointer to the first empty memory address after the last (e0, e1, p, 0) tuple.- layer_ptr is a pointer to the first layer commitment denoted throughout the code by C. layer_ptr + 1 points to the first (alpha0, alpha1, t_depth, d_size) where d_size is the size of initial domain divided by 4, t_depth is the depth of the Merkle tree commitment to the first layer and (alpha0, alpha1) is the first challenge used in folding the first layer. Both t_depth and d_size are expected to be smaller than 2^32. Otherwise, the result of this procedure is undefined.- rem_ptr is a pointer to the first tuple of two consecutive degree 2 extension field elements making up the remainder codeword. This codeword can be of length either 32 or 64.The memory referenced above is used contiguously, as follows:[layer_ptr ... rem_ptr ... query_start_ptr ... query_end_ptr]This means for example that:1. rem_ptr - 1 points to the last (alpha0, alpha1, t_depth, d_size) tuple.2. The length of the remainder codeword is 2 * (rem_ptr - query_start_ptr).Cycles: for domains of size 2^n where:- n is even: 12 + 6 + num_queries * (40 + num_layers * 76 + 69) + 2626- n is odd: 12 + 6 + num_queries * (40 + num_layers * 76 + 69) + 1356","breadcrumbs":"User Documentation » Miden Standard Library » std::crypto::fri » FRI Extension 2, Fold 4","id":"77","title":"FRI Extension 2, Fold 4"},"78":{"body":"Namespace std::crypto contains modules for commonly used cryptographic hash functions.","breadcrumbs":"User Documentation » Miden Standard Library » std::crypto::hashes » Cryptographic hashes","id":"78","title":"Cryptographic hashes"},"79":{"body":"Module std::crypto::hashes::blake3 contains procedures for computing hashes using BLAKE3 hash function. The input and output elements are assumed to contain one 32-bit value per element. Procedure Description hash_1to1 Computes BLAKE3 1-to-1 hash.Input: 32-bytes stored in the first 8 elements of the stack (32 bits per element). Output: A 32-byte digest stored in the first 8 elements of stack (32 bits per element). hash_2to1 Computes BLAKE3 2-to-1 hash.Input: 64-bytes stored in the first 16 elements of the stack (32 bits per element). Output: A 32-byte digest stored in the first 8 elements of stack (32 bits per element)","breadcrumbs":"User Documentation » Miden Standard Library » std::crypto::hashes » BLAKE3","id":"79","title":"BLAKE3"},"8":{"body":"External inputs can be provided to Miden VM in two ways: Public inputs can be supplied to the VM by initializing the stack with desired values before a program starts executing. Any number of stack items can be initialized in this way, but providing a large number of public inputs will increase the cost for the verifier. Secret (or nondeterministic) inputs can be supplied to the VM via the advice provider . There is no limit on how much data the advice provider can hold. After a program finishes executing, the elements remaining on the stack become the outputs of the program. Since these outputs will be public inputs for the verifier, having a large stack at the end of execution will increase cost to the verifier. Therefore, it's best to drop unneeded output values. We've provided the truncate_stack utility function in the standard library for this purpose. The number of public inputs and outputs of a program can be reduced by making use of the advice stack and Merkle trees. Just 4 elements are sufficient to represent a root of a Merkle tree, which can be expanded into an arbitrary number of values. For example, if we wanted to provide a thousand public input values to the VM, we could put these values into a Merkle tree, initialize the stack with the root of this tree, initialize the advice provider with the tree itself, and then retrieve values from the tree during program execution using mtree_get instruction (described here ). In the future, other ways of providing public inputs and reading public outputs (e.g., storage commitments) may be added to the VM.","breadcrumbs":"Introduction » Overview » Inputs and outputs","id":"8","title":"Inputs and outputs"},"80":{"body":"Module std::crypto::hashes::sha256 contains procedures for computing hashes using SHA256 hash function. The input and output elements are assumed to contain one 32-bit value per element. Procedure Description hash_1to1 Computes SHA256 1-to-1 hash.Input: 32-bytes stored in the first 8 elements of the stack (32 bits per element). Output: A 32-byte digest stored in the first 8 elements of stack (32 bits per element). hash_2to1 Computes SHA256 2-to-1 hash.Input: 64-bytes stored in the first 16 elements of the stack (32 bits per element). Output: A 32-byte digest stored in the first 8 elements of stack (32 bits per element).","breadcrumbs":"User Documentation » Miden Standard Library » std::crypto::hashes » SHA256","id":"80","title":"SHA256"},"81":{"body":"Module std::math::u64 contains a set of procedures which can be used to perform unsigned 64-bit integer operations. These operations fall into the following categories: Arithmetic operations - addition, multiplication, division etc. Comparison operations - equality, less than, greater than etc. Bitwise operations - binary AND, OR, XOR, bit shifts etc. All procedures assume that an unsigned 64-bit integer (u64) is encoded using two elements, each containing an unsigned 32-bit integer (u32). When placed on the stack, the least-significant limb is assumed to be deeper in the stack. For example, a u64 value a consisting of limbs a_hi and a_lo would be position on the stack like so: [a_hi, a_lo, ... ] Procedures which check whether the input values are encoded correctly are designated with checked prefix. For example, checked_add would fail if any of the top 4 elements on the stack contains a value greater than 232−1. In contrast, wrapping_add and overflowing_add would not perform these checks, and therefore, if any of the top 4 stack elements is greater than 232−1, the operation will not fail but rather will produce an undefined result. Thus, when using versions of procedures which are not checked, it is important to be certain that input values are 32-bit limbs encoding valid u64 values.","breadcrumbs":"User Documentation » Miden Standard Library » std::math::u64 » Unsigned 64-bit integer operations","id":"81","title":"Unsigned 64-bit integer operations"},"82":{"body":"Procedure Description checked_add Performs addition of two unsigned 64-bit integers and fails if the result would overflow. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = (a + b) % 2^64 overflowing_add Performs addition of two unsigned 64-bit integers preserving the overflow. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [overflow_flag, c_hi, c_lo, ...], where c = (a + b) % 2^64 wrapping_add Performs addition of two unsigned 64-bit integers discarding the overflow. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = (a + b) % 2^64 checked_sub Performs subtraction of two unsigned 64-bit integers and fails if the result would underflow. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = (a - b) % 2^64 overflowing_sub Performs subtraction of two unsigned 64-bit integers preserving the overflow. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [underflow_flag, c_hi, c_lo, ...], where c = (a - b) % 2^64 wrapping_sub Performs subtraction of two unsigned 64-bit integers discarding the overflow. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = (a - b) % 2^64 checked_mul Performs multiplication of two unsigned 64-bit integers and fails if the result would overflow. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = (a * b) % 2^64 overflowing_mul Performs multiplication of two unsigned 64-bit integers preserving the overflow. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi_hi, c_hi_lo, c_lo_hi, c_lo_lo, ...], where c = (a * b) % 2^64 wrapping_mul Performs multiplication of two unsigned 64-bit integers discarding the overflow. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = (a * b) % 2^64 checked_div Performs division of two unsigned 64-bit integers discarding the remainder. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a // b unchecked_div Performs division of two unsigned 64-bit integers discarding the remainder. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a // b checked_mod Performs modulo operation of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a % b unchecked_mod Performs modulo operation of two unsigned 64-bit integers. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a % b checked_divmod Performs divmod operation of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [r_hi, r_lo, q_hi, q_lo ...], where r = a % b, q = a // b unchecked_divmod Performs divmod operation of two unsigned 64-bit integers. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [r_hi, r_lo, q_hi, q_lo ...], where r = a % b, q = a // b","breadcrumbs":"User Documentation » Miden Standard Library » std::math::u64 » Arithmetic operations","id":"82","title":"Arithmetic operations"},"83":{"body":"Procedure Description checked_lt Performs less-than comparison of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a < b, and 0 otherwise. unchecked_lt Performs less-than comparison of two unsigned 64-bit integers. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a < b, and 0 otherwise. checked_gt Performs greater-than comparison of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a > b, and 0 otherwise. unchecked_gt Performs greater-than comparison of two unsigned 64-bit integers. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a > b, and 0 otherwise. This takes 11 cycles. checked_lte Performs less-than-or-equal comparison of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a <= b, and 0 otherwise. unchecked_lte Performs less-than-or-equal comparison of two unsigned 64-bit integers. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a <= b, and 0 otherwise. checked_gte Performs greater-than-or-equal comparison of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a >= b, and 0 otherwise. unchecked_gte Performs greater-than-or-equal comparison of two unsigned 64-bit integers. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a >= b, and 0 otherwise. checked_eq Performs equality comparison of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a == b, and 0 otherwise. unchecked_eq Performs equality comparison of two unsigned 64-bit integers. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a == b, and 0 otherwise. checked_neq Performs inequality comparison of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a != b, and 0 otherwise. unchecked_neq Performs inequality comparison of two unsigned 64-bit integers. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c, ...], where c = 1 when a != b, and 0 otherwise. checked_eqz Performs comparison to zero of an unsigned 64-bit integer. The input value is assumed to be represented using 32-bit limbs, fails if it is not. The stack transition looks as follows: [a_hi, a_lo, ...] -> [c, ...], where c = 1 when a == 0, and 0 otherwise. unchecked_eqz Performs comparison to zero of an unsigned 64-bit integer. The input value is assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [a_hi, a_lo, ...] -> [c, ...], where c = 1 when a == 0, and 0 otherwise. checked_min Compares two unsigned 64-bit integers and drop the larger one from the stack. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a when a < b, and b otherwise. unchecked_min Compares two unsigned 64-bit integers and drop the larger one from the stack. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a when a < b, and b otherwise. checked_max Compares two unsigned 64-bit integers and drop the smaller one from the stack. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a when a > b, and b otherwise. unchecked_max Compares two unsigned 64-bit integers and drop the smaller one from the stack. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a when a > b, and b otherwise.","breadcrumbs":"User Documentation » Miden Standard Library » std::math::u64 » Comparison operations","id":"83","title":"Comparison operations"},"84":{"body":"Procedure Description checked_and Performs bitwise AND of two unsigned 64-bit integers. The input values are assumed to be represented using 32-bit limbs, but this is not checked. The stack transition looks as follows: [[b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a AND b. checked_or Performs bitwise OR of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a OR b. checked_xor Performs bitwise XOR of two unsigned 64-bit integers. The input values are expected to be represented using 32-bit limbs, and the procedure will fail if they are not. The stack transition looks as follows: [b_hi, b_lo, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a XOR b. overflowing_shl Performs left shift of one unsigned 64-bit integer preserving the overflow and using the pow2 operation. The input value to be shifted is assumed to be represented using 32-bit limbs. The shift value should be in the range [0, 64), otherwise it will result in an error. The stack transition looks as follows: [b, a_hi, a_lo, ...] -> [d_hi, d_lo, c_hi, c_lo, ...], where (d,c) = a << b, which d contains the bits shifted out. This takes 35 cycles. unchecked_shl Performs left shift of one unsigned 64-bit integer using the pow2 operation. The input value to be shifted is assumed to be represented using 32-bit limbs. The shift value should be in the range [0, 64), otherwise it will result in an error. The stack transition looks as follows: [b, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a << b mod 2^64. This takes 28 cycles. overflowing_shr Performs right shift of one unsigned 64-bit integer preserving the overflow and using the pow2 operation. The input value to be shifted is assumed to be represented using 32-bit limbs. The shift value should be in the range [0, 64), otherwise it will result in an error. The stack transition looks as follows: [b, a_hi, a_lo, ...] -> [d_hi, d_lo, c_hi, c_lo, ...], where c = a >> b, d = a << (64 - b). This takes 94 cycles. unchecked_shr Performs right shift of one unsigned 64-bit integer using the pow2 operation. The input value to be shifted is assumed to be represented using 32-bit limbs. The shift value should be in the range [0, 64), otherwise it will result in an error. The stack transition looks as follows: [b, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a >> b. This takes 44 cycles. unchecked_rotl Performs left rotation of one unsigned 64-bit integer using the pow2 operation. The input value to be shifted is assumed to be represented using 32-bit limbs. The shift value should be in the range [0, 64), otherwise it will result in an error. The stack transition looks as follows: [b, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a << b mod 2^64. This takes 35 cycles. unchecked_rotr Performs right rotation of one unsigned 64-bit integer using the pow2 operation. The input value to be shifted is assumed to be represented using 32-bit limbs. The shift value should be in the range [0, 64), otherwise it will result in an error. The stack transition looks as follows: [b, a_hi, a_lo, ...] -> [c_hi, c_lo, ...], where c = a << b mod 2^64. This takes 40 cycles.","breadcrumbs":"User Documentation » Miden Standard Library » std::math::u64 » Bitwise operations","id":"84","title":"Bitwise operations"},"85":{"body":"Module std::mem contains a set of utility procedures for working with random access memory. Procedure Description memcopy Copies n words from read_ptr to write_ptr.Stack transition looks as follows:[n, read_ptr, write_ptr, ...] -> [...]Cycles: 15 + 16n pipe_double_words_to_memory Moves an even number of words from the advice stack to memory.Input: [C, B, A, write_ptr, end_ptr, ...]Output: [C, B, A, write_ptr, ...]Where:- The words C, B, and A are the RPO hasher state- A is the capacity- C, B are the rate portion of the state- The value num_words = end_ptr - write_ptr must be positive and evenCycles: 10 + 9 * num_words / 2 pipe_words_to_memory Moves an arbitrary number of words from the advice stack to memory.Input: [num_words, write_ptr, ...]Output: [HASH, write_ptr', ...]Where HASH is the sequential RPO hash of all copied words.Cycles:- Even num_words: 48 + 9 * num_words / 2- Odd num_words: 65 + 9 * round_down(num_words / 2) pipe_preimage_to_memory Moves an arbitrary number of words from the advice stack to memory and asserts it matches the commitment.Input: [num_words, write_ptr, COM, ...]Output: [write_ptr', ...]Cycles:- Even num_words: 58 + 9 * num_words / 2 - Odd num_words: 75 + 9 * round_down(num_words / 2)","breadcrumbs":"User Documentation » Miden Standard Library » std::mem » Memory procedures","id":"85","title":"Memory procedures"},"86":{"body":"Module std::sys contains a set of system-level utility procedures. Procedure Description truncate_stack Removes elements deep in the stack until the depth of the stack is exactly 16. The elements are removed in such a way that the top 16 elements of the stack remain unchanged. If the stack would otherwise contain more than 16 elements at the end of execution, then adding a call to this function at the end will reduce the size of the public inputs that are shared with the verifier.Input: Stack with 16 or more elements. Output: Stack with only the original top 16 elements.","breadcrumbs":"User Documentation » Miden Standard Library » std:sys » System procedures","id":"86","title":"System procedures"},"87":{"body":"In the following sections, we provide in-depth descriptions of Miden VM internals, including all AIR constraints for the proving system. We also provide rationale for making specific design choices. Throughout these sections we adopt the following notations and assumptions: All arithmetic operations, unless noted otherwise, are assumed to be in a prime field with modulus p=264−232+1. A binary value means a field element which is either 0 or 1. We use lowercase letters to refer to individual field elements (e.g., a), and uppercase letters to refer to groups of 4 elements, also referred to as words (e.g., A). To refer to individual elements within a word, we use numerical subscripts. For example, a0 is the first element of word A, b3 is the last element of word B, etc. When describing AIR constraints: For a column x, we denote the value in the current row simply as x, and the value in the next row of the column as x′. Thus, all transition constraints for Miden VM work with two consecutive rows of the execution trace. For multiset equality constraints, we denote random values sent by the verifier after the prover commits to the main execution trace as α0,α1,α2 etc. To differentiate constraints from other formulas, we frequently use the following format for constraint equations. x′−(x+y)=0 | degree=1 In the above, the constraint equation is followed by the implied algebraic degree of the constraint. This degree is determined by the number of multiplications between trace columns. If a constraint does not involve any multiplications between columns, its degree is 1. If a constraint involves multiplication between two columns, its degree is 2. If we need to multiply three columns together, the degree is 3 ect. The maximum allowed constraint degree in Miden VM is 9. If a constraint degree grows beyond that, we frequently need to introduce additional columns to reduce the degree.","breadcrumbs":"Design » Design","id":"87","title":"Design"},"88":{"body":"Miden VM consists of several interconnected components, each providing a specific set of functionality. These components are: System , which is responsible for managing system data, including the current VM cycle (clk), the free memory pointer (fmp) used for specifying the region of memory available to procedure locals, and the current and parent execution contexts. Program decoder , which is responsible for computing a commitment to the executing program and converting the program into a sequence of operations executed by the VM. Operand stack , which is a push-down stack which provides operands for all operations executed by the VM. Range checker , which is responsible for providing 16-bit range checks needed by other components. Chiplets , which is a set of specialized circuits used to accelerate commonly-used complex computations. Currently, the VM relies on 4 chiplets: Hash chiplet, used to compute Rescue Prime Optimized hashes both for sequential hashing and for Merkle tree hashing. Bitwise chiplet, used to compute bitwise operations (e.g., AND, XOR) over 32-bit integers. Memory chiplet, used to support random-access memory in the VM. Kernel ROM chiplet, used to enable calling predefined kernel procedures which are provided before execution begins. The above components are connected via buses , which are implemented using multiset checks . We also use multiset checks internally within components to describe virtual tables .","breadcrumbs":"Design » VM components","id":"88","title":"VM components"},"89":{"body":"The execution trace of Miden VM consists of 71 main trace columns, 2 buses, and 5 virtual tables, as shown in the diagram below. vm_trace.png As can be seen from the above, the system, decoder, stack, and range checker components use dedicated sets of columns, while all chiplets share the same 17 columns. To differentiate between chiplets, we use a set of binary selector columns, a combination of which uniquely identifies each chiplet. The system component does not yet have a dedicated documentation section, since the design is likely to change. However, the following two columns are not expected to change: clk which is used to keep track of the current VM cycle. Values in this column start out at 0 and are incremented by 1 with each cycle. fmp which contains the value of the free memory pointer used for specifying the region of memory available to procedure locals. AIR constraints for the fmp column are described in system operations section. For the clk column, the constraints are straightforward: clk′−(clk+1)=0 | degree=1","breadcrumbs":"Design » VM execution trace","id":"89","title":"VM execution trace"},"9":{"body":"For reasons explained here , the VM imposes the restriction that the stack depth cannot be smaller than 16. This has the following effects: When initializing a program with fewer than 16 inputs, the VM will pad the stack with zeros to ensure the depth is 16 at the beginning of execution. If an operation would result in the stack depth dropping below 16, the VM will insert a zero at the deep end of the stack to make sure the depth stays at 16.","breadcrumbs":"Introduction » Overview » Stack depth restrictions","id":"9","title":"Stack depth restrictions"},"90":{"body":"Miden VM consumes programs in a form of a Merkelized Abstract Syntax Tree (MAST). This tree is a binary tree where each node is a code block . The VM starts execution at the root of the tree, and attempts to recursively execute each required block according to its semantics. If the execution of a code block fails, the VM halts at that point and no further blocks are executed. A set of currently available blocks and their execution semantics are described below.","breadcrumbs":"Design » Programs » Programs in Miden VM","id":"90","title":"Programs in Miden VM"},"91":{"body":"","breadcrumbs":"Design » Programs » Code blocks","id":"91","title":"Code blocks"},"92":{"body":"A join block is used to describe sequential execution. When the VM encounters a join block, it executes its left child first, and then executes its right child. join_block A join block must always have two children, and thus, cannot be a leaf node in the tree.","breadcrumbs":"Design » Programs » Join block","id":"92","title":"Join block"},"93":{"body":"A split block is used to describe conditional execution. When the VM encounters a split block, it checks the top of the stack. If the top of the stack is 1, it executes the left child, if the top of the stack is 0, it executes the right child. If the top of the stack is neither 0 nor 1, the execution fails. split_block A split block must always have two children, and thus, cannot be a leaf node in the tree.","breadcrumbs":"Design » Programs » Split block","id":"93","title":"Split block"},"94":{"body":"A loop block is used to describe condition-based iterative execution. When the VM encounters a loop block, it checks the top of the stack. If the top of the stack is 1, it executes the loop body, if the top of the stack is 0, the block is not executed. If the top of the stack is neither 0 nor 1, the execution fails. After the body of the loop is executed, the VM checks the top of the stack again. If the top of the stack is 1, the body is executed again, if the top of the stack is 0, the loop is exited. If the top of the stack is neither 0 nor 1, the execution fails. loop_block A loop block must always have one child, and thus, cannot be a leaf node in the tree.","breadcrumbs":"Design » Programs » Loop block","id":"94","title":"Loop block"},"95":{"body":"A call block is used to describe a function call which is executed in a user context . When the VM encounters a call block, it creates a new user context, then executes a program which hashes to the target specified by the call block in the new context. Thus, in order to execute a call block, the VM must be aware of a program with the specified hash. Otherwise, the execution fails. At the end of the call block, execution returns to the previous context. When executing a call block, the VM does the following: Checks if a syscall is already being executed and fails if so. Sets the depth of the stack to 16. Upon return, checks that the depth of the stack is 16. If so, the original stack depth is restored. Otherwise, an error occurs. call_block A call block does not have any children. Thus, it must be leaf node in the tree.","breadcrumbs":"Design » Programs » Call block","id":"95","title":"Call block"},"96":{"body":"A syscall block is used to describe a function call which is executed in the root context . When the VM encounters a syscall block, it returns to the root context, then executes a program which hashes to the target specified by the syscall block. Thus, in order to execute a syscall block, the VM must be aware of a program with the specified hash, and that program must belong to the kernel against which the code is compiled. Otherwise, the execution fails. At the end of the syscall block, execution returns to the previous context. When executing a syscall block, the VM does the following: Checks if a syscall is already being executed and fails if so. Sets the depth of the stack to 16. Upon return, checks that the depth of the stack is 16. If so, the original stack depth is restored. Otherwise, an error occurs. syscall_block A syscall block does not have any children. Thus, it must be leaf node in the tree.","breadcrumbs":"Design » Programs » Syscall block","id":"96","title":"Syscall block"},"97":{"body":"A span block is used to describe a linear sequence of operations. When the VM encounters a span block, it breaks the sequence of operations into batches and groups according to the following rules: A group is represented by a single field element. Thus, assuming a single operation can be encoded using 7 bits, and assuming we are using a 64-bit field, a single group may encode up to 9 operations or a single immediate value. A batch is a set of groups which can be absorbed by a hash function used by the VM in a single permutation. For example, assuming the hash function can absorb up to 8 field elements in a single permutation, a single batch may contain up to 8 groups. There is no limit on the number of batches contained within a single span. Thus, for example, executing 8 pushes in a row will result in two operation batches as illustrated in the picture below: span_block_creation The first batch will contain 8 groups, with the first group containing 7 PUSH opcodes and 1 NOOP, and the remaining 7 groups containing immediate values for each of the push operations. The reason for the NOOP is explained later in this section. The second batch will contain 2 groups, with the first group containing 1 PUSH opcode and 1 NOOP, and the second group containing the immediate value for the last push operation. If a sequence of operations does not have any operations which carry immediate values, up to 72 operations can fit into a single batch. From the user's perspective, all operations are executed in order, however, the VM may insert occasional NOOPs to ensure proper alignment of all operations in the sequence. Currently, the alignment requirements are as follows: An operation carrying an immediate value cannot be the last operation in a group. Thus, for example, if a PUSH operation is the last operation in a group, the VM will insert a NOOP after it. A span block does not have any children, and thus, must be leaf node in the tree.","breadcrumbs":"Design » Programs » Span block","id":"97","title":"Span block"},"98":{"body":"Consider the following program, where a0,...,ai, b0,...,bj etc. represent individual operations: a_0, ..., a_i\nif.true b_0, ..., b_j\nelse c_0, ..., c_k while.true d_0, ..., d_n end e_0, ..., e_m\nend\nf_0, ..., f_l A MAST for this program would look as follows: mast_of_program Execution of this program would proceed as follows: The VM will start execution at the root of the program which is block B5. Since, B5 is a join block , the VM will attempt to execute block B4 first, and only after that execute block f. Block B4 is also a join block , and thus, the VM will execute block a by executing operations a0,...,ai in sequence, and then execute block B3. Block B3 is a split block , and thus, the VM will pop the value off the top of the stack. If the popped value is 1, operations from block b will be executed in sequence. If the popped value is 0, then the VM will attempt to execute block B2. B2 is a join block , thus, the VM will try to execute block B1 first, and then execute operations from block e. Block B1 is also a join_block , and thus, the VM will first execute all operations in block c, and then will attempt to execute block B0. Block B0 is a loop block, thus, the VM will pop the value off the top of the stack. If the pooped value is 1, the VM will execute the body of the loop defined by block d. If the popped value is 0, the VM will not execute block d and instead will move up the tree executing first block e, then f. If the VM does enter the loop, then after operation dn is executed, the VM will pop the value off the top of the stack again. If the popped value is 1, the VM will execute block d again, and again until the top of the stack becomes 0. Once the top of the stack becomes 0, the VM will exit the loop and will move up the tree executing first block e, then f.","breadcrumbs":"Design » Programs » Program example","id":"98","title":"Program example"},"99":{"body":"Every Miden VM program can be reduced to a unique hash value. Specifically, it is infeasible to find two Miden VM programs with distinct semantics which hash to the same value. Padding a program with NOOPs does not change a program's execution semantics, and thus, programs which differ only in the number and/or placement of NOOPs may hash to the same value, although in most cases padding with NOOP should not affect program hash. To prevent program hash collisions we implement domain separation across the variants of control blocks. We define the domain value to be the opcode of the operation that initializes the control block. Below we denote hash to be an arithmetization-friendly hash function with 4-element output and capable of absorbing 8 elements in a single permutation. The hash domain is specified as the subscript of the hash function and its value is used to populate the second capacity register upon initialization of control block hashing - hashdomain(a,b). The hash of a join block is computed as hashjoin(a,b), where a and b are hashes of the code block being joined. The hash of a split block is computed as hashsplit(a,b), where a is a hash of a code block corresponding to the true branch of execution, and b is a hash of a code block corresponding to the false branch of execution. The hash of a loop block is computed as hashloop(a,0), where a is a hash of a code block corresponding to the loop body. The hash of a call block is computed as hashcall(a,0), where a is a hash of a program of which the VM is aware. The hash of a syscall block is computed as hashsyscall(a,0), where a is a hash of a program belonging to the kernel against which the code was compiled. The hash of a span block is computed as hash(a1,...,ak), where ai is the ith batch of operations in the span block. Each batch of operations is defined as containing 8 field elements, and thus, hashing a k-batch span block requires k absorption steps. In cases when the number of operations is insufficient to fill the last batch entirely, NOOPs are appended to the end of the last batch to ensure that the number of operations in the batch is always equal to 8.","breadcrumbs":"Design » Programs » Program hash computation","id":"99","title":"Program hash computation"}},"length":275,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{"'":{"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"233":{"tf":1.0}}},",":{"0":{",":{"0":{",":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"1":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"224":{"tf":1.0},"234":{"tf":1.0}}},"1":{"df":2,"docs":{"224":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"0":{",":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"1":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"1":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"3":{",":{"4":{",":{"5":{",":{"6":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"2":{"df":2,"docs":{"6":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":2,"docs":{"124":{"tf":1.0},"189":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":2,"docs":{"34":{"tf":1.0},"70":{"tf":1.0}}}},".":{"9":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"1":{"0":{"0":{"1":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.0}}},"1":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":103,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":2.23606797749979},"106":{"tf":4.898979485566356},"109":{"tf":1.0},"110":{"tf":2.8284271247461903},"111":{"tf":5.0990195135927845},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":2.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":2.449489742783178},"120":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":2.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":2.0},"137":{"tf":2.0},"138":{"tf":3.4641016151377544},"139":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"154":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":2.8284271247461903},"227":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":3.605551275463989},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":2.23606797749979},"259":{"tf":1.7320508075688772},"261":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"28":{"tf":4.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":6.928203230275509},"34":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":2.23606797749979},"65":{"tf":2.6457513110645907},"66":{"tf":2.8284271247461903},"70":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"83":{"tf":4.0},"84":{"tf":2.449489742783178},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.0},"98":{"tf":2.0}},"s":{"df":1,"docs":{"239":{"tf":1.0}}},"x":{"7":{"b":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"":{"+":{"df":0,"docs":{},"v":{")":{"2":{"df":1,"docs":{"212":{"tf":1.0}}},"4":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"212":{"tf":1.0}}},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"a":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"r":{"+":{"7":{")":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"+":{"8":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"α":{"4":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"n":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"r":{"+":{"7":{")":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},",":{".":{".":{".":{",":{"df":0,"docs":{},"α":{"3":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"α":{"1":{"df":3,"docs":{"252":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0}},"":{",":{"df":0,"docs":{},"α":{"2":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"→":{"1":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"1":{"+":{"a":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"′":{")":{"df":0,"docs":{},"⋅":{"(":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":0,"docs":{},"−":{"1":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{")":{"=":{"0":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},",":{"0":{",":{"0":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"222":{"tf":1.0},"224":{"tf":1.4142135623730951}}},"1":{",":{"0":{",":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"1":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"222":{"tf":1.0},"224":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951}}},"1":{",":{"0":{"df":2,"docs":{"222":{"tf":1.0},"224":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"224":{"tf":1.0},"234":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"3":{",":{"4":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"6":{"7":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"/":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"7":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"1":{"1":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"138":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"266":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0}}},"1":{"0":{"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"138":{"tf":1.0},"274":{"tf":1.0}}},"2":{"4":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"144":{"tf":1.0}}},"6":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"144":{"tf":1.0}}},"df":9,"docs":{"123":{"tf":1.0},"139":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.4142135623730951},"247":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.0}}},"1":{"0":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"1":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"144":{"tf":1.0}}},"6":{"df":1,"docs":{"144":{"tf":1.0}}},"d":{"b":{"b":{"d":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"2":{"7":{"df":0,"docs":{},"e":{"2":{"6":{"df":0,"docs":{},"e":{"4":{"8":{"b":{"df":0,"docs":{},"e":{"3":{"1":{"9":{"8":{"1":{"3":{"3":{"d":{"df":0,"docs":{},"f":{"8":{"c":{"b":{"df":0,"docs":{},"e":{"d":{"6":{"c":{"5":{"8":{"7":{"5":{"d":{"0":{"df":0,"docs":{},"f":{"b":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.0}}},"2":{",":{"1":{"3":{",":{"1":{"4":{",":{"1":{"5":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"144":{"tf":1.0}}},"2":{"df":1,"docs":{"20":{"tf":1.0}}},"3":{"df":2,"docs":{"36":{"tf":1.0},"63":{"tf":1.0}}},"4":{"df":1,"docs":{"144":{"tf":1.0}}},"6":{"df":1,"docs":{"20":{"tf":1.0}}},"8":{"df":3,"docs":{"20":{"tf":1.0},"266":{"tf":1.0},"68":{"tf":1.0}}},"9":{"df":1,"docs":{"247":{"tf":1.4142135623730951}}},"df":12,"docs":{"123":{"tf":1.0},"139":{"tf":1.0},"187":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"246":{"tf":1.0},"258":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"3":{"5":{"6":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"20":{"tf":1.0}}},"df":2,"docs":{"139":{"tf":1.0},"222":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"204":{"tf":1.0}}}}},"4":{"df":2,"docs":{"139":{"tf":1.0},"20":{"tf":1.0}}},"5":{".":{"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"247":{"tf":1.0}}},"df":7,"docs":{"111":{"tf":1.0},"139":{"tf":1.0},"20":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"53":{"tf":1.0},"85":{"tf":1.0}}},"6":{"3":{"df":1,"docs":{"247":{"tf":1.0}}},"df":54,"docs":{"127":{"tf":2.449489742783178},"128":{"tf":2.23606797749979},"129":{"tf":1.0},"131":{"tf":2.0},"133":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"210":{"tf":2.0},"213":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.0},"23":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":2.23606797749979},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"42":{"tf":2.449489742783178},"45":{"tf":2.0},"52":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":2.23606797749979},"88":{"tf":1.0},"9":{"tf":2.23606797749979},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"85":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}}},"7":{"df":6,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"53":{"tf":1.0},"89":{"tf":1.0}}},"8":{"df":2,"docs":{"139":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"9":{"df":3,"docs":{"128":{"tf":1.0},"139":{"tf":1.0},"53":{"tf":1.0}}},"df":118,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"106":{"tf":4.58257569495584},"109":{"tf":1.0},"110":{"tf":2.449489742783178},"111":{"tf":3.4641016151377544},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":2.23606797749979},"116":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":2.6457513110645907},"120":{"tf":2.0},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":2.23606797749979},"126":{"tf":1.7320508075688772},"129":{"tf":1.4142135623730951},"130":{"tf":2.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"138":{"tf":3.1622776601683795},"139":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":2.0},"148":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":2.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":2.0},"232":{"tf":1.4142135623730951},"233":{"tf":2.6457513110645907},"234":{"tf":4.795831523312719},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"245":{"tf":1.7320508075688772},"247":{"tf":4.47213595499958},"250":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":2.449489742783178},"259":{"tf":1.4142135623730951},"261":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.4142135623730951},"274":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":2.0},"34":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":2.8284271247461903},"53":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"60":{"tf":2.6457513110645907},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":2.0},"68":{"tf":2.23606797749979},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"83":{"tf":3.7416573867739413},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"−":{"b":{"6":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"4":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"4":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{")":{"=":{"0":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{")":{"=":{"0":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"b":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"1":{"6":{")":{"=":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{")":{"=":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"k":{"0":{"df":1,"docs":{"234":{"tf":1.0}}},"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"⋅":{"(":{"2":{"3":{"2":{"df":0,"docs":{},"−":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{")":{"=":{"1":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"δ":{"a":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"1":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{"=":{"1":{"df":2,"docs":{"257":{"tf":1.0},"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"δ":{"c":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"z":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"1":{"6":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{")":{"=":{"0":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"159":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"2":{"'":{"df":1,"docs":{"212":{"tf":1.0}}},".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"5":{"df":0,"docs":{},"x":{"df":1,"docs":{"258":{"tf":1.0}}}},"6":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"7":{"0":{"df":1,"docs":{"247":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"139":{"tf":1.0},"20":{"tf":1.0},"68":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"6":{"df":12,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.4142135623730951},"210":{"tf":1.0},"259":{"tf":1.0},"37":{"tf":1.0}}},"8":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"df":1,"docs":{"139":{"tf":1.0}}},"2":{"0":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}},"df":1,"docs":{"139":{"tf":1.0}}},"3":{"0":{"+":{"3":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"37":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"1":{"df":1,"docs":{"45":{"tf":1.0}}},"2":{"df":16,"docs":{"127":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"246":{"tf":1.0},"258":{"tf":1.7320508075688772},"55":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0}},"−":{"1":{"df":4,"docs":{"170":{"tf":1.0},"44":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"139":{"tf":1.0},"56":{"tf":1.0}}},"4":{".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"20":{"tf":1.0}}},"8":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"3":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"t":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":3,"docs":{"102":{"tf":1.0},"139":{"tf":1.0},"247":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"2":{"6":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":2,"docs":{"211":{"tf":1.7320508075688772},"65":{"tf":1.0}}},"6":{"df":1,"docs":{"258":{"tf":1.0}}},"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"≤":{"2":{"1":{"6":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"139":{"tf":1.0}}},"6":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"1":{"5":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"2":{"6":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"−":{"2":{"3":{"2":{"+":{"1":{"df":5,"docs":{"127":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"253":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"139":{"tf":1.0}}},"7":{".":{"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"21":{"tf":1.0}}},"df":3,"docs":{"111":{"tf":1.0},"123":{"tf":1.0},"139":{"tf":1.0}}},"8":{"df":3,"docs":{"139":{"tf":1.0},"20":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"df":2,"docs":{"139":{"tf":1.0},"68":{"tf":1.0}}},"^":{"3":{"2":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"82":{"tf":3.0},"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":74,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":1.0},"209":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"266":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":2.0},"51":{"tf":1.4142135623730951},"52":{"tf":2.449489742783178},"53":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":3.3166247903554},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":2.0},"68":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.7320508075688772},"79":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":2.23606797749979},"87":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"'":{"df":1,"docs":{"212":{"tf":1.0}}},".":{"1":{"df":1,"docs":{"21":{"tf":1.0}}},"6":{"df":1,"docs":{"21":{"tf":1.0}}},"7":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"7":{"2":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"139":{"tf":1.0},"20":{"tf":1.0}}},"1":{"0":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}},"df":2,"docs":{"139":{"tf":1.0},"170":{"tf":1.0}}},"2":{"df":31,"docs":{"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":2.23606797749979},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"258":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"58":{"tf":2.0},"65":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":2.8284271247461903},"80":{"tf":2.8284271247461903},"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"88":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"1":{"3":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"140":{"tf":1.0},"58":{"tf":1.0}}},"4":{"df":1,"docs":{"140":{"tf":1.0}}},"5":{"df":2,"docs":{"140":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"140":{"tf":1.0},"58":{"tf":1.0}}},"7":{"df":3,"docs":{"140":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}},"8":{"df":1,"docs":{"140":{"tf":1.0}}},"9":{"df":1,"docs":{"140":{"tf":1.0}}},"df":49,"docs":{"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":2.23606797749979},"111":{"tf":1.0},"113":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"250":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":2.0},"45":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":3.3166247903554},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"66":{"tf":2.23606797749979},"68":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":1,"docs":{"213":{"tf":1.0}}},"r":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"4":{",":{"5":{",":{"6":{",":{"7":{",":{"8":{",":{"9":{",":{"1":{"0":{",":{"1":{"1":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":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":{"186":{"tf":1.0},"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":3,"docs":{"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0}}},"df":0,"docs":{}},".":{"6":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"0":{"4":{"2":{"6":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"140":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"1":{"8":{"5":{"1":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"140":{"tf":1.0}}},"2":{"df":1,"docs":{"140":{"tf":1.0}}},"3":{"df":1,"docs":{"140":{"tf":1.0}}},"4":{"df":3,"docs":{"140":{"tf":1.0},"58":{"tf":1.0},"84":{"tf":1.0}}},"5":{"df":1,"docs":{"140":{"tf":1.0}}},"6":{"df":1,"docs":{"140":{"tf":1.0}}},"7":{"df":3,"docs":{"140":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.7320508075688772}}},"8":{"df":2,"docs":{"141":{"tf":1.0},"85":{"tf":1.0}}},"9":{"df":1,"docs":{"141":{"tf":1.0}}},"]":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":54,"docs":{"104":{"tf":2.0},"105":{"tf":2.0},"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":2.6457513110645907},"116":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"138":{"tf":2.0},"139":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":2.8284271247461903},"166":{"tf":1.7320508075688772},"167":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"200":{"tf":1.0},"202":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":2.0},"209":{"tf":1.7320508075688772},"217":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"247":{"tf":2.23606797749979},"258":{"tf":1.7320508075688772},"269":{"tf":1.0},"31":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":3.3166247903554},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"65":{"tf":1.7320508075688772},"66":{"tf":2.6457513110645907},"72":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}},"n":{"df":2,"docs":{"212":{"tf":1.0},"216":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}}},"5":{",":{"6":{",":{"7":{",":{"8":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"2":{"df":2,"docs":{"141":{"tf":1.0},"20":{"tf":1.0}}},"3":{"df":1,"docs":{"141":{"tf":1.0}}},"4":{"df":1,"docs":{"141":{"tf":1.0}}},"5":{"df":1,"docs":{"141":{"tf":1.0}}},"6":{"df":1,"docs":{"141":{"tf":1.0}}},"7":{"df":2,"docs":{"141":{"tf":1.0},"20":{"tf":1.0}}},"8":{"df":2,"docs":{"141":{"tf":1.0},"85":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"5":{"0":{"df":0,"docs":{},"x":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"141":{"tf":1.0},"58":{"tf":1.0}}},"df":27,"docs":{"113":{"tf":2.0},"116":{"tf":1.4142135623730951},"132":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.0},"142":{"tf":2.0},"143":{"tf":4.0},"144":{"tf":1.0},"200":{"tf":1.0},"222":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.449489742783178},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0}}},"6":{".":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"6":{"c":{"9":{"df":0,"docs":{},"f":{"0":{"3":{"7":{"c":{"7":{"8":{"9":{"3":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"e":{"4":{"1":{"1":{"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":1,"docs":{"141":{"tf":1.0}}},"1":{"df":2,"docs":{"141":{"tf":1.0},"20":{"tf":1.0}}},"2":{"df":1,"docs":{"141":{"tf":1.0}}},"3":{"df":2,"docs":{"141":{"tf":1.0},"52":{"tf":1.0}}},"4":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":23,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"213":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"266":{"tf":1.0},"38":{"tf":1.4142135623730951},"6":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":4.0},"97":{"tf":1.0}}},"5":{"5":{"3":{"5":{"df":3,"docs":{"213":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.0}}},"6":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.0}},"k":{"df":1,"docs":{"213":{"tf":1.0}}}},"6":{"df":2,"docs":{"142":{"tf":1.0},"20":{"tf":1.0}}},"7":{"df":1,"docs":{"20":{"tf":1.0}}},"8":{"df":1,"docs":{"142":{"tf":1.0}}},"9":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}},"df":28,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.7320508075688772},"132":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"142":{"tf":3.1622776601683795},"184":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.7320508075688772},"224":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":2.0},"255":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"77":{"tf":1.4142135623730951}},"x":{"df":1,"docs":{"258":{"tf":1.0}}}},"7":{".":{"7":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"142":{"tf":1.0}}},"1":{"df":1,"docs":{"89":{"tf":1.0}}},"2":{"df":2,"docs":{"142":{"tf":1.0},"97":{"tf":1.0}}},"3":{"df":1,"docs":{"52":{"tf":1.0}}},"4":{"df":1,"docs":{"142":{"tf":1.0}}},"5":{"df":1,"docs":{"85":{"tf":1.0}}},"6":{"df":2,"docs":{"142":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"20":{"tf":1.0}}},"8":{"df":2,"docs":{"142":{"tf":1.0},"20":{"tf":1.0}}},"df":30,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":2.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"126":{"tf":1.0},"138":{"tf":2.6457513110645907},"139":{"tf":5.830951894845301},"140":{"tf":4.123105625617661},"141":{"tf":4.123105625617661},"143":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"240":{"tf":2.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"68":{"tf":1.0},"97":{"tf":1.7320508075688772}}},"8":{",":{"1":{"6":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"9":{",":{"1":{"0":{",":{"1":{"1":{",":{"1":{"2":{",":{"1":{"3":{",":{"1":{"4":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"143":{"tf":1.0},"20":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"2":{"df":1,"docs":{"143":{"tf":1.0}}},"3":{"df":1,"docs":{"143":{"tf":1.0}}},"4":{"df":1,"docs":{"143":{"tf":1.0}}},"5":{"df":2,"docs":{"143":{"tf":1.0},"20":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"143":{"tf":1.0}}},"7":{"df":2,"docs":{"143":{"tf":1.0},"30":{"tf":1.0}}},"8":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"143":{"tf":1.0}}},"9":{"df":2,"docs":{"143":{"tf":1.0},"20":{"tf":1.0}}},"df":45,"docs":{"104":{"tf":2.6457513110645907},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"111":{"tf":3.605551275463989},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":2.0},"121":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"142":{"tf":1.0},"186":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"222":{"tf":1.7320508075688772},"224":{"tf":1.0},"232":{"tf":3.3166247903554},"233":{"tf":1.7320508075688772},"234":{"tf":3.3166247903554},"237":{"tf":1.0},"238":{"tf":2.0},"242":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"246":{"tf":1.7320508075688772},"247":{"tf":1.7320508075688772},"250":{"tf":1.4142135623730951},"252":{"tf":1.0},"258":{"tf":1.0},"29":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"97":{"tf":2.0},"99":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"244":{"tf":1.0}}}},"⋅":{"d":{"df":0,"docs":{},"−":{"1":{"df":2,"docs":{"207":{"tf":1.0},"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"9":{".":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"8":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":2,"docs":{"143":{"tf":1.0},"20":{"tf":1.0}}},"2":{"df":1,"docs":{"143":{"tf":1.0}}},"3":{"df":1,"docs":{"143":{"tf":1.0}}},"4":{"df":2,"docs":{"143":{"tf":1.0},"84":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":1,"docs":{"143":{"tf":1.0}}},"6":{"df":3,"docs":{"144":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0}}},"df":23,"docs":{"105":{"tf":1.0},"111":{"tf":2.23606797749979},"118":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"193":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"247":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"68":{"tf":1.0},"85":{"tf":2.23606797749979},"87":{"tf":1.0},"97":{"tf":1.0}}},"_":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.0}}},"a":{"+":{"1":{"df":1,"docs":{"65":{"tf":1.0}}},"7":{"df":1,"docs":{"116":{"tf":1.0}}},"b":{")":{"df":0,"docs":{},"≥":{"2":{"3":{"2":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"+":{"c":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"173":{"tf":1.0}},"⋅":{"c":{"df":1,"docs":{"177":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"′":{",":{"df":0,"docs":{},"h":{"5":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{",":{"c":{",":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{",":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"/":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":7,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"34":{"tf":1.0},"54":{"tf":2.8284271247461903},"65":{"tf":1.4142135623730951},"70":{"tf":1.0},"87":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"a":{"1":{"1":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"df":1,"docs":{"209":{"tf":1.0}},"":{",":{"a":{"2":{"df":0,"docs":{},"":{",":{"a":{"3":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{".":{"a":{"3":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"←":{"df":0,"docs":{},"−":{"a":{"0":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"df":4,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"54":{"tf":2.8284271247461903},"65":{"tf":1.4142135623730951}},"′":{"df":0,"docs":{},"←":{"df":0,"docs":{},"−":{"a":{"1":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"2":{"df":2,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":1.0}}},"3":{"df":2,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":1.0}}},"<":{"2":{"3":{"2":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":1,"docs":{"57":{"tf":1.0}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"53":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}},"=":{"0":{"df":4,"docs":{"165":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}}},"1":{"df":1,"docs":{"51":{"tf":1.0}}},"4":{"1":{"8":{"5":{"1":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":2,"docs":{"164":{"tf":1.0},"51":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"∑":{"df":0,"docs":{},"i":{"=":{"0":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},">":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"6":{"3":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":4,"docs":{"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0}}}},"i":{"df":1,"docs":{"98":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":4,"docs":{"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":95,"docs":{"104":{"tf":1.0},"106":{"tf":3.1622776601683795},"107":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":2.0},"113":{"tf":1.0},"116":{"tf":3.1622776601683795},"117":{"tf":1.7320508075688772},"118":{"tf":2.23606797749979},"120":{"tf":2.0},"122":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":2.23606797749979},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"138":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":2.23606797749979},"207":{"tf":2.0},"208":{"tf":2.0},"212":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":3.1622776601683795},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":2.23606797749979},"255":{"tf":1.7320508075688772},"256":{"tf":2.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.4142135623730951},"272":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"p":{"df":3,"docs":{"232":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"62":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.7320508075688772},"74":{"tf":1.0}}}}},"r":{"b":{"df":15,"docs":{"104":{"tf":2.23606797749979},"106":{"tf":1.0},"111":{"tf":2.6457513110645907},"115":{"tf":1.4142135623730951},"116":{"tf":2.23606797749979},"232":{"tf":2.0},"233":{"tf":1.0},"238":{"tf":2.0},"239":{"tf":2.0},"240":{"tf":2.0},"243":{"tf":1.7320508075688772},"244":{"tf":1.4142135623730951},"245":{"tf":2.0},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"116":{"tf":2.0},"99":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":1,"docs":{"166":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"15":{"tf":2.23606797749979},"220":{"tf":1.0},"88":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":32,"docs":{"116":{"tf":1.7320508075688772},"127":{"tf":1.0},"199":{"tf":2.449489742783178},"2":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"220":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.7320508075688772},"260":{"tf":1.0},"263":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":2.449489742783178},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":2.0},"72":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"257":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":15,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"259":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}}}},"r":{"d":{"df":7,"docs":{"100":{"tf":1.0},"104":{"tf":1.7320508075688772},"113":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"247":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":15,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"210":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"35":{"tf":2.23606797749979},"69":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"227":{"tf":3.0}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"231":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"105":{"tf":1.0},"111":{"tf":1.4142135623730951},"213":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{".":{"1":{"df":1,"docs":{"23":{"tf":1.0}}},"b":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":34,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":3.605551275463989},"110":{"tf":2.0},"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.449489742783178},"126":{"tf":2.23606797749979},"130":{"tf":1.7320508075688772},"140":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.7320508075688772},"2":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.7320508075688772},"23":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.0},"248":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"265":{"tf":1.0},"38":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":38,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"2":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"259":{"tf":1.0},"38":{"tf":1.4142135623730951},"48":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"133":{"tf":1.0},"221":{"tf":1.0},"255":{"tf":1.0},"271":{"tf":1.0},"45":{"tf":1.0}}}}}}},"r":{"=":{"0":{"df":1,"docs":{"264":{"tf":1.0}}},"1":{"df":1,"docs":{"264":{"tf":1.0}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"262":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"111":{"tf":2.23606797749979},"223":{"tf":1.0},"254":{"tf":2.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"261":{"tf":1.7320508075688772},"262":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":46,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"106":{"tf":3.3166247903554},"111":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":3.1622776601683795},"118":{"tf":1.4142135623730951},"121":{"tf":2.0},"126":{"tf":2.0},"128":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"17":{"tf":1.0},"200":{"tf":2.0},"201":{"tf":2.0},"202":{"tf":2.0},"203":{"tf":2.0},"204":{"tf":1.7320508075688772},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"253":{"tf":1.7320508075688772},"254":{"tf":2.23606797749979},"255":{"tf":2.449489742783178},"256":{"tf":2.8284271247461903},"257":{"tf":2.6457513110645907},"258":{"tf":3.3166247903554},"259":{"tf":2.6457513110645907},"261":{"tf":1.0},"264":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"44":{"tf":2.6457513110645907},"45":{"tf":2.0},"6":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":3.4641016151377544},"77":{"tf":1.0}}}}},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{")":{"=":{"0":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":25,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":2.8284271247461903},"112":{"tf":1.7320508075688772},"117":{"tf":3.1622776601683795},"118":{"tf":3.3166247903554},"126":{"tf":2.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"213":{"tf":1.0},"221":{"tf":1.4142135623730951},"247":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"6":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.0},"223":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"127":{"tf":1.0},"138":{"tf":1.0},"241":{"tf":1.0},"87":{"tf":1.0}}}}},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"6":{"4":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"w":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"65":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"4":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"65":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"100":{"tf":1.0},"150":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"21":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":15,"docs":{"10":{"tf":3.1622776601683795},"17":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"207":{"tf":1.0},"6":{"tf":2.6457513110645907},"62":{"tf":2.449489742783178},"65":{"tf":4.898979485566356},"68":{"tf":2.23606797749979},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"8":{"tf":2.0},"85":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"[":{"df":0,"docs":{},"k":{"]":{"df":0,"docs":{},"←":{"[":{"a":{",":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"141":{"tf":1.0},"197":{"tf":2.0}},"w":{"df":2,"docs":{"139":{"tf":1.0},"198":{"tf":2.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"137":{"tf":1.4142135623730951},"203":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"106":{"tf":1.0},"110":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":1.0},"219":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"265":{"tf":1.0},"45":{"tf":2.0},"49":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"t":{"df":21,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":1.0},"16":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0},"231":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"68":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":6,"docs":{"166":{"tf":1.0},"224":{"tf":1.0},"246":{"tf":1.4142135623730951},"247":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":2.23606797749979}}}}}},"o":{"df":1,"docs":{"31":{"tf":1.0}}}},"i":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":2,"docs":{"250":{"tf":1.4142135623730951},"99":{"tf":1.0}},"r":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":20,"docs":{"113":{"tf":1.7320508075688772},"116":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"248":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"4":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"":{"<":{"2":{"3":{"2":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"∀":{"df":0,"docs":{},"i":{"df":0,"docs":{},"∈":{"df":0,"docs":{},"{":{"0":{",":{"1":{",":{"2":{",":{"3":{"df":0,"docs":{},"}":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":1,"docs":{"274":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"222":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"128":{"tf":1.0},"254":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":14,"docs":{"111":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.0},"213":{"tf":2.0},"221":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.4142135623730951},"248":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"40":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}},"g":{"df":2,"docs":{"17":{"tf":1.0},"29":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"0":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"123":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":7,"docs":{"116":{"tf":1.0},"17":{"tf":1.0},"227":{"tf":1.0},"245":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":22,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"209":{"tf":1.0},"221":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.4142135623730951},"260":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}}},"d":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"258":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"69":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"129":{"tf":1.0},"268":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}},"z":{"df":1,"docs":{"16":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"d":{"(":{"a":{",":{"b":{")":{"=":{"3":{"3":{"1":{"3":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"⋅":{"b":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"65":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"170":{"tf":1.0},"211":{"tf":1.4142135623730951},"221":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0},"36":{"tf":1.0},"62":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"221":{"tf":1.0},"246":{"tf":1.0},"74":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":3,"docs":{"15":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772}},"i":{"c":{"df":6,"docs":{"1":{"tf":1.0},"113":{"tf":1.0},"15":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0}}},"df":20,"docs":{"113":{"tf":1.0},"121":{"tf":1.0},"135":{"tf":1.0},"19":{"tf":1.0},"206":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":2.0},"226":{"tf":1.0},"227":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"255":{"tf":1.0},"262":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":2.0},"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"111":{"tf":1.0},"209":{"tf":1.0},"251":{"tf":1.0}}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"2":{"tf":1.0},"216":{"tf":1.0},"243":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"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":3,"docs":{"23":{"tf":1.0},"265":{"tf":1.0},"270":{"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":9,"docs":{"155":{"tf":1.0},"2":{"tf":1.0},"274":{"tf":1.4142135623730951},"52":{"tf":1.0},"57":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"45":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}}},"y":{"df":2,"docs":{"10":{"tf":1.0},"17":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":27,"docs":{"16":{"tf":2.449489742783178},"2":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":3.605551275463989},"35":{"tf":3.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"46":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772}},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"51":{"tf":1.0}},"w":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":5,"docs":{"140":{"tf":1.0},"151":{"tf":1.7320508075688772},"28":{"tf":1.0},"51":{"tf":1.4142135623730951},"85":{"tf":1.0}},"z":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"257":{"tf":1.0},"44":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":50,"docs":{"113":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"211":{"tf":1.0},"246":{"tf":1.4142135623730951},"258":{"tf":1.0},"268":{"tf":1.0},"34":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":3.0},"83":{"tf":3.1622776601683795},"84":{"tf":2.6457513110645907},"87":{"tf":1.0},"97":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"274":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":3.0},"111":{"tf":1.0},"129":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"104":{"tf":1.0},"115":{"tf":1.0},"22":{"tf":1.4142135623730951},"26":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"66":{"tf":1.7320508075688772},"69":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"95":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}},"y":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"′":{",":{"a":{",":{"0":{"df":1,"docs":{"117":{"tf":2.0}}},"1":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{",":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"=":{"1":{"6":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"∑":{"df":0,"docs":{},"i":{"=":{"0":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"←":{"a":{"+":{"2":{"df":2,"docs":{"65":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"q":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"−":{"a":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":2,"docs":{"256":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":2,"docs":{"254":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"257":{"tf":1.0},"258":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"←":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"4":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"→":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"−":{"b":{"df":1,"docs":{"175":{"tf":1.0}}},"c":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"≤":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}},"≥":{"2":{"3":{"2":{"df":3,"docs":{"56":{"tf":1.4142135623730951},"58":{"tf":3.3166247903554},"66":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}},"⊕":{"b":{"df":0,"docs":{},"→":{"df":0,"docs":{},"z":{"df":1,"docs":{"246":{"tf":1.0}}}}},"df":0,"docs":{}},"⋅":{"b":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"":{"=":{"0":{"df":1,"docs":{"51":{"tf":1.0}}},"1":{"df":1,"docs":{"51":{"tf":1.0}}},"b":{"df":1,"docs":{"51":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{",":{"c":{")":{"df":0,"docs":{},"←":{"a":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"0":{"df":11,"docs":{"112":{"tf":2.8284271247461903},"128":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.4142135623730951},"196":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"54":{"tf":2.0},"65":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}},"":{",":{".":{".":{".":{",":{"b":{"1":{"1":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":2,"docs":{"103":{"tf":1.0},"138":{"tf":1.0}}},"df":0,"docs":{},"j":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"1":{"df":0,"docs":{},"":{",":{"b":{"2":{"df":0,"docs":{},"":{",":{"b":{"3":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{".":{"b":{"3":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"1":{"6":{"df":3,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"6":{"1":{"df":4,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"":{"=":{"1":{"6":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"′":{"df":0,"docs":{},"":{"=":{"b":{"0":{"df":1,"docs":{"134":{"tf":1.0}},"":{"+":{"1":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"1":{"_":{"0":{"1":{"1":{"0":{"_":{"1":{"0":{"1":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"247":{"tf":1.0}}},"1":{"_":{"1":{"1":{"0":{"1":{"_":{"1":{"1":{"1":{"0":{"_":{"1":{"0":{"1":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"_":{"0":{"0":{"1":{"1":{"_":{"0":{"1":{"1":{"1":{"_":{"1":{"0":{"1":{"1":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"112":{"tf":3.0},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"138":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"54":{"tf":2.0},"65":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}},"":{",":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{",":{"b":{"1":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":2,"docs":{"128":{"tf":1.0},"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":5,"docs":{"112":{"tf":3.1622776601683795},"138":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"98":{"tf":1.4142135623730951}},"−":{"b":{"=":{"0":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":8,"docs":{"112":{"tf":3.0},"138":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"4":{"df":3,"docs":{"112":{"tf":2.0},"138":{"tf":1.0},"98":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":3,"docs":{"138":{"tf":1.0},"144":{"tf":1.0},"98":{"tf":1.4142135623730951}},"":{"=":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"144":{"tf":1.0}},"":{"=":{"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"5":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"4":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"4":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"5":{"df":1,"docs":{"138":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"b":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"=":{"0":{"df":3,"docs":{"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":2.449489742783178}}},"1":{"df":1,"docs":{"165":{"tf":1.0}}},"4":{"0":{"4":{"2":{"6":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"∑":{"df":0,"docs":{},"i":{"=":{"0":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},">":{"3":{"1":{"df":1,"docs":{"58":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"82":{"tf":3.872983346207417},"83":{"tf":4.0},"84":{"tf":1.7320508075688772}}}},"j":{"df":1,"docs":{"98":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"82":{"tf":3.872983346207417},"83":{"tf":4.0},"84":{"tf":1.7320508075688772}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"104":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"152":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"271":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"260":{"tf":1.0},"274":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"23":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"45":{"tf":1.0}}},"df":1,"docs":{"45":{"tf":3.0}}},"s":{"df":0,"docs":{},"e":{"df":20,"docs":{"0":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"113":{"tf":1.0},"124":{"tf":1.0},"147":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"259":{"tf":1.0},"274":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"49":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"126":{"tf":1.0},"2":{"tf":1.0},"242":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":19,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":3.1622776601683795},"106":{"tf":3.1622776601683795},"111":{"tf":5.916079783099616},"115":{"tf":2.449489742783178},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"121":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":4.242640687119285},"126":{"tf":2.8284271247461903},"253":{"tf":1.0},"258":{"tf":1.4142135623730951},"6":{"tf":1.0},"62":{"tf":1.0},"97":{"tf":2.8284271247461903},"99":{"tf":2.449489742783178}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}}},"z":{"df":1,"docs":{"45":{"tf":3.0}}}},"c":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"1":{"df":1,"docs":{"125":{"tf":1.0}}},"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":13,"docs":{"104":{"tf":2.449489742783178},"116":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":2.449489742783178},"233":{"tf":2.0},"245":{"tf":3.3166247903554},"259":{"tf":1.7320508075688772},"261":{"tf":1.0},"273":{"tf":1.0}},"′":{"df":0,"docs":{},"":{"=":{"b":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"116":{"tf":1.0},"245":{"tf":1.0},"263":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"+":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"263":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"263":{"tf":1.0}}},"v":{"a":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"245":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"245":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"259":{"tf":1.0}}}}},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"=":{"b":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"":{"=":{"b":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"=":{"b":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"206":{"tf":1.0},"207":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}},"i":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"b":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":57,"docs":{"100":{"tf":1.0},"106":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"198":{"tf":1.0},"23":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":2.0},"247":{"tf":2.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.0},"266":{"tf":1.7320508075688772},"271":{"tf":2.6457513110645907},"34":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":4.123105625617661},"53":{"tf":3.3166247903554},"56":{"tf":2.449489742783178},"57":{"tf":5.830951894845301},"58":{"tf":5.656854249492381},"59":{"tf":4.0},"60":{"tf":2.449489742783178},"61":{"tf":2.0},"63":{"tf":2.23606797749979},"64":{"tf":1.4142135623730951},"65":{"tf":2.449489742783178},"66":{"tf":1.0},"68":{"tf":2.0},"70":{"tf":1.0},"82":{"tf":4.123105625617661},"83":{"tf":4.47213595499958},"84":{"tf":4.0},"85":{"tf":2.0},"87":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":8,"docs":{"110":{"tf":1.0},"131":{"tf":1.0},"17":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"8":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":20,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"122":{"tf":1.0},"148":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"209":{"tf":1.0},"258":{"tf":1.0},"27":{"tf":1.0},"42":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":19,"docs":{"101":{"tf":1.0},"106":{"tf":2.8284271247461903},"11":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"17":{"tf":1.0},"222":{"tf":1.0},"234":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"33":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"66":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"122":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.0},"45":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"243":{"tf":1.0},"244":{"tf":1.0},"257":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"121":{"tf":1.0},"137":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"7":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"96":{"tf":1.0},"99":{"tf":1.0}}}},"w":{"df":115,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":2.6457513110645907},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.23606797749979},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":2.23606797749979},"208":{"tf":2.449489742783178},"209":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"246":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":2.0},"27":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"274":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"1":{"tf":1.0},"8":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"212":{"tf":1.0},"3":{"tf":1.7320508075688772},"45":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":45,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"213":{"tf":2.449489742783178},"222":{"tf":1.0},"223":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":2.0},"257":{"tf":2.6457513110645907},"258":{"tf":2.449489742783178},"259":{"tf":1.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}}}},"h":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"+":{"df":0,"docs":{},"α":{"7":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"4":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"114":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"111":{"tf":1.0},"250":{"tf":1.4142135623730951}},"g":{"df":2,"docs":{"138":{"tf":1.0},"224":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":47,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"111":{"tf":1.0},"114":{"tf":1.4142135623730951},"120":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"259":{"tf":1.0},"262":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"58":{"tf":2.0},"70":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"d":{"df":2,"docs":{"100":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":63,"docs":{"100":{"tf":1.0},"111":{"tf":2.0},"116":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":3.1622776601683795},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":2.449489742783178},"171":{"tf":2.0},"172":{"tf":1.7320508075688772},"173":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":2.0},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":1.4142135623730951},"213":{"tf":2.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0},"224":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.7320508075688772},"246":{"tf":3.0},"247":{"tf":2.8284271247461903},"250":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"255":{"tf":2.23606797749979},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":2.23606797749979},"266":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"58":{"tf":3.1622776601683795},"6":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":2.23606797749979},"80":{"tf":2.23606797749979},"81":{"tf":2.449489742783178},"82":{"tf":5.477225575051661},"83":{"tf":6.0},"84":{"tf":4.358898943540674},"88":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":19,"docs":{"116":{"tf":1.0},"179":{"tf":2.0},"180":{"tf":2.0},"2":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.4142135623730951},"246":{"tf":2.8284271247461903},"247":{"tf":1.7320508075688772},"248":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":2.449489742783178},"273":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"81":{"tf":1.0},"84":{"tf":2.0},"88":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"3":{"df":3,"docs":{"19":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"+":{"8":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"106":{"tf":5.385164807134504},"111":{"tf":2.449489742783178}}},"o":{"c":{"df":0,"docs":{},"k":{"'":{"df":5,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":2.449489742783178},"115":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":1,"docs":{"118":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"33":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":45,"docs":{"100":{"tf":1.0},"101":{"tf":3.1622776601683795},"102":{"tf":1.0},"103":{"tf":2.23606797749979},"104":{"tf":1.4142135623730951},"105":{"tf":6.164414002968976},"106":{"tf":6.0},"107":{"tf":3.0},"108":{"tf":2.8284271247461903},"109":{"tf":2.6457513110645907},"110":{"tf":3.4641016151377544},"111":{"tf":5.291502622129181},"112":{"tf":5.656854249492381},"113":{"tf":1.7320508075688772},"114":{"tf":2.0},"115":{"tf":3.3166247903554},"116":{"tf":2.449489742783178},"117":{"tf":5.0},"118":{"tf":5.291502622129181},"119":{"tf":2.449489742783178},"121":{"tf":2.0},"122":{"tf":2.449489742783178},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"147":{"tf":1.0},"229":{"tf":1.4142135623730951},"233":{"tf":1.0},"237":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"48":{"tf":1.4142135623730951},"90":{"tf":2.23606797749979},"91":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":2.0},"94":{"tf":2.23606797749979},"95":{"tf":2.8284271247461903},"96":{"tf":2.8284271247461903},"97":{"tf":2.0},"98":{"tf":5.0},"99":{"tf":3.872983346207417}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":10,"docs":{"105":{"tf":1.0},"106":{"tf":2.23606797749979},"110":{"tf":2.6457513110645907},"118":{"tf":2.0},"39":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":2.0},"94":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":33,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":2.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"124":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"172":{"tf":1.0},"19":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.4142135623730951},"23":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.7320508075688772},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"47":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"107":{"tf":1.0},"113":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"267":{"tf":1.0},"271":{"tf":1.0}}}}},"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":5,"docs":{"232":{"tf":1.7320508075688772},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"106":{"tf":1.0},"109":{"tf":2.0},"118":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":5,"docs":{"169":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.7320508075688772},"273":{"tf":1.0}},"e":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"=":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"z":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"1":{"tf":1.0},"23":{"tf":1.0},"257":{"tf":1.0},"33":{"tf":1.0},"97":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":2.449489742783178},"3":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"244":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"213":{"tf":2.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"265":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}}}},"u":{"df":25,"docs":{"104":{"tf":1.0},"116":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.23606797749979},"224":{"tf":1.0},"228":{"tf":2.0},"229":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"252":{"tf":2.0},"259":{"tf":1.7320508075688772},"261":{"tf":1.0},"263":{"tf":2.23606797749979},"265":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951}},"g":{"df":1,"docs":{"1":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"13":{"tf":2.0},"16":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"270":{"tf":1.0},"273":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"35":{"tf":1.4142135623730951},"63":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":2.0},"80":{"tf":2.0}}}}},"}":{"df":0,"docs":{},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"′":{"=":{"1":{"6":{"df":0,"docs":{},"⋅":{"b":{"+":{"df":0,"docs":{},"∑":{"df":0,"docs":{},"i":{"=":{"0":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"=":{"b":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"b":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"←":{"(":{"a":{"+":{"1":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"159":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"¬":{"a":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"−":{"a":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"−":{"a":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"a":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"−":{"1":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"{":{"1":{",":{"0":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"53":{"tf":1.0},"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"−":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"−":{"d":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"≥":{"2":{"3":{"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{",":{"d":{")":{"df":0,"docs":{},"←":{"a":{"+":{"b":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}},"/":{"b":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}},"⋅":{"b":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"54":{"tf":2.0}},"":{",":{"c":{"1":{"df":0,"docs":{},"":{",":{"c":{"2":{"df":2,"docs":{"103":{"tf":1.0},"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"←":{"(":{"a":{"0":{"+":{"b":{"0":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{"0":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"∗":{"b":{"0":{")":{"df":0,"docs":{},"−":{"2":{"df":0,"docs":{},"∗":{"(":{"a":{"1":{"df":0,"docs":{},"∗":{"b":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"54":{"tf":2.0}},"←":{"(":{"a":{"0":{"+":{"a":{"1":{")":{"df":0,"docs":{},"∗":{"(":{"b":{"0":{"+":{"b":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"+":{"b":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"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":{}}},"=":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178}}}}},"1":{"df":4,"docs":{"164":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178}}},"c":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"c":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},">":{"1":{"df":1,"docs":{"61":{"tf":2.0}}},"df":0,"docs":{}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":3,"docs":{"82":{"tf":3.4641016151377544},"83":{"tf":2.0},"84":{"tf":3.0}}}},"k":{"df":1,"docs":{"98":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":3,"docs":{"82":{"tf":3.4641016151377544},"83":{"tf":2.0},"84":{"tf":3.0}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"116":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}}}},"df":0,"docs":{},"l":{".":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":27,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.7320508075688772},"144":{"tf":1.0},"2":{"tf":1.7320508075688772},"211":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.7320508075688772},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"42":{"tf":2.8284271247461903},"43":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":3.0},"96":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":2,"docs":{"257":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772}},"r":{"'":{"df":1,"docs":{"42":{"tf":1.0}}},"df":6,"docs":{"139":{"tf":1.0},"257":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.7320508075688772},"64":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"129":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"c":{"df":11,"docs":{"104":{"tf":1.0},"116":{"tf":1.7320508075688772},"206":{"tf":1.0},"233":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"244":{"tf":1.0},"68":{"tf":1.0},"85":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"212":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"111":{"tf":1.0},"173":{"tf":1.0},"195":{"tf":1.0},"244":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":32,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"177":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.4142135623730951},"233":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"34":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"65":{"tf":2.0},"81":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":2.0}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}},"w":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":37,"docs":{"106":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"164":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"198":{"tf":1.0},"23":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":2.8284271247461903},"53":{"tf":2.6457513110645907},"56":{"tf":1.0},"57":{"tf":4.358898943540674},"58":{"tf":4.242640687119285},"59":{"tf":3.7416573867739413},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.7320508075688772},"77":{"tf":1.0},"82":{"tf":3.605551275463989},"83":{"tf":5.656854249492381},"84":{"tf":2.8284271247461903},"85":{"tf":2.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"113":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":2.23606797749979}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"1":{"df":1,"docs":{"118":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"118":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"118":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"209":{"tf":1.0},"77":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":57,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"111":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"127":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"198":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"223":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772},"257":{"tf":2.6457513110645907},"258":{"tf":2.449489742783178},"259":{"tf":2.8284271247461903},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"264":{"tf":1.0},"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.0},"89":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"17":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{",":{"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"":{",":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"":{",":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":50,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.7320508075688772},"151":{"tf":1.0},"169":{"tf":2.449489742783178},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":2.449489742783178},"211":{"tf":2.8284271247461903},"212":{"tf":1.7320508075688772},"213":{"tf":2.0},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":1.4142135623730951},"219":{"tf":2.23606797749979},"233":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"265":{"tf":2.0},"266":{"tf":1.0},"270":{"tf":1.0},"42":{"tf":1.0},"55":{"tf":1.7320508075688772},"81":{"tf":2.0},"82":{"tf":3.0},"83":{"tf":3.0},"84":{"tf":1.0},"88":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"d":{"d":{"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"82":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"83":{"tf":1.0}},"z":{"df":1,"docs":{"83":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"83":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"169":{"tf":1.0},"217":{"tf":1.0}}},"df":10,"docs":{"169":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"221":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":9,"docs":{"105":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":2.0},"109":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":2.8284271247461903},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":12,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"_":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"221":{"tf":1.0},"226":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.0}}},"df":53,"docs":{"102":{"tf":1.0},"104":{"tf":3.0},"105":{"tf":1.0},"106":{"tf":2.449489742783178},"107":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":4.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":2.0},"205":{"tf":2.0},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"215":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":3.0},"221":{"tf":3.872983346207417},"222":{"tf":3.7416573867739413},"223":{"tf":3.605551275463989},"224":{"tf":2.449489742783178},"225":{"tf":1.0},"226":{"tf":2.8284271247461903},"227":{"tf":2.23606797749979},"228":{"tf":2.6457513110645907},"229":{"tf":2.23606797749979},"230":{"tf":2.8284271247461903},"231":{"tf":2.0},"232":{"tf":2.23606797749979},"233":{"tf":2.6457513110645907},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":3.3166247903554},"246":{"tf":1.0},"249":{"tf":1.0},"252":{"tf":2.0},"253":{"tf":1.0},"259":{"tf":2.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"262":{"tf":2.449489742783178},"263":{"tf":2.0},"264":{"tf":1.7320508075688772},"269":{"tf":2.0},"271":{"tf":1.0},"273":{"tf":2.6457513110645907},"88":{"tf":2.449489742783178},"89":{"tf":1.7320508075688772}},"’":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"4":{"tf":1.0},"7":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"270":{"tf":1.7320508075688772},"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"113":{"tf":1.0},"228":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"245":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"+":{"1":{",":{"df":0,"docs":{},"v":{"2":{",":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"df":0,"docs":{},"v":{"1":{",":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"130":{"tf":1.0},"141":{"tf":1.0},"154":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"245":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.0},"64":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"′":{"df":0,"docs":{},"−":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"+":{"1":{")":{"=":{"0":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":15,"docs":{"130":{"tf":1.4142135623730951},"154":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":2.23606797749979},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"df":25,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"33":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"62":{"tf":1.7320508075688772},"69":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":2.23606797749979}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"104":{"tf":1.0},"118":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"68":{"tf":1.0},"99":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":73,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":4.358898943540674},"106":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.6457513110645907},"113":{"tf":1.4142135623730951},"114":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.23606797749979},"120":{"tf":2.8284271247461903},"121":{"tf":2.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":3.1622776601683795},"128":{"tf":2.8284271247461903},"129":{"tf":3.0},"130":{"tf":2.0},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"169":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"211":{"tf":3.7416573867739413},"212":{"tf":2.23606797749979},"213":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":2.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":3.0},"228":{"tf":2.23606797749979},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":4.123105625617661},"234":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":2.0},"243":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":3.3166247903554},"246":{"tf":4.0},"247":{"tf":3.1622776601683795},"248":{"tf":1.0},"250":{"tf":2.6457513110645907},"251":{"tf":1.4142135623730951},"254":{"tf":3.1622776601683795},"255":{"tf":2.8284271247461903},"256":{"tf":3.0},"257":{"tf":4.0},"258":{"tf":4.358898943540674},"259":{"tf":2.449489742783178},"261":{"tf":2.8284271247461903},"262":{"tf":2.23606797749979},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"266":{"tf":4.242640687119285},"267":{"tf":1.0},"268":{"tf":2.0},"271":{"tf":2.449489742783178},"87":{"tf":2.6457513110645907},"89":{"tf":2.8284271247461903}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":27,"docs":{"116":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"208":{"tf":1.7320508075688772},"213":{"tf":1.0},"217":{"tf":1.0},"224":{"tf":1.7320508075688772},"226":{"tf":1.0},"230":{"tf":1.4142135623730951},"234":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"259":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"89":{"tf":1.0}}}}},"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":6,"docs":{"126":{"tf":1.7320508075688772},"222":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0},"272":{"tf":1.4142135623730951},"3":{"tf":1.0}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"256":{"tf":1.0},"257":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":2.8284271247461903}}}}},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"245":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"77":{"tf":1.7320508075688772},"8":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0},"33":{"tf":1.0},"67":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"69":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":12,"docs":{"116":{"tf":1.7320508075688772},"199":{"tf":1.0},"205":{"tf":1.0},"219":{"tf":1.4142135623730951},"229":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.7320508075688772}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":4,"docs":{"209":{"tf":1.0},"266":{"tf":1.0},"33":{"tf":1.4142135623730951},"83":{"tf":2.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"17":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":3.872983346207417}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":18,"docs":{"13":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":2.0},"2":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":2.0},"38":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"48":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.0},"55":{"tf":1.0}}}}}},"t":{"df":16,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"3":{"tf":1.0}}},"x":{"df":7,"docs":{"102":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"270":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"88":{"tf":1.0}}}},"i":{"df":1,"docs":{"113":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"10":{"tf":1.4142135623730951},"102":{"tf":1.0},"194":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"245":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":2.23606797749979},"271":{"tf":2.23606797749979},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772},"65":{"tf":1.0},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":3,"docs":{"224":{"tf":1.0},"245":{"tf":1.0},"6":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"111":{"tf":1.0},"127":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":94,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":2.8284271247461903},"105":{"tf":2.449489742783178},"106":{"tf":2.0},"107":{"tf":2.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"115":{"tf":2.23606797749979},"116":{"tf":2.23606797749979},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.7320508075688772},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":2.8284271247461903},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":2.449489742783178},"209":{"tf":2.449489742783178},"211":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":2.449489742783178},"224":{"tf":1.0},"228":{"tf":1.4142135623730951},"232":{"tf":3.872983346207417},"233":{"tf":2.6457513110645907},"234":{"tf":2.449489742783178},"235":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"243":{"tf":3.0},"244":{"tf":1.7320508075688772},"245":{"tf":4.242640687119285},"246":{"tf":2.23606797749979},"247":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"268":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":2.449489742783178},"274":{"tf":1.7320508075688772},"47":{"tf":1.0},"58":{"tf":3.1622776601683795},"65":{"tf":1.0},"68":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"88":{"tf":2.0},"99":{"tf":2.6457513110645907}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"247":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":6,"docs":{"232":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":18,"docs":{"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"2":{"tf":1.0},"211":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"245":{"tf":2.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"271":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.0},"49":{"tf":1.4142135623730951},"60":{"tf":2.0},"61":{"tf":1.0},"93":{"tf":1.0},"94":{"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":{"23":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"223":{"tf":2.23606797749979},"262":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"102":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.4142135623730951},"265":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"213":{"tf":1.4142135623730951},"218":{"tf":1.0},"241":{"tf":1.0},"258":{"tf":2.6457513110645907},"77":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"d":{"df":5,"docs":{"101":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"209":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"105":{"tf":2.0},"11":{"tf":1.0},"111":{"tf":1.4142135623730951},"126":{"tf":1.0},"138":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"261":{"tf":1.0},"265":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"32":{"tf":1.0},"38":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.4142135623730951},"81":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}},"t":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"1":{"=":{"3":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"1":{"=":{"1":{"0":{"0":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"=":{"2":{"0":{"0":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"39":{"tf":1.0}}},"df":3,"docs":{"111":{"tf":1.0},"39":{"tf":2.449489742783178},"63":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"218":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951}},"t":{"_":{"_":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":130,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":3.3166247903554},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":2.6457513110645907},"117":{"tf":3.0},"118":{"tf":3.0},"119":{"tf":2.0},"120":{"tf":2.449489742783178},"121":{"tf":2.23606797749979},"122":{"tf":2.23606797749979},"123":{"tf":2.23606797749979},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":3.0},"127":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"135":{"tf":2.6457513110645907},"136":{"tf":1.7320508075688772},"137":{"tf":3.872983346207417},"138":{"tf":2.449489742783178},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.23606797749979},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":2.23606797749979},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"178":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"212":{"tf":2.449489742783178},"213":{"tf":2.0},"214":{"tf":1.0},"218":{"tf":2.0},"219":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":3.3166247903554},"225":{"tf":1.0},"226":{"tf":3.0},"227":{"tf":2.23606797749979},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":2.23606797749979},"241":{"tf":1.7320508075688772},"242":{"tf":2.449489742783178},"243":{"tf":3.0},"244":{"tf":2.0},"245":{"tf":4.47213595499958},"246":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":2.0},"251":{"tf":1.7320508075688772},"252":{"tf":2.0},"253":{"tf":1.0},"254":{"tf":2.449489742783178},"255":{"tf":2.0},"256":{"tf":2.6457513110645907},"257":{"tf":2.6457513110645907},"258":{"tf":1.7320508075688772},"259":{"tf":3.4641016151377544},"262":{"tf":2.8284271247461903},"263":{"tf":1.7320508075688772},"264":{"tf":2.449489742783178},"267":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":2.449489742783178},"4":{"tf":1.0},"87":{"tf":3.4641016151377544},"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"35":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":8,"docs":{"122":{"tf":1.0},"126":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"233":{"tf":1.0},"65":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":80,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.0},"105":{"tf":3.7416573867739413},"111":{"tf":2.23606797749979},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"130":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"217":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":1.4142135623730951},"246":{"tf":2.8284271247461903},"247":{"tf":2.23606797749979},"250":{"tf":1.7320508075688772},"255":{"tf":2.0},"256":{"tf":2.0},"257":{"tf":2.23606797749979},"258":{"tf":3.605551275463989},"259":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":3.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.0},"97":{"tf":2.8284271247461903},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"116":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"258":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"259":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":23,"docs":{"2":{"tf":2.6457513110645907},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":1.0},"257":{"tf":3.3166247903554},"258":{"tf":3.605551275463989},"259":{"tf":2.6457513110645907},"260":{"tf":1.4142135623730951},"3":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":3.7416573867739413},"42":{"tf":2.23606797749979},"43":{"tf":2.0},"44":{"tf":3.0},"45":{"tf":3.7416573867739413},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"88":{"tf":1.0},"95":{"tf":2.0},"96":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":5,"docs":{"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"77":{"tf":1.0}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":27,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":2.449489742783178},"120":{"tf":1.0},"121":{"tf":1.0},"14":{"tf":1.4142135623730951},"143":{"tf":2.0},"144":{"tf":2.449489742783178},"148":{"tf":2.0},"2":{"tf":2.0},"223":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"46":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"7":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"103":{"tf":1.0},"262":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0}}},"t":{"df":2,"docs":{"137":{"tf":1.0},"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"113":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"i":{"df":21,"docs":{"10":{"tf":1.0},"106":{"tf":2.0},"111":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"137":{"tf":1.4142135623730951},"150":{"tf":1.0},"184":{"tf":2.0},"212":{"tf":1.4142135623730951},"234":{"tf":1.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.4142135623730951},"74":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"69":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":22,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"137":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"220":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":19,"docs":{"0":{"tf":1.0},"107":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"166":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"227":{"tf":1.4142135623730951},"230":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"274":{"tf":1.0},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.7320508075688772},"126":{"tf":1.0},"138":{"tf":1.0},"208":{"tf":1.4142135623730951},"228":{"tf":1.0},"246":{"tf":1.4142135623730951},"247":{"tf":1.0},"259":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"266":{"tf":1.0},"48":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":2.0},"122":{"tf":3.1622776601683795},"123":{"tf":2.23606797749979},"124":{"tf":1.4142135623730951},"126":{"tf":2.0},"23":{"tf":2.449489742783178},"48":{"tf":2.0},"58":{"tf":1.4142135623730951},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.0},"150":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"211":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}},"u":{"df":2,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"142":{"tf":1.0},"262":{"tf":1.0},"274":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"257":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":4,"docs":{"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"274":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":7,"docs":{"2":{"tf":1.0},"205":{"tf":2.0},"229":{"tf":1.0},"274":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"140":{"tf":1.0},"192":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.0}},"w":{"df":3,"docs":{"140":{"tf":1.0},"193":{"tf":1.7320508075688772},"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{"0":{"df":1,"docs":{"45":{"tf":2.0}}},"1":{"df":1,"docs":{"45":{"tf":2.23606797749979}}},"2":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}},"df":8,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"257":{"tf":2.23606797749979},"258":{"tf":1.7320508075688772},"259":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":67,"docs":{"1":{"tf":1.0},"103":{"tf":2.0},"105":{"tf":2.23606797749979},"106":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"241":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"259":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"42":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"72":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"255":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":57,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"130":{"tf":1.7320508075688772},"150":{"tf":1.0},"154":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"222":{"tf":2.0},"228":{"tf":1.0},"23":{"tf":2.449489742783178},"231":{"tf":1.0},"232":{"tf":3.4641016151377544},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":2.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":2.0},"259":{"tf":1.0},"265":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":4.242640687119285},"53":{"tf":3.1622776601683795},"54":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951},"56":{"tf":2.6457513110645907},"57":{"tf":5.830951894845301},"58":{"tf":4.58257569495584},"59":{"tf":4.0},"60":{"tf":3.4641016151377544},"61":{"tf":2.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":2.23606797749979},"66":{"tf":3.605551275463989},"68":{"tf":2.8284271247461903},"83":{"tf":1.0},"84":{"tf":2.449489742783178},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{")":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"i":{"c":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"−":{"c":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"257":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"257":{"tf":1.0},"258":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"←":{"(":{"a":{"+":{"b":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"∧":{"b":{"df":2,"docs":{"162":{"tf":1.0},"179":{"tf":1.0}}},"df":0,"docs":{}},"∨":{"b":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"⊕":{"b":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"⋅":{"2":{"b":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"158":{"tf":1.0}},"−":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"+":{"b":{"df":1,"docs":{"57":{"tf":1.0}},"−":{"2":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"⋅":{"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"⋅":{"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"∗":{"b":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"⋅":{"b":{"df":2,"docs":{"52":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{",":{"b":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"{":{"1":{",":{"0":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"53":{"tf":2.6457513110645907},"59":{"tf":3.1622776601683795}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{",":{"b":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"59":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"⌊":{"a":{"/":{"2":{"3":{"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"57":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{",":{"c":{",":{"b":{",":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"e":{")":{"df":0,"docs":{},"←":{"a":{"+":{"b":{"+":{"c":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"c":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"}":{"df":0,"docs":{},"←":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{",":{"b":{",":{"c":{"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":{},"←":{"[":{"a":{"d":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"0":{"df":6,"docs":{"219":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":2.0},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0}}},"1":{"df":6,"docs":{"219":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":2.0},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0}}},"=":{"b":{"=":{"0":{"df":0,"docs":{},"∑":{"6":{"df":0,"docs":{},"":{"(":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"2":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"a":{",":{"b":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"192":{"tf":1.0},"193":{"tf":1.0},"61":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"n":{"df":1,"docs":{"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"77":{"tf":2.0}}}}}}},"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.7320508075688772},"270":{"tf":1.4142135623730951},"272":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"65":{"tf":3.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"8":{"tf":1.0},"88":{"tf":1.0}},"←":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"]":{".":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":21,"docs":{"116":{"tf":1.7320508075688772},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"198":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"57":{"tf":3.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":2.449489742783178},"66":{"tf":1.0},"68":{"tf":2.6457513110645907},"84":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"258":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":4,"docs":{"16":{"tf":1.0},"23":{"tf":2.449489742783178},"24":{"tf":1.0},"3":{"tf":1.4142135623730951}},"g":{"df":3,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":2.23606797749979}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"d":{"df":29,"docs":{"100":{"tf":2.449489742783178},"101":{"tf":1.4142135623730951},"102":{"tf":2.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":1.4142135623730951},"111":{"tf":4.123105625617661},"112":{"tf":1.4142135623730951},"113":{"tf":2.449489742783178},"116":{"tf":2.449489742783178},"119":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"138":{"tf":1.0},"147":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"269":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"2":{"df":1,"docs":{"112":{"tf":1.0}}},"4":{"df":1,"docs":{"112":{"tf":1.0}}},"6":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"246":{"tf":1.0},"250":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}}}}}},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"111":{"tf":1.0},"122":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"106":{"tf":1.0},"111":{"tf":2.0},"122":{"tf":2.8284271247461903},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"131":{"tf":1.0},"134":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"44":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":4,"docs":{"127":{"tf":1.0},"6":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"81":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"206":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":57,"docs":{"101":{"tf":1.0},"105":{"tf":1.7320508075688772},"111":{"tf":1.0},"116":{"tf":2.0},"118":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":2.449489742783178},"130":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.4142135623730951},"238":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":2.449489742783178},"252":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"260":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":3.0},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"54":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"19":{"tf":1.0}}}}}}},"g":{"(":{"c":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":28,"docs":{"103":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":3.4641016151377544},"139":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":3.0},"143":{"tf":2.8284271247461903},"144":{"tf":2.0},"183":{"tf":1.0},"209":{"tf":2.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"222":{"tf":2.6457513110645907},"223":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"234":{"tf":1.0},"245":{"tf":1.4142135623730951},"257":{"tf":1.0},"274":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":2.8284271247461903}},"e":{"=":{"1":{"+":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"+":{"4":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":33,"docs":{"118":{"tf":1.4142135623730951},"126":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}},"2":{"+":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"(":{"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":32,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"133":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":2.0},"167":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"199":{"tf":1.0},"218":{"tf":1.4142135623730951},"231":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":2.449489742783178},"251":{"tf":1.4142135623730951},"259":{"tf":2.0},"262":{"tf":1.7320508075688772}},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"1":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"1":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"2":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"+":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"170":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"242":{"tf":1.0},"251":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0}},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"2":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"4":{"+":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"125":{"tf":1.7320508075688772},"142":{"tf":1.0},"147":{"tf":1.0},"231":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0}},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"3":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"5":{"df":17,"docs":{"114":{"tf":2.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"147":{"tf":1.4142135623730951},"169":{"tf":1.0},"208":{"tf":1.0},"227":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"259":{"tf":1.7320508075688772}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"6":{"df":12,"docs":{"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":2.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"259":{"tf":1.4142135623730951}}},"7":{"(":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":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":{"114":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.7320508075688772},"122":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0}}},"8":{"df":3,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0}}},"9":{"df":4,"docs":{"114":{"tf":1.0},"124":{"tf":1.0},"135":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"129":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951}}}},"t":{"a":{"df":5,"docs":{"238":{"tf":1.0},"245":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":2.0},"258":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":22,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"135":{"tf":1.4142135623730951},"138":{"tf":1.0},"170":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"250":{"tf":1.0},"252":{"tf":1.0},"263":{"tf":1.0},"36":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"112":{"tf":1.0},"126":{"tf":1.0},"169":{"tf":1.0},"244":{"tf":1.0},"266":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":30,"docs":{"127":{"tf":2.6457513110645907},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":2.449489742783178},"133":{"tf":1.0},"134":{"tf":2.23606797749979},"150":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":2.23606797749979},"191":{"tf":2.23606797749979},"196":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"239":{"tf":1.0},"4":{"tf":1.4142135623730951},"42":{"tf":2.6457513110645907},"45":{"tf":2.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":2.23606797749979},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":86,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.23606797749979},"105":{"tf":1.7320508075688772},"106":{"tf":2.6457513110645907},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":2.6457513110645907},"113":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"181":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.7320508075688772},"245":{"tf":2.449489742783178},"246":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":40,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"137":{"tf":1.0},"147":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"32":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":11,"docs":{"223":{"tf":1.0},"227":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":2.0},"270":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"r":{"df":3,"docs":{"17":{"tf":1.0},"257":{"tf":1.0},"8":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"2":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"106":{"tf":1.0},"137":{"tf":1.4142135623730951},"16":{"tf":1.0},"209":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"104":{"tf":1.0},"222":{"tf":1.0},"239":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"107":{"tf":1.4142135623730951},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"128":{"tf":1.0},"130":{"tf":1.0},"170":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"239":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":7,"docs":{"2":{"tf":1.0},"22":{"tf":1.0},"255":{"tf":1.0},"274":{"tf":1.0},"32":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":59,"docs":{"106":{"tf":3.872983346207417},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.0},"113":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":23,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":2.23606797749979},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"118":{"tf":1.4142135623730951},"24":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"255":{"tf":1.0},"256":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"36":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"18":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"243":{"tf":1.0},"82":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"137":{"tf":1.4142135623730951},"209":{"tf":1.0},"226":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"23":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":1,"docs":{"52":{"tf":1.4142135623730951}},"i":{"d":{"df":20,"docs":{"104":{"tf":2.449489742783178},"111":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"245":{"tf":1.0},"259":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"65":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"n":{"df":1,"docs":{"98":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"220":{"tf":1.0},"226":{"tf":1.0},"32":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"4":{"tf":2.0},"40":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}}}},"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"212":{"tf":1.0},"239":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"264":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"116":{"tf":1.0},"209":{"tf":3.3166247903554},"233":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":6,"docs":{"105":{"tf":1.0},"19":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":23,"docs":{"105":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"116":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"135":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":2.0},"255":{"tf":1.4142135623730951},"259":{"tf":2.0},"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":6,"docs":{"115":{"tf":1.4142135623730951},"127":{"tf":1.0},"138":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":13,"docs":{"113":{"tf":2.449489742783178},"128":{"tf":1.0},"131":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"183":{"tf":2.0},"31":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.7320508075688772},"8":{"tf":1.0},"83":{"tf":2.0},"9":{"tf":1.0}},"w":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"126":{"tf":1.0},"68":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"18":{"tf":1.0}}}},"p":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}}},".":{"0":{"df":1,"docs":{"60":{"tf":1.0}}},"2":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"184":{"tf":1.0}}},"1":{"1":{"df":1,"docs":{"141":{"tf":1.0}}},"3":{"df":1,"docs":{"141":{"tf":1.0}}},"5":{"df":1,"docs":{"141":{"tf":1.0}}},"df":2,"docs":{"137":{"tf":1.0},"141":{"tf":1.0}}},"2":{"df":1,"docs":{"141":{"tf":1.0}}},"3":{"df":1,"docs":{"141":{"tf":1.0}}},"4":{"df":1,"docs":{"141":{"tf":1.0}}},"5":{"df":2,"docs":{"141":{"tf":1.0},"184":{"tf":1.0}}},"6":{"df":1,"docs":{"141":{"tf":1.0}}},"7":{"df":1,"docs":{"141":{"tf":1.0}}},"9":{"df":1,"docs":{"141":{"tf":1.0}}},"df":6,"docs":{"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"184":{"tf":1.0},"23":{"tf":1.0},"60":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"216":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"184":{"tf":1.0}}},"w":{".":{"0":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"60":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":22,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":2.6457513110645907},"239":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}},"←":{"(":{"a":{"+":{"b":{"+":{"c":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"b":{"+":{"c":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{"1":{",":{"0":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"⌊":{"(":{"a":{"df":0,"docs":{},"⋅":{"b":{")":{"/":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{",":{"d":{"]":{"df":0,"docs":{},"←":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"]":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"+":{"1":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"g":{"df":29,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"111":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"2":{"tf":1.0},"210":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.4142135623730951},"8":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"0":{"df":3,"docs":{"138":{"tf":1.7320508075688772},"143":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772}},"":{"df":0,"docs":{},"−":{"b":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"5":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"4":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"1":{"df":3,"docs":{"138":{"tf":1.7320508075688772},"144":{"tf":1.0},"77":{"tf":1.7320508075688772}},"":{"df":0,"docs":{},"−":{"b":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"5":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"{":{"b":{",":{"a":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"192":{"tf":1.0},"193":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":63,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"127":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.7320508075688772},"2":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.7320508075688772},"221":{"tf":1.7320508075688772},"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"226":{"tf":2.23606797749979},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.7320508075688772},"247":{"tf":1.4142135623730951},"251":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"258":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"137":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.4142135623730951},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"33":{"tf":1.0},"7":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":8,"docs":{"239":{"tf":1.0},"240":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":54,"docs":{"106":{"tf":1.0},"113":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"148":{"tf":1.0},"210":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"47":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":1,"docs":{"184":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":96,"docs":{"10":{"tf":2.0},"100":{"tf":1.7320508075688772},"104":{"tf":3.872983346207417},"109":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951},"111":{"tf":2.449489742783178},"113":{"tf":2.449489742783178},"116":{"tf":1.4142135623730951},"127":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":2.23606797749979},"169":{"tf":1.0},"17":{"tf":2.449489742783178},"170":{"tf":2.449489742783178},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"190":{"tf":2.449489742783178},"191":{"tf":2.449489742783178},"192":{"tf":2.0},"193":{"tf":2.23606797749979},"197":{"tf":1.4142135623730951},"198":{"tf":2.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"202":{"tf":1.7320508075688772},"203":{"tf":2.0},"204":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":2.0},"208":{"tf":2.23606797749979},"209":{"tf":3.4641016151377544},"210":{"tf":1.0},"232":{"tf":2.0},"233":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":3.4641016151377544},"239":{"tf":2.449489742783178},"240":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":2.0},"246":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"34":{"tf":2.8284271247461903},"42":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":1.0},"6":{"tf":2.6457513110645907},"60":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":2.449489742783178},"66":{"tf":3.872983346207417},"68":{"tf":1.4142135623730951},"70":{"tf":3.1622776601683795},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"79":{"tf":3.1622776601683795},"8":{"tf":1.4142135623730951},"80":{"tf":3.1622776601683795},"81":{"tf":1.7320508075688772},"86":{"tf":2.449489742783178},"87":{"tf":2.449489742783178},"97":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}}}}},"i":{"df":1,"docs":{"274":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":17,"docs":{"105":{"tf":2.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0},"267":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.4142135623730951},"75":{"tf":2.0},"77":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"3":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":18,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"123":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"170":{"tf":1.4142135623730951},"234":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}}},"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}},"df":57,"docs":{"100":{"tf":1.0},"101":{"tf":4.242640687119285},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":2.23606797749979},"108":{"tf":1.4142135623730951},"110":{"tf":2.449489742783178},"111":{"tf":2.6457513110645907},"112":{"tf":3.605551275463989},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":2.23606797749979},"120":{"tf":2.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"131":{"tf":1.0},"144":{"tf":1.0},"18":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"233":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"271":{"tf":1.0},"37":{"tf":2.23606797749979},"38":{"tf":2.449489742783178},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":2.23606797749979},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"68":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.4142135623730951},"9":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"138":{"tf":1.0},"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":44,"docs":{"113":{"tf":2.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"129":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"223":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":2.23606797749979},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"250":{"tf":2.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"255":{"tf":1.4142135623730951},"259":{"tf":2.0},"260":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"1":{"tf":1.0},"130":{"tf":1.0},"266":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":43,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"150":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.7320508075688772},"234":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.4142135623730951},"248":{"tf":1.0},"251":{"tf":2.23606797749979},"252":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"23":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.0},"118":{"tf":1.0},"150":{"tf":1.0},"227":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"25":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"112":{"tf":2.8284271247461903},"117":{"tf":2.0},"118":{"tf":1.7320508075688772},"17":{"tf":1.0},"233":{"tf":2.0},"245":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}}},"q":{".":{"2":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"140":{"tf":1.0},"164":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"59":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":25,"docs":{"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"151":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":2.0},"267":{"tf":1.0},"34":{"tf":1.0},"55":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":2.449489742783178},"87":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":3,"docs":{"170":{"tf":1.0},"243":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":1,"docs":{"53":{"tf":1.0}}},"z":{"df":2,"docs":{"139":{"tf":1.0},"165":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"110":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"40":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":2.449489742783178},"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"t":{"c":{"df":19,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"212":{"tf":1.0},"232":{"tf":1.4142135623730951},"239":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":1,"docs":{"274":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":6,"docs":{"118":{"tf":1.0},"133":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"19":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":10,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":1.0},"213":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":14,"docs":{"101":{"tf":1.4142135623730951},"121":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"169":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"250":{"tf":1.0},"267":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"86":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":50,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":2.449489742783178},"190":{"tf":1.0},"191":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"254":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"272":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":2.23606797749979},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":11,"docs":{"111":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"230":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"105":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"234":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"42":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":5,"docs":{"113":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"234":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{".":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"37":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":3,"docs":{"23":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951}}}}},"u":{"6":{"4":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"38":{"tf":1.0},"42":{"tf":2.449489742783178},"44":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":121,"docs":{"0":{"tf":2.0},"10":{"tf":1.4142135623730951},"100":{"tf":3.0},"101":{"tf":3.1622776601683795},"102":{"tf":1.4142135623730951},"103":{"tf":2.449489742783178},"105":{"tf":3.3166247903554},"106":{"tf":5.385164807134504},"107":{"tf":1.4142135623730951},"108":{"tf":2.6457513110645907},"109":{"tf":2.23606797749979},"11":{"tf":2.0},"110":{"tf":3.872983346207417},"111":{"tf":4.47213595499958},"112":{"tf":3.605551275463989},"113":{"tf":3.0},"114":{"tf":3.1622776601683795},"115":{"tf":2.0},"116":{"tf":2.6457513110645907},"117":{"tf":3.0},"118":{"tf":3.4641016151377544},"120":{"tf":2.6457513110645907},"121":{"tf":1.4142135623730951},"122":{"tf":2.8284271247461903},"123":{"tf":2.8284271247461903},"124":{"tf":2.0},"125":{"tf":1.4142135623730951},"126":{"tf":2.449489742783178},"127":{"tf":1.7320508075688772},"129":{"tf":1.0},"13":{"tf":2.0},"132":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"148":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":3.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"20":{"tf":2.23606797749979},"209":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"211":{"tf":1.4142135623730951},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":2.0},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":2.0},"232":{"tf":4.242640687119285},"233":{"tf":2.0},"234":{"tf":1.0},"236":{"tf":2.0},"237":{"tf":2.0},"238":{"tf":2.23606797749979},"239":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"240":{"tf":2.6457513110645907},"241":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"260":{"tf":2.0},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":2.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"38":{"tf":2.23606797749979},"41":{"tf":3.3166247903554},"42":{"tf":2.449489742783178},"43":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":4.795831523312719},"46":{"tf":1.0},"47":{"tf":2.23606797749979},"48":{"tf":1.0},"49":{"tf":2.6457513110645907},"50":{"tf":1.0},"55":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"8":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.23606797749979},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":2.23606797749979},"92":{"tf":1.7320508075688772},"93":{"tf":2.0},"94":{"tf":2.6457513110645907},"95":{"tf":2.6457513110645907},"96":{"tf":2.6457513110645907},"97":{"tf":1.4142135623730951},"98":{"tf":4.358898943540674},"99":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"|":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{":":{":":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}},"t":{"df":12,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"147":{"tf":1.0},"24":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.0}}}},"p":{".":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"c":{"df":2,"docs":{"139":{"tf":1.0},"166":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"33":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"166":{"tf":1.7320508075688772},"28":{"tf":1.0},"52":{"tf":1.7320508075688772}},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"1":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"19":{"tf":2.0},"2":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"221":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"38":{"tf":1.0},"50":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":2.8284271247461903},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"265":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"105":{"tf":1.0},"195":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}},"z":{".":{"2":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"38":{"tf":1.0},"40":{"tf":1.0}}}}},"u":{"6":{"4":{":":{":":{"a":{"d":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"38":{"tf":2.6457513110645907},"43":{"tf":1.0}}}},"s":{"df":7,"docs":{"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"132":{"tf":1.0},"137":{"tf":1.0},"199":{"tf":1.0},"35":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"118":{"tf":1.0},"134":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"33":{"tf":1.0},"46":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951}}}}}}},"t":{"2":{"a":{"d":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"139":{"tf":1.0},"167":{"tf":1.7320508075688772},"54":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"2":{"tf":1.0},"213":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":6,"docs":{"167":{"tf":1.0},"209":{"tf":1.7320508075688772},"253":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":2.23606797749979}}}},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"1":{"tf":1.0},"2":{"tf":1.4142135623730951},"33":{"tf":1.0},"38":{"tf":1.0},"8":{"tf":1.0}}}}},"r":{"a":{"df":6,"docs":{"138":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"←":{"df":0,"docs":{},"⌊":{"(":{"a":{"+":{"b":{"+":{"c":{")":{"/":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"b":{"+":{"c":{")":{"/":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"0":{"df":1,"docs":{"106":{"tf":1.4142135623730951}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"106":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}},"a":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.4142135623730951}},"":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"=":{"1":{"df":2,"docs":{"244":{"tf":1.0},"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"244":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":13,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"233":{"tf":1.0},"35":{"tf":1.0},"46":{"tf":1.0}}}}}},"t":{"df":8,"docs":{"100":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"271":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"209":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}},"d":{"d":{"3":{"_":{"df":0,"docs":{},"m":{"a":{"d":{"d":{"df":0,"docs":{},"":{"=":{"b":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"5":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"4":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"2":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":33,"docs":{"106":{"tf":2.0},"110":{"tf":1.0},"151":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":2.8284271247461903},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":3.0},"58":{"tf":3.0},"59":{"tf":2.8284271247461903},"61":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":2.0},"68":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"82":{"tf":3.0},"83":{"tf":3.0},"84":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"s":{"df":5,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"118":{"tf":1.0},"49":{"tf":1.0},"99":{"tf":1.0}},"e":{"_":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"⋅":{"(":{"b":{"2":{"df":0,"docs":{},"−":{"b":{")":{"=":{"0":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"7":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"13":{"tf":1.0},"55":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}}},"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"=":{"1":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"113":{"tf":1.0},"148":{"tf":1.0}},"i":{"df":1,"docs":{"116":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"137":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"68":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"23":{"tf":1.0},"257":{"tf":1.0},"3":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"d":{",":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"4":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"113":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"g":{"c":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"=":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":8,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"234":{"tf":1.0},"274":{"tf":1.0},"33":{"tf":1.0},"62":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"216":{"tf":1.0},"221":{"tf":1.0},"65":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}}},"g":{"1":{"df":1,"docs":{"126":{"tf":1.4142135623730951}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"2":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"4":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"=":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"c":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"2":{"df":1,"docs":{"126":{"tf":1.4142135623730951}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"c":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"df":1,"docs":{"126":{"tf":1.4142135623730951}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"c":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"c":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}},"":{"=":{"b":{"c":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}},"":{"=":{"1":{"df":3,"docs":{"234":{"tf":1.4142135623730951},"242":{"tf":1.0},"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"b":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"18":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":41,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"111":{"tf":2.0},"127":{"tf":1.0},"139":{"tf":2.6457513110645907},"140":{"tf":2.23606797749979},"155":{"tf":1.7320508075688772},"167":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.7320508075688772},"170":{"tf":2.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.7320508075688772},"209":{"tf":2.0},"210":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"246":{"tf":1.7320508075688772},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"258":{"tf":1.7320508075688772},"266":{"tf":1.7320508075688772},"34":{"tf":2.0},"44":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.0},"6":{"tf":2.23606797749979},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":2.23606797749979},"72":{"tf":1.0},"77":{"tf":2.0},"87":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"18":{"tf":2.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0}}},"l":{"df":2,"docs":{"116":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":17,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"211":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.7320508075688772},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"272":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0}}}},"d":{"df":2,"docs":{"213":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":11,"docs":{"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"129":{"tf":1.0},"17":{"tf":1.0},"231":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"267":{"tf":1.0},"49":{"tf":1.0},"8":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":71,"docs":{"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":2.8284271247461903},"106":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"111":{"tf":3.605551275463989},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.23606797749979},"120":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"147":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"246":{"tf":1.7320508075688772},"247":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":2.6457513110645907},"65":{"tf":1.7320508075688772},"66":{"tf":3.1622776601683795},"70":{"tf":1.0},"77":{"tf":3.0},"79":{"tf":2.0},"80":{"tf":2.0},"87":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979}}}}},"t":{"df":5,"docs":{"111":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"2":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"212":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":45,"docs":{"103":{"tf":2.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":2.23606797749979},"113":{"tf":3.1622776601683795},"114":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"123":{"tf":2.0},"125":{"tf":2.8284271247461903},"126":{"tf":2.0},"132":{"tf":2.6457513110645907},"133":{"tf":2.23606797749979},"135":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":4.123105625617661},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":3.0},"143":{"tf":2.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"146":{"tf":2.0},"147":{"tf":3.0},"148":{"tf":1.7320508075688772},"15":{"tf":1.0},"169":{"tf":1.0},"18":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"224":{"tf":2.23606797749979},"226":{"tf":1.7320508075688772},"234":{"tf":5.0990195135927845},"242":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"251":{"tf":1.0},"262":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"234":{"tf":1.0}}},"w":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"113":{"tf":1.0}},"":{"=":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":19,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":2.449489742783178},"148":{"tf":2.0},"2":{"tf":1.7320508075688772},"25":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"a":{"d":{"d":{"df":2,"docs":{"139":{"tf":1.0},"152":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"234":{"tf":1.4142135623730951}}},"df":5,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"234":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"153":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"":{"=":{"1":{"df":2,"docs":{"244":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"a":{"df":1,"docs":{"234":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"234":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"=":{"1":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":1,"docs":{"234":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"234":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"=":{"1":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"32":{"tf":1.0},"4":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"209":{"tf":3.7416573867739413},"72":{"tf":1.0},"77":{"tf":2.449489742783178}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":166,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.23606797749979},"105":{"tf":2.23606797749979},"106":{"tf":3.0},"108":{"tf":1.0},"111":{"tf":3.0},"112":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":2.449489742783178},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":2.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"135":{"tf":2.449489742783178},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":2.0},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"233":{"tf":2.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":2.0},"243":{"tf":2.6457513110645907},"244":{"tf":1.7320508075688772},"245":{"tf":3.1622776601683795},"246":{"tf":2.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"252":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"255":{"tf":2.0},"256":{"tf":2.0},"257":{"tf":2.0},"259":{"tf":2.6457513110645907},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"87":{"tf":2.0},"89":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"s":{":":{"[":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"'":{"df":1,"docs":{"45":{"tf":1.0}}},"df":3,"docs":{"23":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":2.8284271247461903}}},"p":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"113":{"tf":1.0},"137":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"df":5,"docs":{"122":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}},"t":{"df":2,"docs":{"63":{"tf":1.0},"87":{"tf":1.0}}}},"df":8,"docs":{"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"65":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"234":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"1":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"260":{"tf":1.0},"265":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":15,"docs":{"170":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"258":{"tf":1.0},"262":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":2.0},"70":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"138":{"tf":1.0},"167":{"tf":1.0},"35":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"":{"=":{"1":{"df":3,"docs":{"234":{"tf":1.4142135623730951},"242":{"tf":1.0},"244":{"tf":1.0}}},"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"i":{"=":{"0":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"′":{"df":0,"docs":{},"":{"=":{"1":{"df":2,"docs":{"234":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{},"k":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":1,"docs":{"133":{"tf":1.0}},"":{"=":{"(":{"b":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"1":{"6":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"135":{"tf":1.0}}},"1":{"df":3,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"113":{"tf":1.0},"123":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":2,"docs":{"113":{"tf":1.0},"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"166":{"tf":2.6457513110645907},"167":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"88":{"tf":1.0},"89":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"h":{"4":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"258":{"tf":1.0},"265":{"tf":1.0},"37":{"tf":1.0},"55":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"123":{"tf":1.4142135623730951}},"":{"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"−":{"8":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":5,"docs":{"209":{"tf":1.7320508075688772},"274":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":2.0}},"e":{"2":{"df":0,"docs":{},"f":{"4":{"df":2,"docs":{"140":{"tf":1.0},"209":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"g":{"c":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}},"":{"=":{"0":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}},"1":{"df":3,"docs":{"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"132":{"tf":1.0}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"6":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"4":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"3":{"2":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"146":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"132":{"tf":1.0},"135":{"tf":1.7320508075688772}}},"1":{"df":2,"docs":{"134":{"tf":1.0},"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"b":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}},"":{"=":{"1":{"df":3,"docs":{"234":{"tf":1.4142135623730951},"242":{"tf":1.0},"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"3":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"2":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"113":{"tf":1.0},"123":{"tf":1.4142135623730951}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"2":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"4":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"8":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{")":{"=":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"′":{"=":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"2":{"7":{"df":0,"docs":{},"−":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{")":{"=":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"3":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"113":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"=":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"3":{"2":{"a":{"d":{"d":{"3":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"d":{"d":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"":{"=":{"b":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"5":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"4":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"206":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0},"265":{"tf":1.0}},"i":{"df":4,"docs":{"105":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"2":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":28,"docs":{"11":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"221":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.7320508075688772},"35":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"213":{"tf":1.0},"90":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"6":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0}}}}}}},"g":{"0":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"106":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":2,"docs":{"106":{"tf":1.0},"111":{"tf":2.449489742783178}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"g":{"7":{"df":1,"docs":{"111":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"111":{"tf":2.449489742783178}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"g":{"7":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"111":{"tf":1.0}}},"7":{"df":1,"docs":{"111":{"tf":1.0}}},"9":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"g":{"1":{"0":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"g":{"1":{"1":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"0":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"213":{"tf":2.23606797749979},"258":{"tf":1.7320508075688772}}},"r":{"b":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"209":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":1,"docs":{"20":{"tf":2.23606797749979}}},"c":{"=":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"df":0,"docs":{},"g":{"c":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":2.23606797749979},"126":{"tf":1.0}},"⋅":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"b":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"77":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":24,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"137":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"19":{"tf":2.449489742783178},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"55":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"t":{"df":4,"docs":{"118":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"252":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"101":{"tf":1.0},"216":{"tf":1.0},"226":{"tf":1.0},"266":{"tf":1.0}},"n":{"df":27,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.4142135623730951},"19":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"24":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":2.0},"259":{"tf":1.0},"272":{"tf":1.0},"44":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"35":{"tf":2.449489742783178},"69":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":6,"docs":{"1":{"tf":1.0},"138":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"266":{"tf":1.0},"45":{"tf":1.0}},"o":{"d":{"df":3,"docs":{"1":{"tf":1.0},"106":{"tf":1.0},"274":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"15":{"tf":2.0}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":53,"docs":{"111":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"127":{"tf":1.0},"131":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":2.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":2.8284271247461903},"122":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":29,"docs":{"103":{"tf":2.23606797749979},"105":{"tf":4.358898943540674},"106":{"tf":3.3166247903554},"111":{"tf":8.888194417315589},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"122":{"tf":3.3166247903554},"123":{"tf":4.123105625617661},"124":{"tf":2.6457513110645907},"125":{"tf":3.1622776601683795},"126":{"tf":6.0},"138":{"tf":2.8284271247461903},"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":2.23606797749979},"143":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"269":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"87":{"tf":1.0},"97":{"tf":3.605551275463989}}}},"w":{"df":6,"docs":{"127":{"tf":1.0},"20":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"6":{"tf":1.0},"87":{"tf":1.0}}}}},"t":{"df":1,"docs":{"53":{"tf":1.0}},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"103":{"tf":1.0},"130":{"tf":1.0},"138":{"tf":1.0},"177":{"tf":1.0},"211":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.4142135623730951},"270":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"0":{"df":22,"docs":{"111":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":2.449489742783178},"126":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"233":{"tf":1.4142135623730951}},"":{",":{".":{".":{",":{"df":0,"docs":{},"h":{"3":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}},".":{",":{"df":0,"docs":{},"h":{"1":{"1":{"df":2,"docs":{"233":{"tf":1.0},"244":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":10,"docs":{"106":{"tf":2.23606797749979},"169":{"tf":1.0},"171":{"tf":1.7320508075688772},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"233":{"tf":1.0}}},"4":{"df":2,"docs":{"106":{"tf":1.0},"114":{"tf":1.0}}},"7":{"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":2.6457513110645907},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"h":{"2":{"df":2,"docs":{"201":{"tf":1.0},"203":{"tf":1.0}},"":{",":{"df":0,"docs":{},"h":{"3":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"1":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"1":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"−":{"(":{"(":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"1":{")":{"df":0,"docs":{},"∗":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"1":{")":{"=":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"6":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"2":{"7":{"+":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{")":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"df":11,"docs":{"106":{"tf":1.0},"111":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"233":{"tf":1.0}},"":{",":{".":{".":{".":{"df":0,"docs":{},"h":{"3":{"df":1,"docs":{"111":{"tf":1.0}}},"7":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":7,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0}}},"3":{"df":6,"docs":{"125":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0}}},"4":{"df":5,"docs":{"106":{"tf":1.7320508075688772},"114":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"h":{"1":{"1":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":3,"docs":{"125":{"tf":1.0},"233":{"tf":1.0},"244":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"h":{"7":{"df":1,"docs":{"244":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"5":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"147":{"tf":1.0}},"":{"=":{"1":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"df":1,"docs":{"110":{"tf":1.0}}},"8":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"h":{"1":{"1":{"df":1,"docs":{"244":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.4142135623730951}},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"a":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"101":{"tf":1.7320508075688772},"106":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"144":{"tf":1.0},"23":{"tf":1.0},"90":{"tf":1.0}}}},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"n":{"d":{"df":1,"docs":{"255":{"tf":1.0}},"l":{"df":2,"docs":{"111":{"tf":1.0},"116":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":10,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"122":{"tf":1.4142135623730951},"132":{"tf":1.0},"243":{"tf":1.0},"255":{"tf":1.4142135623730951},"258":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}}}}},"r":{"d":{"df":1,"docs":{"62":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"(":{"a":{"1":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"74":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}}}}}},"_":{"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"1":{"df":2,"docs":{"79":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"2":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"1":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"1":{"df":2,"docs":{"79":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"239":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"(":{"a":{",":{"0":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"(":{"a":{",":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":62,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":5.0},"105":{"tf":3.872983346207417},"106":{"tf":5.291502622129181},"107":{"tf":3.3166247903554},"108":{"tf":2.0},"109":{"tf":1.7320508075688772},"110":{"tf":2.8284271247461903},"111":{"tf":3.0},"112":{"tf":4.358898943540674},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":3.1622776601683795},"116":{"tf":3.605551275463989},"118":{"tf":5.0},"119":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"220":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":2.23606797749979},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":3.1622776601683795},"233":{"tf":2.8284271247461903},"236":{"tf":1.7320508075688772},"237":{"tf":2.23606797749979},"238":{"tf":2.449489742783178},"239":{"tf":2.23606797749979},"240":{"tf":2.449489742783178},"243":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":3.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"64":{"tf":1.0},"68":{"tf":3.1622776601683795},"72":{"tf":2.0},"74":{"tf":3.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"88":{"tf":2.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"99":{"tf":4.898979485566356}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"224":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":18,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":2.8284271247461903},"106":{"tf":3.0},"111":{"tf":3.872983346207417},"115":{"tf":3.1622776601683795},"116":{"tf":4.0},"206":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":2.23606797749979},"233":{"tf":1.4142135623730951},"236":{"tf":2.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"244":{"tf":2.0},"245":{"tf":2.8284271247461903},"85":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"(":{"a":{",":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"(":{"a":{",":{"0":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"(":{"a":{",":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"(":{"a":{",":{"0":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"123":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"217":{"tf":1.0},"232":{"tf":1.0},"8":{"tf":1.0}}}}},"df":2,"docs":{"23":{"tf":1.4142135623730951},"64":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":9,"docs":{"103":{"tf":1.0},"16":{"tf":1.7320508075688772},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":2.0},"26":{"tf":1.4142135623730951},"35":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"103":{"tf":1.0},"128":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":29,"docs":{"100":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":1.0},"106":{"tf":2.8284271247461903},"107":{"tf":1.0},"111":{"tf":2.23606797749979},"116":{"tf":1.0},"122":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"233":{"tf":1.0},"247":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"62":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"17":{"tf":2.23606797749979}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"42":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":18,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"19":{"tf":1.0},"209":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.7320508075688772},"4":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"138":{"tf":1.0},"20":{"tf":1.0},"222":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.4142135623730951},"4":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"69":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"233":{"tf":1.0},"254":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"232":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"143":{"tf":1.0},"206":{"tf":2.0},"68":{"tf":1.0}}}}}},"r":{"df":6,"docs":{"232":{"tf":2.23606797749979},"236":{"tf":2.6457513110645907},"237":{"tf":2.6457513110645907},"238":{"tf":3.7416573867739413},"239":{"tf":3.7416573867739413},"240":{"tf":5.291502622129181}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"a":{"+":{"7":{")":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"←":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"i":{".":{"df":47,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"128":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"211":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":2.0},"245":{"tf":2.6457513110645907},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.7320508075688772}}},"/":{"df":0,"docs":{},"o":{"df":5,"docs":{"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.0}}}},"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"243":{"tf":1.4142135623730951}},"∏":{"8":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{")":{"=":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"+":{"b":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":9,"docs":{"105":{"tf":3.0},"106":{"tf":4.123105625617661},"111":{"tf":2.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"117":{"tf":2.8284271247461903},"258":{"tf":1.7320508075688772},"259":{"tf":1.0}},"e":{"a":{"df":2,"docs":{"113":{"tf":1.0},"213":{"tf":1.0}},"l":{"df":2,"docs":{"255":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":14,"docs":{"103":{"tf":1.0},"120":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"272":{"tf":1.0},"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"213":{"tf":1.0}}},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"101":{"tf":1.0},"112":{"tf":1.0},"47":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"177":{"tf":1.0}}}},"i":{"df":1,"docs":{"274":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":76,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"247":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"207":{"tf":2.0},"208":{"tf":2.23606797749979}}}},"df":0,"docs":{},"m":{"0":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":14,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":3.0},"113":{"tf":1.0},"126":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"208":{"tf":1.0},"245":{"tf":1.0},"39":{"tf":1.4142135623730951},"45":{"tf":1.0},"50":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"69":{"tf":1.0},"97":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"168":{"tf":1.0},"19":{"tf":1.0},"214":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"245":{"tf":1.7320508075688772},"253":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.4142135623730951},"88":{"tf":1.0},"99":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":5,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"170":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":11,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"210":{"tf":1.0},"240":{"tf":1.0},"266":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":2.449489742783178},"39":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0}}}},"s":{"df":22,"docs":{"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.7320508075688772},"150":{"tf":1.0},"170":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"234":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"259":{"tf":1.4142135623730951},"264":{"tf":1.0},"9":{"tf":1.0}},"s":{"df":1,"docs":{"120":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"2":{"tf":1.0},"270":{"tf":1.0},"33":{"tf":1.0}}}}}}},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"120":{"tf":2.0}}}},"df":0,"docs":{}}}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":27,"docs":{"105":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":2.23606797749979},"217":{"tf":1.7320508075688772},"221":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"245":{"tf":2.6457513110645907},"252":{"tf":1.7320508075688772},"259":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"62":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"124":{"tf":1.0},"211":{"tf":1.0},"6":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":2,"docs":{"139":{"tf":1.0},"160":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"s":{"df":15,"docs":{"130":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"217":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"262":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"222":{"tf":1.0},"254":{"tf":1.0},"261":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"224":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"245":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":20,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.7320508075688772},"17":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":1.0},"239":{"tf":2.23606797749979},"240":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"245":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":2.23606797749979},"68":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}},"i":{"c":{"df":14,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"118":{"tf":1.7320508075688772},"133":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":12,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"226":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.0},"34":{"tf":1.4142135623730951},"63":{"tf":1.0},"70":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"34":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":3,"docs":{"105":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"266":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951}},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"245":{"tf":1.0}}}}},"df":42,"docs":{"10":{"tf":1.0},"101":{"tf":2.8284271247461903},"104":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":2.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":3.3166247903554},"127":{"tf":1.0},"129":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.0},"232":{"tf":2.0},"233":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"24":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":2.0},"9":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"247":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"62":{"tf":1.0},"65":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"33":{"tf":1.0},"42":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}}}}},"df":48,"docs":{"10":{"tf":1.7320508075688772},"103":{"tf":1.0},"106":{"tf":2.0},"116":{"tf":1.0},"127":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":2.6457513110645907},"179":{"tf":1.0},"180":{"tf":1.0},"194":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":2.0},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"270":{"tf":2.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":3.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"86":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":11,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.0},"23":{"tf":1.0},"267":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":2.449489742783178},"9":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"d":{"df":9,"docs":{"103":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":2.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"16":{"tf":1.0},"2":{"tf":1.0},"232":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":5,"docs":{"223":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":57,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"107":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"132":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"232":{"tf":5.0990195135927845},"233":{"tf":1.4142135623730951},"234":{"tf":2.449489742783178},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.7320508075688772},"240":{"tf":2.23606797749979},"25":{"tf":2.0},"28":{"tf":1.0},"31":{"tf":2.0},"33":{"tf":2.8284271247461903},"35":{"tf":1.7320508075688772},"36":{"tf":2.0},"37":{"tf":3.4641016151377544},"38":{"tf":3.872983346207417},"39":{"tf":1.4142135623730951},"41":{"tf":2.0},"42":{"tf":3.4641016151377544},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"45":{"tf":3.872983346207417},"47":{"tf":2.6457513110645907},"48":{"tf":2.23606797749979},"49":{"tf":2.23606797749979},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.449489742783178},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":2.8284271247461903},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":2.449489742783178},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":19,"docs":{"168":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.4142135623730951},"220":{"tf":1.0},"258":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"88":{"tf":1.0}},"r":{"df":1,"docs":{"274":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"224":{"tf":1.0},"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"22":{"tf":1.4142135623730951},"265":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":5,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"147":{"tf":1.0},"209":{"tf":1.0},"252":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":19,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"14":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":2.0},"230":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.0},"38":{"tf":2.0},"4":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"17":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":6,"docs":{"138":{"tf":1.0},"211":{"tf":1.0},"223":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"87":{"tf":1.0}},"t":{"df":4,"docs":{"0":{"tf":1.0},"265":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"139":{"tf":1.0},"159":{"tf":1.7320508075688772},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"257":{"tf":1.4142135623730951},"258":{"tf":2.0},"54":{"tf":1.0}}}}},"o":{"c":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":8,"docs":{"264":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"41":{"tf":2.0},"42":{"tf":3.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":8,"docs":{"113":{"tf":1.0},"210":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"255":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"118":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"110":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.7320508075688772}}}}}},"o":{"d":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"2":{"tf":1.0},"270":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"211":{"tf":1.0},"223":{"tf":1.0}}}}},"t":{"'":{"df":3,"docs":{"272":{"tf":1.0},"274":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":17,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"127":{"tf":3.1622776601683795},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"137":{"tf":2.6457513110645907},"140":{"tf":1.0},"141":{"tf":1.0},"42":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"60":{"tf":2.449489742783178},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"r":{"df":4,"docs":{"101":{"tf":1.0},"2":{"tf":1.0},"49":{"tf":1.0},"94":{"tf":1.0}}}},"h":{"df":1,"docs":{"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"129":{"tf":1.0},"207":{"tf":1.0},"37":{"tf":1.0},"8":{"tf":1.0}}}}}}},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":0,"docs":{},"−":{"1":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":2,"docs":{"256":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"255":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"∈":{"2":{",":{"3":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"0":{",":{"1":{"5":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":1,"docs":{"125":{"tf":1.0}}},"4":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"114":{"tf":1.0}}},"7":{"df":2,"docs":{"111":{"tf":1.0},"114":{"tf":1.0}}},"8":{"df":2,"docs":{"189":{"tf":1.4142135623730951},"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"8":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{",":{"8":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"0":{",":{"1":{",":{"2":{",":{"3":{"df":5,"docs":{"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"56":{"tf":1.0}},"}":{"df":0,"docs":{},"∋":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"≥":{"2":{"3":{"2":{"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":{}},"df":0,"docs":{}},"df":2,"docs":{"162":{"tf":1.0},"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"92":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"101":{"tf":2.23606797749979},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":2.23606797749979},"108":{"tf":2.23606797749979},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.23606797749979},"143":{"tf":1.0},"92":{"tf":2.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.0}}}}},"∈":{"[":{"0":{",":{"4":{"df":1,"docs":{"244":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"0":{"df":5,"docs":{"130":{"tf":1.4142135623730951},"135":{"tf":1.0},"233":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.4142135623730951}},"":{",":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"":{",":{"b":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"244":{"tf":1.0}}},"1":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951}},"":{"=":{"0":{"df":1,"docs":{"252":{"tf":1.0}}},"1":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"(":{"a":{"df":0,"docs":{},"⋅":{"1":{"6":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{")":{")":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"(":{"b":{"df":0,"docs":{},"⋅":{"1":{"6":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{")":{")":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{")":{"=":{"0":{"df":1,"docs":{"249":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"−":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"2":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"245":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"b":{"df":1,"docs":{"20":{"tf":3.4641016151377544}}},"df":2,"docs":{"65":{"tf":3.3166247903554},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":23,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"117":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":21,"docs":{"116":{"tf":2.6457513110645907},"2":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"231":{"tf":2.0},"260":{"tf":2.23606797749979},"261":{"tf":1.7320508075688772},"262":{"tf":2.23606797749979},"263":{"tf":2.6457513110645907},"264":{"tf":2.8284271247461903},"269":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":3.1622776601683795},"45":{"tf":1.0},"88":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}}}},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"df":7,"docs":{"10":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":2.449489742783178},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":3.3166247903554}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"1":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"z":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"0":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"207":{"tf":1.0},"264":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":4,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":11,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"246":{"tf":1.0},"55":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"116":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"α":{"6":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"7":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"∣":{"df":0,"docs":{},"∣":{"b":{",":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":20,"docs":{"104":{"tf":2.449489742783178},"116":{"tf":2.6457513110645907},"179":{"tf":1.0},"180":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"224":{"tf":2.0},"228":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"252":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"210":{"tf":1.0},"212":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"170":{"tf":1.0},"44":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":41,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.7320508075688772},"142":{"tf":1.0},"144":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.0},"223":{"tf":1.7320508075688772},"226":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"242":{"tf":1.0},"245":{"tf":1.7320508075688772},"246":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"262":{"tf":1.0},"264":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"87":{"tf":1.0},"97":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"212":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":1.0},"259":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"11":{"tf":1.0},"118":{"tf":1.0},"129":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"37":{"tf":1.0},"97":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"170":{"tf":1.0},"62":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}}}}},"df":2,"docs":{"209":{"tf":2.8284271247461903},"77":{"tf":2.6457513110645907}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"128":{"tf":1.0},"233":{"tf":1.0},"258":{"tf":1.0},"44":{"tf":1.7320508075688772}}}}}}},"df":1,"docs":{"68":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"f":{"'":{"df":1,"docs":{"239":{"tf":1.0}}},"df":14,"docs":{"107":{"tf":1.0},"17":{"tf":1.7320508075688772},"207":{"tf":1.0},"233":{"tf":1.4142135623730951},"239":{"tf":2.0},"240":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"74":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"255":{"tf":1.0},"274":{"tf":1.0},"4":{"tf":1.0}}}},"v":{"df":4,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"239":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":35,"docs":{"106":{"tf":1.0},"118":{"tf":1.0},"131":{"tf":2.6457513110645907},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":2.0},"140":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"147":{"tf":2.8284271247461903},"151":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.4142135623730951},"31":{"tf":1.0},"58":{"tf":1.4142135623730951},"68":{"tf":1.0},"84":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"112":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"230":{"tf":1.4142135623730951},"266":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"111":{"tf":1.0},"13":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":2.6457513110645907},"234":{"tf":2.449489742783178},"242":{"tf":1.4142135623730951},"245":{"tf":1.0},"259":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":2.0}}}},"t":{"'":{"df":11,"docs":{"101":{"tf":1.0},"112":{"tf":1.4142135623730951},"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"170":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"247":{"tf":1.4142135623730951},"262":{"tf":1.0},"45":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"34":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":18,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"209":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":2.23606797749979},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"86":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"2":{"tf":2.0},"32":{"tf":1.4142135623730951},"38":{"tf":2.0},"43":{"tf":1.7320508075688772},"69":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"m":{"b":{"df":15,"docs":{"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"66":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":12,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"232":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"253":{"tf":1.0},"35":{"tf":1.4142135623730951},"6":{"tf":1.0},"97":{"tf":1.0}}}},"df":3,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"40":{"tf":1.0}},"r":{"df":1,"docs":{"243":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"113":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"55":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":5,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.7320508075688772},"210":{"tf":1.0},"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"c":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"0":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"37":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.0}},"w":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"37":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.0}}}}}}}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":2,"docs":{"39":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":10,"docs":{"2":{"tf":1.0},"37":{"tf":2.449489742783178},"38":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":2.23606797749979},"62":{"tf":1.7320508075688772},"64":{"tf":1.0},"66":{"tf":3.872983346207417},"88":{"tf":1.0},"89":{"tf":1.0}}},"t":{"df":17,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"233":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.0},"29":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"2":{"(":{"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"6":{"tf":1.0},"74":{"tf":1.0}},"i":{"c":{"df":5,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"113":{"tf":1.0},"2":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"216":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":27,"docs":{"111":{"tf":2.23606797749979},"112":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"150":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"85":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":8,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"265":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772}}}}},"p":{"'":{"df":2,"docs":{"106":{"tf":2.0},"110":{"tf":1.4142135623730951}}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":22,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":3.0},"110":{"tf":4.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.449489742783178},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"2":{"tf":1.4142135623730951},"24":{"tf":1.0},"35":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":2.6457513110645907},"94":{"tf":2.6457513110645907},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"w":{"df":10,"docs":{"106":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"209":{"tf":1.4142135623730951},"274":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"222":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"53":{"tf":1.0}},"e":{"df":1,"docs":{"53":{"tf":1.0}}}}},"m":{"1":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"21":{"tf":1.0}}},"=":{"(":{"2":{"3":{"2":{"df":0,"docs":{},"−":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"k":{"1":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"p":{"df":2,"docs":{"104":{"tf":1.0},"116":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"0":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"35":{"tf":1.0},"6":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"33":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"215":{"tf":1.0},"233":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"272":{"tf":1.0},"38":{"tf":1.7320508075688772},"41":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"230":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":48,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.4142135623730951},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"250":{"tf":2.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"259":{"tf":2.0},"264":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"33":{"tf":2.0},"7":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"101":{"tf":1.0},"127":{"tf":1.4142135623730951},"199":{"tf":1.0},"2":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":15,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.4142135623730951},"24":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"33":{"tf":1.0},"72":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"10":{"tf":1.0},"181":{"tf":1.4142135623730951},"42":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"104":{"tf":1.0},"111":{"tf":2.0},"118":{"tf":1.0},"226":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"35":{"tf":1.0},"42":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":12,"docs":{"10":{"tf":2.0},"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"6":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"m":{"df":2,"docs":{"16":{"tf":1.0},"23":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"21":{"tf":1.0}}}}},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"16":{"tf":1.0},"33":{"tf":2.0},"35":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"245":{"tf":1.0},"264":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"111":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"274":{"tf":1.0},"4":{"tf":1.4142135623730951}}}}},"h":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"212":{"tf":1.0},"228":{"tf":1.0},"271":{"tf":1.0}}}}}},"x":{"(":{"a":{",":{"b":{")":{">":{"1":{"df":1,"docs":{"52":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"≥":{"2":{"3":{"2":{"df":3,"docs":{"57":{"tf":3.605551275463989},"58":{"tf":1.7320508075688772},"59":{"tf":3.7416573867739413}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},",":{"c":{")":{"df":0,"docs":{},"≥":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"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}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"2":{"tf":1.0},"212":{"tf":1.0},"60":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"20":{"tf":2.6457513110645907}},"p":{"df":2,"docs":{"104":{"tf":1.0},"116":{"tf":1.0}}}},"df":7,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0},"245":{"tf":1.0},"68":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":27,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"138":{"tf":1.0},"2":{"tf":1.0},"217":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}},"t":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"240":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"[":{"8":{"7":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"30":{"tf":1.0}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.4142135623730951}},"w":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.4142135623730951}},"e":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"1":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":2,"docs":{"23":{"tf":1.0},"29":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":47,"docs":{"10":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":3.1622776601683795},"2":{"tf":2.0},"200":{"tf":2.8284271247461903},"201":{"tf":2.8284271247461903},"202":{"tf":3.0},"203":{"tf":3.0},"204":{"tf":3.0},"209":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":2.0},"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"253":{"tf":2.23606797749979},"254":{"tf":2.449489742783178},"255":{"tf":3.1622776601683795},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":3.872983346207417},"259":{"tf":2.6457513110645907},"273":{"tf":1.4142135623730951},"29":{"tf":2.449489742783178},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"41":{"tf":1.0},"44":{"tf":3.4641016151377544},"45":{"tf":2.23606797749979},"6":{"tf":2.23606797749979},"62":{"tf":2.6457513110645907},"64":{"tf":1.4142135623730951},"65":{"tf":2.0},"66":{"tf":4.47213595499958},"72":{"tf":1.0},"74":{"tf":2.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"88":{"tf":2.0},"89":{"tf":1.4142135623730951}}},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"255":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"256":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}},"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":15,"docs":{"111":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"130":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"10":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"90":{"tf":1.0}}}},"l":{"df":23,"docs":{"10":{"tf":2.6457513110645907},"104":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":2.23606797749979},"220":{"tf":1.0},"232":{"tf":3.872983346207417},"233":{"tf":2.0},"239":{"tf":2.6457513110645907},"240":{"tf":2.6457513110645907},"243":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":3.3166247903554},"6":{"tf":2.0},"65":{"tf":1.7320508075688772},"68":{"tf":3.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":2.449489742783178},"77":{"tf":1.0},"8":{"tf":1.7320508075688772},"88":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"220":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"104":{"tf":1.7320508075688772},"115":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"116":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":81,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"11":{"tf":3.3166247903554},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"127":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":2.23606797749979},"138":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.7320508075688772},"155":{"tf":1.0},"16":{"tf":3.4641016151377544},"168":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":3.4641016151377544},"20":{"tf":1.0},"205":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"22":{"tf":2.8284271247461903},"220":{"tf":1.0},"23":{"tf":2.0},"232":{"tf":1.0},"24":{"tf":2.449489742783178},"25":{"tf":1.7320508075688772},"253":{"tf":1.0},"258":{"tf":1.7320508075688772},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"3":{"tf":1.7320508075688772},"31":{"tf":1.0},"32":{"tf":2.8284271247461903},"33":{"tf":4.242640687119285},"35":{"tf":3.3166247903554},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"4":{"tf":2.449489742783178},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":2.23606797749979},"7":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"213":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"118":{"tf":1.0},"206":{"tf":1.0}}}},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"139":{"tf":1.0},"201":{"tf":1.7320508075688772}},"w":{"df":2,"docs":{"140":{"tf":1.0},"200":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":2.449489742783178}}}}}},"df":1,"docs":{"74":{"tf":3.0}}},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":1,"docs":{"84":{"tf":1.7320508075688772}},"e":{"df":1,"docs":{"13":{"tf":1.0}},"l":{"df":1,"docs":{"255":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"262":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"33":{"tf":1.0}}}},"df":23,"docs":{"177":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":2.0},"225":{"tf":1.0},"262":{"tf":1.0},"273":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":4.795831523312719},"39":{"tf":1.4142135623730951},"43":{"tf":2.449489742783178},"71":{"tf":2.23606797749979},"72":{"tf":2.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"'":{"df":3,"docs":{"221":{"tf":1.0},"226":{"tf":1.0},"262":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"u":{"df":7,"docs":{"127":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"253":{"tf":1.0},"34":{"tf":1.0},"6":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"259":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":40,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":2.0},"122":{"tf":1.0},"137":{"tf":1.4142135623730951},"148":{"tf":1.0},"16":{"tf":1.0},"211":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"248":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":2.0},"4":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"86":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"110":{"tf":1.0},"45":{"tf":1.0},"77":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"v":{"d":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}},"2":{"df":2,"docs":{"139":{"tf":1.0},"191":{"tf":1.0}}},"3":{"df":1,"docs":{"139":{"tf":1.0}}},"4":{"df":1,"docs":{"139":{"tf":1.0}}},"5":{"df":1,"docs":{"139":{"tf":1.0}}},"6":{"df":1,"docs":{"139":{"tf":1.0}}},"7":{"df":1,"docs":{"139":{"tf":1.0}}},"8":{"df":1,"docs":{"139":{"tf":1.0}}},"df":2,"docs":{"191":{"tf":1.0},"60":{"tf":1.0}},"w":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":17,"docs":{"115":{"tf":1.0},"130":{"tf":1.4142135623730951},"190":{"tf":2.0},"191":{"tf":1.7320508075688772},"194":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"254":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"45":{"tf":2.23606797749979},"60":{"tf":2.0},"62":{"tf":2.23606797749979},"65":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.4142135623730951}}}},"2":{"df":2,"docs":{"139":{"tf":1.0},"190":{"tf":1.0}}},"3":{"df":1,"docs":{"139":{"tf":1.0}}},"4":{"df":1,"docs":{"139":{"tf":1.0}}},"5":{"df":1,"docs":{"139":{"tf":1.0}}},"6":{"df":1,"docs":{"139":{"tf":1.0}}},"7":{"df":1,"docs":{"139":{"tf":1.0}}},"8":{"df":1,"docs":{"139":{"tf":1.0}}},"df":2,"docs":{"190":{"tf":1.0},"60":{"tf":1.0}},"w":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"p":{"a":{"df":3,"docs":{"232":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0}}},"df":3,"docs":{"232":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0}},"u":{"df":1,"docs":{"240":{"tf":1.0}}},"v":{"df":1,"docs":{"240":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"143":{"tf":1.0},"207":{"tf":2.0}}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"208":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":4,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":4.0},"21":{"tf":2.0},"23":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"140":{"tf":1.0},"203":{"tf":1.7320508075688772}},"w":{"df":2,"docs":{"140":{"tf":1.0},"202":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"143":{"tf":1.0},"204":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"68":{"tf":1.0},"8":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"u":{"a":{"df":2,"docs":{"232":{"tf":1.0},"240":{"tf":1.0}}},"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"33":{"tf":1.0},"8":{"tf":1.0}}}},"df":2,"docs":{"232":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772}},"l":{"6":{"4":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":4,"docs":{"140":{"tf":1.0},"158":{"tf":1.7320508075688772},"38":{"tf":1.0},"52":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.0},"222":{"tf":1.0},"246":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":21,"docs":{"104":{"tf":1.4142135623730951},"113":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"217":{"tf":1.0},"232":{"tf":3.3166247903554},"233":{"tf":1.0},"234":{"tf":3.3166247903554},"238":{"tf":1.0},"242":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"25":{"tf":1.0},"271":{"tf":1.0},"41":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}},"i":{"df":19,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"138":{"tf":1.0},"169":{"tf":1.0},"212":{"tf":1.7320508075688772},"226":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.4142135623730951},"265":{"tf":2.0},"266":{"tf":1.7320508075688772},"270":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"113":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":2,"docs":{"232":{"tf":1.0},"240":{"tf":1.0}}},"df":3,"docs":{"232":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"6":{"tf":1.0}}}},"n":{"+":{"1":{"df":2,"docs":{"190":{"tf":1.0},"191":{"tf":1.0}}},"df":0,"docs":{}},"/":{"8":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"0":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"257":{"tf":1.0},"259":{"tf":1.0}},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"(":{"c":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"c":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{"=":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"257":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"257":{"tf":1.4142135623730951},"259":{"tf":1.0}}},"df":0,"docs":{},"δ":{"c":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"δ":{"a":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":1,"docs":{"259":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"df":2,"docs":{"257":{"tf":1.0},"259":{"tf":1.0}},"":{"=":{"0":{"df":1,"docs":{"257":{"tf":1.0}}},"1":{"df":1,"docs":{"257":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"=":{"0":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{")":{"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"=":{"0":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"<":{"2":{"5":{"6":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"256":{"tf":1.4142135623730951}}},"1":{"4":{"df":1,"docs":{"104":{"tf":1.0}}},"df":1,"docs":{"256":{"tf":1.4142135623730951}}},"df":0,"docs":{}},">":{"2":{"1":{"6":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"148":{"tf":1.0},"212":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"113":{"tf":1.4142135623730951},"137":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":4,"docs":{"71":{"tf":2.0},"73":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"2":{"tf":1.4142135623730951},"232":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":19,"docs":{"104":{"tf":1.7320508075688772},"18":{"tf":1.0},"184":{"tf":1.4142135623730951},"190":{"tf":2.0},"191":{"tf":2.23606797749979},"209":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"216":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":2.0},"256":{"tf":1.0},"31":{"tf":1.4142135623730951},"60":{"tf":2.8284271247461903},"65":{"tf":2.0},"74":{"tf":2.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":85,"docs":{"0":{"tf":1.0},"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":2.6457513110645907},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":2.6457513110645907},"111":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"120":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":2.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"16":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":2.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"227":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":2.0},"251":{"tf":1.7320508075688772},"253":{"tf":1.0},"254":{"tf":2.6457513110645907},"255":{"tf":3.0},"256":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.7320508075688772},"259":{"tf":2.23606797749979},"264":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":3,"docs":{"139":{"tf":1.0},"157":{"tf":1.7320508075688772},"52":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"q":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"59":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}},"t":{"df":1,"docs":{"106":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"105":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"75":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}},"df":38,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":2.8284271247461903},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":2.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"141":{"tf":1.0},"208":{"tf":2.6457513110645907},"209":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"240":{"tf":1.7320508075688772},"243":{"tf":2.0},"245":{"tf":3.3166247903554},"255":{"tf":1.7320508075688772},"256":{"tf":1.7320508075688772},"257":{"tf":2.0},"258":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"t":{"df":52,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":3.0},"111":{"tf":3.605551275463989},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"120":{"tf":2.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":2.0},"124":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"166":{"tf":2.0},"167":{"tf":1.4142135623730951},"209":{"tf":2.6457513110645907},"211":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"234":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":2.0},"243":{"tf":1.4142135623730951},"244":{"tf":2.0},"246":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"266":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"g":{"=":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"124":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.7320508075688772}}}}}}},"df":23,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"207":{"tf":2.449489742783178},"208":{"tf":3.3166247903554},"232":{"tf":2.6457513110645907},"233":{"tf":1.7320508075688772},"239":{"tf":2.449489742783178},"240":{"tf":3.0},"243":{"tf":2.0},"244":{"tf":1.0},"245":{"tf":2.8284271247461903},"65":{"tf":1.0},"68":{"tf":2.0},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}}}}}}}},"df":27,"docs":{"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"128":{"tf":1.0},"130":{"tf":1.0},"170":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"222":{"tf":1.0},"239":{"tf":1.0},"256":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"55":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":3,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"'":{"df":1,"docs":{"111":{"tf":1.0}}},"df":9,"docs":{"100":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"122":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"150":{"tf":1.7320508075688772},"23":{"tf":1.0},"97":{"tf":2.23606797749979},"99":{"tf":2.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":8,"docs":{"113":{"tf":1.0},"241":{"tf":1.0},"252":{"tf":1.0},"263":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"70":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":51,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"143":{"tf":1.0},"159":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"246":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"87":{"tf":1.0}}},"h":{"df":4,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0}}},"i":{"c":{"df":11,"docs":{"111":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"254":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"w":{"df":8,"docs":{"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"255":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":2.8284271247461903}}}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":3.1622776601683795}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":37,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"111":{"tf":3.1622776601683795},"116":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"14":{"tf":1.0},"169":{"tf":1.4142135623730951},"17":{"tf":2.449489742783178},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":1.0},"258":{"tf":1.0},"37":{"tf":2.23606797749979},"39":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"8":{"tf":2.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"208":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"=":{"0":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"106":{"tf":1.0}}}},"∈":{"[":{"2":{",":{"9":{"df":2,"docs":{"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"0":{",":{".":{".":{".":{",":{"1":{"5":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"7":{",":{"9":{",":{"1":{"1":{",":{"1":{"3":{",":{"1":{"5":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"2":{",":{"3":{"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":{}},"1":{",":{".":{".":{".":{",":{"1":{"5":{"df":1,"docs":{"60":{"tf":1.0}}},"6":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"3":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{".":{".":{".":{",":{"1":{"5":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"−":{"1":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":0,"docs":{},"−":{"1":{")":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"116":{"tf":1.0},"228":{"tf":1.0},"245":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"d":{"d":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"18":{"tf":1.4142135623730951}},"f":{"a":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":5,"docs":{"102":{"tf":1.0},"228":{"tf":1.4142135623730951},"232":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"211":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0}}}}}}},"l":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":10,"docs":{"208":{"tf":2.449489742783178},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"240":{"tf":1.4142135623730951},"245":{"tf":2.0},"255":{"tf":2.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"68":{"tf":1.0},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"137":{"tf":1.0},"169":{"tf":1.0},"244":{"tf":1.0},"254":{"tf":1.0},"37":{"tf":1.0},"63":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":2.0}}}}}},"n":{"c":{"df":16,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":2.23606797749979},"16":{"tf":1.0},"19":{"tf":1.4142135623730951},"209":{"tf":1.0},"219":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"98":{"tf":1.0}}},"df":60,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"111":{"tf":3.0},"113":{"tf":1.7320508075688772},"122":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"130":{"tf":1.0},"138":{"tf":1.4142135623730951},"150":{"tf":1.0},"170":{"tf":2.0},"190":{"tf":1.0},"191":{"tf":1.0},"2":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":2.6457513110645907},"233":{"tf":2.449489742783178},"234":{"tf":1.7320508075688772},"24":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"248":{"tf":1.0},"25":{"tf":2.23606797749979},"250":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":2.6457513110645907},"50":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":2.449489742783178},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":29,"docs":{"10":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.0},"130":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.7320508075688772},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":3.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}},"p":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"1":{"1":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"123":{"tf":1.0}}},"9":{"df":1,"docs":{"123":{"tf":1.7320508075688772}}},"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"6":{"df":0,"docs":{},"":{"(":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"2":{"df":0,"docs":{},"i":{")":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"106":{"tf":1.0},"111":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"252":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":16,"docs":{"100":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.7320508075688772},"116":{"tf":2.0},"123":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"103":{"tf":1.0},"105":{"tf":2.449489742783178},"106":{"tf":2.23606797749979},"111":{"tf":5.656854249492381},"116":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":3.7416573867739413},"138":{"tf":3.3166247903554},"139":{"tf":5.656854249492381},"140":{"tf":4.123105625617661},"141":{"tf":4.123105625617661},"142":{"tf":3.0},"143":{"tf":2.8284271247461903},"144":{"tf":2.8284271247461903},"269":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":16,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"127":{"tf":1.0},"150":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"62":{"tf":2.0},"65":{"tf":2.23606797749979},"66":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":2.8284271247461903},"75":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"103":{"tf":1.0}}},"(":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{},"s":{"1":{"df":2,"docs":{"101":{"tf":2.449489742783178},"112":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":162,"docs":{"10":{"tf":1.0},"100":{"tf":2.0},"101":{"tf":2.23606797749979},"102":{"tf":1.0},"103":{"tf":3.4641016151377544},"104":{"tf":1.0},"105":{"tf":3.1622776601683795},"106":{"tf":6.48074069840786},"108":{"tf":2.0},"109":{"tf":1.0},"110":{"tf":3.7416573867739413},"111":{"tf":8.12403840463596},"112":{"tf":2.6457513110645907},"113":{"tf":2.8284271247461903},"114":{"tf":3.3166247903554},"115":{"tf":2.6457513110645907},"116":{"tf":4.0},"117":{"tf":3.4641016151377544},"118":{"tf":3.4641016151377544},"120":{"tf":3.1622776601683795},"121":{"tf":2.6457513110645907},"122":{"tf":3.872983346207417},"123":{"tf":4.0},"124":{"tf":3.3166247903554},"125":{"tf":3.4641016151377544},"126":{"tf":3.1622776601683795},"127":{"tf":1.4142135623730951},"130":{"tf":2.0},"131":{"tf":1.7320508075688772},"137":{"tf":3.872983346207417},"138":{"tf":4.69041575982343},"139":{"tf":2.6457513110645907},"140":{"tf":2.6457513110645907},"141":{"tf":2.6457513110645907},"142":{"tf":3.605551275463989},"143":{"tf":2.6457513110645907},"144":{"tf":2.23606797749979},"145":{"tf":1.0},"146":{"tf":2.23606797749979},"147":{"tf":2.449489742783178},"148":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":2.23606797749979},"170":{"tf":1.0},"171":{"tf":2.0},"172":{"tf":1.7320508075688772},"173":{"tf":2.0},"174":{"tf":2.0},"175":{"tf":2.0},"176":{"tf":2.0},"177":{"tf":2.23606797749979},"178":{"tf":2.0},"179":{"tf":2.8284271247461903},"180":{"tf":2.8284271247461903},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.7320508075688772},"184":{"tf":2.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772},"190":{"tf":2.0},"191":{"tf":2.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"195":{"tf":2.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"2":{"tf":2.0},"20":{"tf":1.0},"200":{"tf":2.23606797749979},"201":{"tf":2.23606797749979},"202":{"tf":2.449489742783178},"203":{"tf":2.449489742783178},"204":{"tf":2.449489742783178},"205":{"tf":2.0},"206":{"tf":2.0},"207":{"tf":2.6457513110645907},"208":{"tf":2.23606797749979},"209":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"210":{"tf":2.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":2.6457513110645907},"228":{"tf":2.8284271247461903},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"245":{"tf":2.0},"246":{"tf":3.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"251":{"tf":2.0},"252":{"tf":2.23606797749979},"254":{"tf":1.0},"255":{"tf":2.23606797749979},"258":{"tf":2.8284271247461903},"259":{"tf":2.449489742783178},"260":{"tf":1.0},"263":{"tf":2.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"50":{"tf":2.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":2.23606797749979},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":2.6457513110645907},"82":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":2.6457513110645907},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":4.0},"98":{"tf":2.449489742783178},"99":{"tf":2.23606797749979}}},"x":{"df":1,"docs":{"272":{"tf":1.0}}}},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"116":{"tf":1.0},"263":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"206":{"tf":1.0},"245":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}}}}}}},"df":1,"docs":{"259":{"tf":1.0}}}},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"208":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"207":{"tf":1.0},"208":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":18,"docs":{"13":{"tf":2.23606797749979},"19":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"220":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"258":{"tf":1.4142135623730951},"265":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":1.0},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.0},"65":{"tf":1.0}}}}}},"u":{"3":{"2":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"111":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"204":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":2.23606797749979},"228":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"35":{"tf":2.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"115":{"tf":1.0},"138":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"209":{"tf":1.0},"247":{"tf":1.0},"42":{"tf":1.0},"86":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"62":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":30,"docs":{"103":{"tf":1.4142135623730951},"105":{"tf":2.0},"106":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"122":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"207":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"42":{"tf":1.0},"68":{"tf":1.4142135623730951},"77":{"tf":1.0},"83":{"tf":4.242640687119285},"84":{"tf":2.449489742783178},"86":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":20,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"17":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"259":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":43,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":2.449489742783178},"194":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":2.0},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"233":{"tf":1.7320508075688772},"236":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"25":{"tf":1.0},"251":{"tf":2.23606797749979},"258":{"tf":1.0},"270":{"tf":2.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":2.0},"75":{"tf":1.7320508075688772},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":2.449489742783178},"80":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"2":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"255":{"tf":1.0}}}},"df":24,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":1.0},"220":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"246":{"tf":1.0},"251":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":13,"docs":{"128":{"tf":1.0},"129":{"tf":2.6457513110645907},"130":{"tf":2.23606797749979},"131":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"134":{"tf":1.0},"135":{"tf":2.449489742783178},"17":{"tf":1.4142135623730951},"177":{"tf":1.0},"209":{"tf":1.0},"269":{"tf":1.0},"82":{"tf":2.8284271247461903},"84":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}},"r":{"df":1,"docs":{"84":{"tf":1.0}}}},"u":{"b":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"101":{"tf":1.0},"4":{"tf":1.0},"6":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"198":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772}}}}}}}}},"x":{"df":2,"docs":{"103":{"tf":1.0},"124":{"tf":1.7320508075688772}}}},"p":{"0":{"df":2,"docs":{"211":{"tf":1.7320508075688772},"212":{"tf":2.23606797749979}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"p":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{")":{"=":{"0":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"1":{"df":6,"docs":{"105":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"129":{"tf":2.23606797749979},"233":{"tf":2.0},"240":{"tf":1.7320508075688772},"245":{"tf":2.6457513110645907}},"":{"=":{"1":{"df":2,"docs":{"136":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"p":{"1":{"df":3,"docs":{"117":{"tf":1.0},"135":{"tf":1.4142135623730951},"245":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.0}}}},"v":{"df":2,"docs":{"117":{"tf":1.0},"135":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"=":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"117":{"tf":1.0},"135":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"2":{"df":2,"docs":{"105":{"tf":2.0},"118":{"tf":1.7320508075688772}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"118":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"=":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"3":{"df":2,"docs":{"105":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"=":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"=":{"2":{"6":{"4":{"df":0,"docs":{},"−":{"2":{"3":{"2":{"+":{"1":{"df":3,"docs":{"6":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"74":{"tf":1.0}}}},"d":{"df":15,"docs":{"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"141":{"tf":1.0},"182":{"tf":1.7320508075688772},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"262":{"tf":1.0},"266":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.4142135623730951}},"w":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"16":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"105":{"tf":2.6457513110645907},"106":{"tf":2.449489742783178},"117":{"tf":2.0},"43":{"tf":1.0},"88":{"tf":1.0}}}}},"t":{"df":10,"docs":{"102":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"245":{"tf":2.23606797749979},"264":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"71":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"169":{"tf":1.0}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"113":{"tf":1.0},"222":{"tf":1.0},"270":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"69":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"42":{"tf":1.0},"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":15,"docs":{"10":{"tf":1.7320508075688772},"101":{"tf":1.0},"104":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":2.449489742783178},"208":{"tf":2.0},"232":{"tf":3.1622776601683795},"233":{"tf":1.0},"239":{"tf":2.23606797749979},"240":{"tf":2.449489742783178},"243":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"6":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":2.0}}}}}}}},"df":5,"docs":{"23":{"tf":1.7320508075688772},"267":{"tf":2.449489742783178},"268":{"tf":1.4142135623730951},"34":{"tf":1.0},"77":{"tf":2.0}},"e":{"=":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"74":{"tf":2.0}}}},"df":1,"docs":{"209":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}},"r":{"df":10,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"124":{"tf":1.0},"210":{"tf":1.4142135623730951},"217":{"tf":1.0},"23":{"tf":1.0},"254":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":2.23606797749979},"80":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":34,"docs":{"104":{"tf":1.0},"111":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"215":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.4142135623730951},"255":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":3.7416573867739413},"84":{"tf":3.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"223":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"36":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":18,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"206":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"68":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"112":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"143":{"tf":1.0}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":13,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"239":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.4142135623730951},"33":{"tf":1.0},"72":{"tf":1.0}}},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"115":{"tf":1.0},"224":{"tf":1.0}}}},"o":{"df":2,"docs":{"209":{"tf":1.0},"74":{"tf":1.7320508075688772}},"e":{"df":1,"docs":{"209":{"tf":1.7320508075688772}},"′":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"4":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"19":{"tf":1.0},"209":{"tf":2.23606797749979},"24":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"77":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"115":{"tf":1.0},"209":{"tf":1.0},"77":{"tf":2.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"274":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"98":{"tf":1.0}}}},"p":{"df":21,"docs":{"10":{"tf":1.0},"106":{"tf":3.4641016151377544},"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":2.449489742783178},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"98":{"tf":2.6457513110645907}},"u":{"df":0,"docs":{},"l":{"df":11,"docs":{"106":{"tf":2.449489742783178},"111":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"257":{"tf":1.0},"45":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"2":{"tf":1.0},"231":{"tf":1.0},"244":{"tf":1.0},"85":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":60,"docs":{"105":{"tf":2.449489742783178},"111":{"tf":2.23606797749979},"126":{"tf":1.0},"137":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.23606797749979},"230":{"tf":1.0},"239":{"tf":1.0},"60":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":12,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"124":{"tf":1.0},"170":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"272":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"274":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"2":{"df":4,"docs":{"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"52":{"tf":1.0},"84":{"tf":2.449489742783178}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"112":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"260":{"tf":1.0},"48":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":1,"docs":{"2":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":7,"docs":{"138":{"tf":2.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"81":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"105":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":19,"docs":{"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"31":{"tf":1.0},"42":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"s":{"df":30,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"209":{"tf":1.0},"245":{"tf":1.4142135623730951},"258":{"tf":1.0},"37":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"55":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":18,"docs":{"127":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.4142135623730951},"220":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":2.23606797749979},"70":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"170":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"23":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"10":{"tf":1.0},"207":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"106":{"tf":4.123105625617661},"111":{"tf":2.0}}}},"o":{"c":{".":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{">":{".":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"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":{}}},"b":{"a":{"df":0,"docs":{},"r":{".":{"1":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"2":{"df":1,"docs":{"37":{"tf":1.0}}},"3":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"23":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"38":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":44,"docs":{"116":{"tf":2.6457513110645907},"2":{"tf":1.7320508075688772},"220":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"233":{"tf":1.0},"260":{"tf":2.0},"262":{"tf":1.4142135623730951},"263":{"tf":2.0},"264":{"tf":2.0},"269":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":3.872983346207417},"38":{"tf":4.58257569495584},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.6457513110645907},"42":{"tf":3.605551275463989},"43":{"tf":2.8284271247461903},"44":{"tf":2.449489742783178},"45":{"tf":2.449489742783178},"62":{"tf":1.7320508075688772},"66":{"tf":3.3166247903554},"69":{"tf":2.0},"7":{"tf":1.0},"71":{"tf":2.23606797749979},"72":{"tf":2.8284271247461903},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":2.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":2.0},"82":{"tf":2.6457513110645907},"83":{"tf":3.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"'":{"df":2,"docs":{"45":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":3,"docs":{"111":{"tf":1.4142135623730951},"45":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":10,"docs":{"100":{"tf":1.0},"101":{"tf":2.6457513110645907},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"224":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"233":{"tf":1.0},"81":{"tf":1.0}},"t":{"df":20,"docs":{"1":{"tf":1.0},"105":{"tf":1.7320508075688772},"129":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"211":{"tf":2.23606797749979},"212":{"tf":2.23606797749979},"217":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":2.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"266":{"tf":3.872983346207417},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":2,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":5,"docs":{"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"42":{"tf":1.0},"62":{"tf":1.0},"99":{"tf":1.0}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"118":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":58,"docs":{"0":{"tf":2.0},"10":{"tf":1.0},"100":{"tf":3.4641016151377544},"101":{"tf":2.8284271247461903},"104":{"tf":1.4142135623730951},"105":{"tf":2.8284271247461903},"106":{"tf":1.4142135623730951},"107":{"tf":2.23606797749979},"11":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":2.23606797749979},"113":{"tf":2.23606797749979},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"129":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":2.8284271247461903},"17":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"23":{"tf":3.0},"263":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":2.0},"3":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":2.8284271247461903},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":3.1622776601683795},"39":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":2.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"62":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":2.0},"8":{"tf":2.23606797749979},"88":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979},"99":{"tf":3.0}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":17,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"19":{"tf":2.8284271247461903},"2":{"tf":1.0},"20":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":2.23606797749979},"3":{"tf":2.0},"72":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"119":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"209":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"265":{"tf":1.0},"270":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":17,"docs":{"113":{"tf":1.0},"16":{"tf":1.4142135623730951},"20":{"tf":2.0},"207":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.4142135623730951},"223":{"tf":1.0},"228":{"tf":1.0},"246":{"tf":1.0},"265":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"3":{"tf":1.0},"4":{"tf":1.4142135623730951},"69":{"tf":1.0},"87":{"tf":1.0}},"r":{"df":47,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"106":{"tf":2.8284271247461903},"107":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":2.23606797749979},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":1.0},"266":{"tf":1.4142135623730951},"268":{"tf":1.7320508075688772},"272":{"tf":1.0},"6":{"tf":1.0},"87":{"tf":1.0}}}},"i":{"d":{"df":54,"docs":{"10":{"tf":2.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"11":{"tf":1.0},"113":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"2":{"tf":2.449489742783178},"207":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"252":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"38":{"tf":1.0},"4":{"tf":2.449489742783178},"46":{"tf":1.0},"50":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"65":{"tf":2.6457513110645907},"66":{"tf":2.23606797749979},"67":{"tf":1.0},"68":{"tf":2.6457513110645907},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":2.0},"8":{"tf":2.8284271247461903},"87":{"tf":1.4142135623730951},"88":{"tf":2.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}}}},"u":{"b":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"17":{"tf":1.7320508075688772},"8":{"tf":2.6457513110645907},"86":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":8,"docs":{"111":{"tf":1.0},"137":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"265":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{".":{"0":{"df":2,"docs":{"49":{"tf":1.0},"60":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"2":{"3":{"4":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"a":{"b":{"c":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"4":{".":{"0":{"df":0,"docs":{},"x":{"a":{"b":{"c":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{".":{"0":{"df":1,"docs":{"38":{"tf":1.0}}},"2":{".":{"3":{".":{"4":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0}}},"2":{".":{"0":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0}}},"3":{"df":3,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0}}},"4":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}},"5":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"1":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"2":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":35,"docs":{"10":{"tf":1.0},"111":{"tf":2.23606797749979},"113":{"tf":1.7320508075688772},"122":{"tf":2.23606797749979},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":2.0},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.7320508075688772},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":2.0},"63":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":3.0},"66":{"tf":1.4142135623730951},"88":{"tf":1.0},"97":{"tf":2.449489742783178}}}},"t":{"df":9,"docs":{"111":{"tf":1.0},"142":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"198":{"tf":1.0},"43":{"tf":1.0},"8":{"tf":1.0}}}},"′":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"p":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"q":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"q":{"3":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"(":{"df":0,"docs":{},"v":{"0":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"":{"=":{"(":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"":{"=":{"(":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"5":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":0,"docs":{},"":{"=":{"(":{"df":0,"docs":{},"v":{"6":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"7":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"23":{"tf":1.0},"82":{"tf":1.4142135623730951}},"u":{"a":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"209":{"tf":1.7320508075688772},"77":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"]":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{")":{".":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"77":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"24":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"178":{"tf":1.0},"65":{"tf":1.0}}}}}}}}}},"r":{"+":{"1":{"5":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"r":{"3":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"r":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"r":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"}":{"df":0,"docs":{},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"a":{"7":{"df":0,"docs":{},"":{",":{"b":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"b":{"7":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"g":{"df":2,"docs":{"239":{"tf":1.0},"240":{"tf":1.0}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":22,"docs":{"105":{"tf":1.7320508075688772},"129":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":38,"docs":{"124":{"tf":1.0},"142":{"tf":1.7320508075688772},"169":{"tf":2.8284271247461903},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"210":{"tf":2.23606797749979},"211":{"tf":2.23606797749979},"212":{"tf":1.7320508075688772},"213":{"tf":2.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":2.8284271247461903},"221":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.4142135623730951},"34":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"84":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"104":{"tf":1.0},"116":{"tf":1.4142135623730951},"206":{"tf":1.0},"233":{"tf":1.7320508075688772},"238":{"tf":1.0},"245":{"tf":1.0},"68":{"tf":1.0},"85":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"4":{"tf":1.0},"87":{"tf":1.0}}}},"df":1,"docs":{"253":{"tf":1.0}}}}}},"w":{"df":2,"docs":{"33":{"tf":2.449489742783178},"50":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"14":{"tf":1.0}}}}}},"c":{"_":{"1":{"6":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":12,"docs":{"104":{"tf":1.4142135623730951},"15":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"23":{"tf":1.0},"240":{"tf":1.0},"261":{"tf":1.0},"65":{"tf":2.449489742783178},"68":{"tf":3.605551275463989},"82":{"tf":1.4142135623730951}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"111":{"tf":2.23606797749979},"112":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"df":26,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":2.23606797749979},"258":{"tf":3.0},"259":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"44":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":2.449489742783178},"8":{"tf":1.0}},"i":{"df":1,"docs":{"1":{"tf":1.0}}},"–":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"–":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"3":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"105":{"tf":1.0},"130":{"tf":1.0},"142":{"tf":1.0},"19":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"142":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":5,"docs":{"107":{"tf":1.0},"15":{"tf":1.0},"3":{"tf":1.4142135623730951},"37":{"tf":1.0},"90":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":29,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"129":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"69":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":4,"docs":{"103":{"tf":1.0},"138":{"tf":1.0},"143":{"tf":1.4142135623730951},"209":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"0":{"tf":1.0},"38":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":2.0},"220":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":1.7320508075688772},"4":{"tf":1.0},"41":{"tf":1.0},"62":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"87":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"101":{"tf":1.0},"133":{"tf":1.0},"221":{"tf":1.0},"245":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"10":{"tf":1.0},"44":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":35,"docs":{"103":{"tf":3.605551275463989},"104":{"tf":1.0},"106":{"tf":4.47213595499958},"111":{"tf":3.7416573867739413},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"123":{"tf":2.23606797749979},"125":{"tf":1.7320508075688772},"138":{"tf":3.0},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"259":{"tf":1.0},"99":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"103":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.7320508075688772},"55":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"232":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0}}}},"df":2,"docs":{"1":{"tf":1.0},"212":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"v":{"df":9,"docs":{"104":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"169":{"tf":1.4142135623730951},"243":{"tf":1.0},"245":{"tf":1.0}}}},"i":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"130":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"220":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.0},"274":{"tf":1.0},"88":{"tf":1.0}}}},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":2.23606797749979}}}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"178":{"tf":1.0},"65":{"tf":1.0},"77":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}},"df":38,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":2.23606797749979},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":2.0},"259":{"tf":1.0},"261":{"tf":1.7320508075688772},"31":{"tf":1.0},"44":{"tf":1.4142135623730951},"8":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":31,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":2.23606797749979},"108":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":3.7416573867739413},"112":{"tf":2.23606797749979},"117":{"tf":2.6457513110645907},"118":{"tf":2.8284271247461903},"123":{"tf":1.4142135623730951},"126":{"tf":3.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"131":{"tf":2.0},"135":{"tf":1.7320508075688772},"140":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"51":{"tf":2.0},"66":{"tf":2.0},"86":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{".":{"1":{"0":{"df":1,"docs":{"48":{"tf":1.0}}},"6":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"101":{"tf":1.0},"106":{"tf":2.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":2.0},"118":{"tf":2.0},"144":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"246":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":7,"docs":{"111":{"tf":1.0},"13":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"240":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"16":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":2.8284271247461903},"25":{"tf":1.0},"26":{"tf":1.0}}},"o":{"df":1,"docs":{"22":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":41,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":2.0},"118":{"tf":2.6457513110645907},"126":{"tf":2.23606797749979},"128":{"tf":1.0},"129":{"tf":1.0},"17":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"233":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"111":{"tf":1.0},"128":{"tf":1.0},"138":{"tf":1.0},"170":{"tf":1.0},"224":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"58":{"tf":2.8284271247461903},"63":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":2.449489742783178},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"215":{"tf":1.0},"219":{"tf":1.7320508075688772},"224":{"tf":1.0},"228":{"tf":2.23606797749979},"229":{"tf":2.0},"252":{"tf":1.0},"259":{"tf":1.4142135623730951},"263":{"tf":1.0},"271":{"tf":2.6457513110645907},"272":{"tf":1.7320508075688772},"41":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":45,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"119":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"170":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"230":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"272":{"tf":1.0},"274":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":12,"docs":{"2":{"tf":1.0},"206":{"tf":1.4142135623730951},"220":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"258":{"tf":1.0},"68":{"tf":2.23606797749979},"88":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"2":{"tf":1.0},"233":{"tf":1.4142135623730951},"44":{"tf":2.0},"45":{"tf":1.0}}}},"t":{"df":2,"docs":{"120":{"tf":1.0},"42":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"207":{"tf":1.0},"223":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"274":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":17,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.7320508075688772},"111":{"tf":2.449489742783178},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":2.449489742783178},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"144":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"111":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"226":{"tf":1.0},"245":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":11,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":2.23606797749979},"229":{"tf":1.0},"252":{"tf":1.0},"271":{"tf":2.449489742783178},"272":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}}}}}},"t":{"df":55,"docs":{"111":{"tf":1.0},"137":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"31":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"2":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"50":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":53,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.449489742783178},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":1.7320508075688772},"118":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"246":{"tf":2.23606797749979},"247":{"tf":2.0},"25":{"tf":1.0},"252":{"tf":1.0},"265":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.4142135623730951},"55":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.449489742783178},"9":{"tf":1.0},"97":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"35":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"111":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":19,"docs":{"104":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"66":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}},"e":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"111":{"tf":1.0},"117":{"tf":1.0},"138":{"tf":1.0}}},"t":{"df":2,"docs":{"224":{"tf":1.0},"31":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"a":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":1,"docs":{"268":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":29,"docs":{"106":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.6457513110645907},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":2.0},"137":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"146":{"tf":2.23606797749979},"147":{"tf":1.0},"154":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"243":{"tf":1.7320508075688772},"39":{"tf":1.0},"45":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"68":{"tf":1.0},"84":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0}}}}},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"0":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"1":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"2":{",":{"df":0,"docs":{},"i":{"df":2,"docs":{"129":{"tf":1.0},"268":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}}},"m":{"'":{"df":2,"docs":{"262":{"tf":1.0},"263":{"tf":1.0}}},"df":13,"docs":{"116":{"tf":1.7320508075688772},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"260":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"269":{"tf":1.0},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"75":{"tf":1.0}}}}},"df":29,"docs":{"100":{"tf":1.0},"105":{"tf":2.23606797749979},"107":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":1.0},"2":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":2.23606797749979},"232":{"tf":2.23606797749979},"233":{"tf":2.23606797749979},"240":{"tf":1.7320508075688772},"243":{"tf":1.0},"245":{"tf":3.1622776601683795},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"41":{"tf":2.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"75":{"tf":3.0},"8":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":2.0},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"19":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951}}}}}},"n":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":10,"docs":{"166":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"240":{"tf":2.449489742783178},"244":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"'":{"df":1,"docs":{"251":{"tf":1.0}}},"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"2":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"6":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":67,"docs":{"103":{"tf":1.0},"104":{"tf":2.449489742783178},"105":{"tf":3.0},"106":{"tf":4.0},"110":{"tf":1.7320508075688772},"111":{"tf":4.123105625617661},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":3.3166247903554},"118":{"tf":2.8284271247461903},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":2.449489742783178},"126":{"tf":3.1622776601683795},"128":{"tf":1.0},"129":{"tf":3.872983346207417},"130":{"tf":2.449489742783178},"131":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"211":{"tf":2.23606797749979},"213":{"tf":2.449489742783178},"217":{"tf":2.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"223":{"tf":3.1622776601683795},"226":{"tf":1.0},"227":{"tf":2.0},"231":{"tf":1.4142135623730951},"233":{"tf":2.6457513110645907},"234":{"tf":4.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"244":{"tf":2.23606797749979},"245":{"tf":3.0},"246":{"tf":3.0},"247":{"tf":2.8284271247461903},"250":{"tf":2.449489742783178},"251":{"tf":2.449489742783178},"252":{"tf":2.0},"254":{"tf":2.6457513110645907},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.7320508075688772},"259":{"tf":2.0},"261":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":3.1622776601683795},"268":{"tf":2.23606797749979},"87":{"tf":1.7320508075688772},"97":{"tf":1.0}}}},"p":{"c":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":9,"docs":{"113":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":24,"docs":{"105":{"tf":1.7320508075688772},"112":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":2.23606797749979},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"211":{"tf":2.23606797749979},"212":{"tf":2.23606797749979},"217":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.7320508075688772},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":3.872983346207417},"267":{"tf":1.0},"271":{"tf":1.7320508075688772},"32":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"37":{"tf":1.0},"66":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"11":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"r":{")":{"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"3":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{",":{"d":{")":{")":{"df":0,"docs":{},"r":{"df":0,"docs":{},"′":{"df":0,"docs":{},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{",":{"d":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"0":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":9,"docs":{"161":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":23,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"126":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.4142135623730951},"217":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.4142135623730951},"258":{"tf":2.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},",":{".":{".":{".":{",":{"df":0,"docs":{},"s":{"1":{"4":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},".":{".":{".":{"df":0,"docs":{},"s":{"1":{"5":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"0":{"df":3,"docs":{"212":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"263":{"tf":1.0}}},"1":{"df":3,"docs":{"212":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"263":{"tf":1.0}}},"2":{"4":{"8":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"=":{"0":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"1":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"3":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"2":{"4":{"8":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"2":{"4":{"8":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"":{"=":{"0":{"df":2,"docs":{"159":{"tf":1.0},"165":{"tf":1.0}}},"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"′":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"166":{"tf":1.0},"175":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"182":{"tf":1.0}}},"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"2":{"df":4,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"2":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"+":{"1":{")":{"=":{"0":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{")":{"=":{"0":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"=":{"0":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"158":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"184":{"tf":1.0},"190":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"⋅":{"(":{"df":0,"docs":{},"f":{"a":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"1":{"2":{"df":1,"docs":{"204":{"tf":1.0}},"":{"+":{"1":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":3,"docs":{"212":{"tf":1.0},"218":{"tf":1.0},"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"s":{"1":{"2":{"df":0,"docs":{},"":{"+":{"2":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"5":{"df":2,"docs":{"131":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951}}},"df":10,"docs":{"162":{"tf":1.0},"163":{"tf":1.0},"212":{"tf":1.4142135623730951},"217":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.4142135623730951},"258":{"tf":2.0},"259":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"s":{"1":{"5":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"0":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"212":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"⋅":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"′":{"df":0,"docs":{},"":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":7,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"1":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"≤":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}}}}},"2":{"df":5,"docs":{"223":{"tf":1.4142135623730951},"227":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0}},"":{"=":{"1":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{")":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"∗":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"−":{"df":0,"docs":{},"s":{"=":{"0":{"df":1,"docs":{"249":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"3":{"df":1,"docs":{"227":{"tf":1.0}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"∗":{"2":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{"+":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"=":{"0":{"df":1,"docs":{"249":{"tf":1.0}}},"1":{"df":1,"docs":{"249":{"tf":1.0}}},"df":0,"docs":{}},"_":{"1":{"df":1,"docs":{"259":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":46,"docs":{"101":{"tf":1.0},"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"127":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.4142135623730951},"150":{"tf":1.0},"184":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.7320508075688772},"233":{"tf":1.7320508075688772},"240":{"tf":2.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":2.0},"249":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":2.0},"256":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":2.6457513110645907},"259":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"267":{"tf":1.0},"271":{"tf":2.0},"272":{"tf":1.4142135623730951},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"60":{"tf":2.23606797749979},"89":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":37,"docs":{"133":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"243":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"202":{"tf":1.0},"203":{"tf":1.0},"24":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}},"c":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"110":{"tf":1.0},"27":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"138":{"tf":1.0},"274":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"141":{"tf":1.0},"196":{"tf":1.7320508075688772},"64":{"tf":1.0}}}}}}},"df":3,"docs":{"23":{"tf":1.0},"248":{"tf":1.0},"65":{"tf":2.449489742783178}},"e":{"c":{"df":2,"docs":{"20":{"tf":2.8284271247461903},"21":{"tf":2.0}},"o":{"df":0,"docs":{},"n":{"d":{"df":25,"docs":{"105":{"tf":1.7320508075688772},"108":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"211":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"245":{"tf":1.7320508075688772},"254":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.7320508075688772},"2":{"tf":1.0},"8":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":36,"docs":{"100":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":2.23606797749979},"123":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"217":{"tf":1.0},"219":{"tf":1.0},"232":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"25":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"37":{"tf":1.0},"4":{"tf":1.7320508075688772},"42":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"1":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"266":{"tf":1.4142135623730951},"274":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"17":{"tf":1.0},"209":{"tf":1.0},"62":{"tf":1.0},"71":{"tf":1.0}},"n":{"df":4,"docs":{"138":{"tf":1.0},"20":{"tf":1.0},"223":{"tf":1.0},"89":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"209":{"tf":1.4142135623730951},"221":{"tf":1.0},"273":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"226":{"tf":1.0},"233":{"tf":1.4142135623730951},"245":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0},"47":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"224":{"tf":1.0}}},"df":25,"docs":{"104":{"tf":1.7320508075688772},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"169":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.7320508075688772},"223":{"tf":1.7320508075688772},"224":{"tf":2.0},"226":{"tf":1.7320508075688772},"227":{"tf":4.358898943540674},"230":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":3.4641016151377544},"242":{"tf":1.4142135623730951},"245":{"tf":1.0},"249":{"tf":1.7320508075688772},"251":{"tf":1.0},"258":{"tf":2.0},"259":{"tf":1.0},"262":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"168":{"tf":1.0},"195":{"tf":1.0},"240":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"63":{"tf":1.0},"90":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"d":{"df":7,"docs":{"116":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"245":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.0}}},"t":{"df":9,"docs":{"116":{"tf":1.0},"219":{"tf":1.4142135623730951},"224":{"tf":1.0},"228":{"tf":2.0},"229":{"tf":1.0},"245":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":2.23606797749979},"87":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"2":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.0},"36":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":18,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"18":{"tf":1.0},"246":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"88":{"tf":1.0},"97":{"tf":2.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"104":{"tf":2.0},"106":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.4142135623730951},"220":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"35":{"tf":1.0},"69":{"tf":1.0}}}},"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"v":{"df":4,"docs":{"103":{"tf":1.0},"142":{"tf":1.0},"245":{"tf":1.0},"6":{"tf":1.0}}}},"t":{"df":104,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.23606797749979},"105":{"tf":2.0},"106":{"tf":3.605551275463989},"11":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":2.6457513110645907},"113":{"tf":2.23606797749979},"114":{"tf":1.4142135623730951},"116":{"tf":2.8284271247461903},"117":{"tf":2.0},"118":{"tf":2.0},"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":2.449489742783178},"124":{"tf":2.0},"125":{"tf":2.23606797749979},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":2.449489742783178},"132":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"138":{"tf":2.23606797749979},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"223":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":2.449489742783178},"234":{"tf":4.358898943540674},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"242":{"tf":2.0},"243":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":2.0},"258":{"tf":3.0},"259":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"274":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"100":{"tf":1.0},"246":{"tf":1.4142135623730951}}},"r":{"df":9,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"145":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"33":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"88":{"tf":1.0}}}}}},"h":{"a":{"2":{"5":{"6":{"df":2,"docs":{"72":{"tf":1.0},"80":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.0},"230":{"tf":1.0},"245":{"tf":1.0},"69":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":45,"docs":{"127":{"tf":1.0},"130":{"tf":2.6457513110645907},"131":{"tf":2.449489742783178},"132":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"135":{"tf":2.6457513110645907},"137":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":2.23606797749979},"147":{"tf":3.0},"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"81":{"tf":1.0},"84":{"tf":4.123105625617661}}}},"p":{"df":1,"docs":{"2":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":4,"docs":{"100":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"w":{"df":2,"docs":{"138":{"tf":1.0},"169":{"tf":1.0}},"n":{"df":15,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":2.449489742783178},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"138":{"tf":1.0},"246":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"272":{"tf":1.0},"89":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"i":{"+":{"1":{"2":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"8":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"187":{"tf":1.0},"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"162":{"tf":1.0},"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"208":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":2.0},"245":{"tf":3.1622776601683795},"269":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"259":{"tf":1.0},"263":{"tf":1.0}}}},"df":1,"docs":{"238":{"tf":1.0}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"221":{"tf":1.0}}}}}}},"df":13,"docs":{"111":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951},"258":{"tf":1.0},"33":{"tf":1.0},"81":{"tf":1.0}}},"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":2.0},"118":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.4142135623730951},"44":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"115":{"tf":1.0},"147":{"tf":1.0},"184":{"tf":1.0},"210":{"tf":1.0},"257":{"tf":1.0},"43":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"112":{"tf":1.0},"18":{"tf":1.0},"212":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.4142135623730951},"33":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"211":{"tf":1.0},"254":{"tf":1.0}}}}},"i":{"c":{"df":3,"docs":{"170":{"tf":1.0},"222":{"tf":1.0},"247":{"tf":1.0}}},"df":6,"docs":{"111":{"tf":1.4142135623730951},"130":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"35":{"tf":1.0},"87":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":24,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"33":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"240":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":44,"docs":{"103":{"tf":1.4142135623730951},"105":{"tf":2.449489742783178},"11":{"tf":1.0},"111":{"tf":3.1622776601683795},"112":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"134":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"20":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"219":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"236":{"tf":1.4142135623730951},"239":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":2.23606797749979},"25":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":2.23606797749979},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"271":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.0},"97":{"tf":3.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"257":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":8,"docs":{"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":2.0},"209":{"tf":1.7320508075688772},"70":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"+":{"1":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"187":{"tf":1.0},"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":6,"docs":{"104":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"49":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951}}},"w":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.0},"232":{"tf":1.0},"266":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"246":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"105":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"211":{"tf":1.0},"23":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"19":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":7,"docs":{"2":{"tf":1.0},"209":{"tf":1.4142135623730951},"23":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"3":{"tf":1.0},"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"232":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0}}}}},"p":{"=":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":7,"docs":{"130":{"tf":1.0},"2":{"tf":1.0},"221":{"tf":1.0},"25":{"tf":1.0},"266":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":2.23606797749979}}}},"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":25,"docs":{"101":{"tf":3.1622776601683795},"103":{"tf":2.0},"105":{"tf":2.0},"106":{"tf":2.6457513110645907},"107":{"tf":1.4142135623730951},"111":{"tf":5.291502622129181},"112":{"tf":3.1622776601683795},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"122":{"tf":3.0},"123":{"tf":2.23606797749979},"124":{"tf":2.0},"125":{"tf":1.7320508075688772},"126":{"tf":2.23606797749979},"143":{"tf":1.0},"2":{"tf":1.0},"41":{"tf":1.0},"97":{"tf":2.23606797749979},"99":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"10":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":2.449489742783178}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"103":{"tf":1.0},"120":{"tf":2.23606797749979},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"220":{"tf":1.4142135623730951},"228":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"44":{"tf":1.4142135623730951},"68":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":26,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"16":{"tf":1.0},"209":{"tf":1.0},"220":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"232":{"tf":1.0},"233":{"tf":1.0},"244":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.7320508075688772},"36":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":35,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"120":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":2.23606797749979},"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"226":{"tf":1.0},"261":{"tf":1.0},"270":{"tf":1.4142135623730951},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":3.7416573867739413},"88":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"2":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"101":{"tf":2.23606797749979},"103":{"tf":1.0},"106":{"tf":2.23606797749979},"109":{"tf":1.7320508075688772},"112":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"93":{"tf":2.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"=":{"0":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"′":{"=":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"δ":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"33":{"tf":1.0}}}},"l":{"df":2,"docs":{"1":{"tf":1.0},"33":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"75":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"4":{")":{",":{"a":{"d":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}}}},"df":147,"docs":{"10":{"tf":2.0},"101":{"tf":1.4142135623730951},"105":{"tf":2.449489742783178},"106":{"tf":3.4641016151377544},"109":{"tf":1.0},"110":{"tf":3.872983346207417},"111":{"tf":2.0},"112":{"tf":3.872983346207417},"113":{"tf":4.123105625617661},"114":{"tf":1.7320508075688772},"117":{"tf":4.0},"118":{"tf":2.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":4.0},"128":{"tf":3.0},"129":{"tf":2.449489742783178},"130":{"tf":3.1622776601683795},"131":{"tf":3.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":2.6457513110645907},"135":{"tf":1.4142135623730951},"137":{"tf":3.3166247903554},"139":{"tf":4.58257569495584},"140":{"tf":2.449489742783178},"141":{"tf":4.0},"142":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"150":{"tf":2.0},"151":{"tf":1.7320508075688772},"152":{"tf":2.0},"153":{"tf":1.7320508075688772},"154":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":1.7320508075688772},"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"166":{"tf":2.0},"167":{"tf":2.8284271247461903},"17":{"tf":2.0},"171":{"tf":1.7320508075688772},"172":{"tf":2.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"183":{"tf":1.7320508075688772},"184":{"tf":3.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772},"190":{"tf":2.6457513110645907},"191":{"tf":2.449489742783178},"192":{"tf":2.0},"193":{"tf":2.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":2.23606797749979},"197":{"tf":2.23606797749979},"198":{"tf":2.449489742783178},"199":{"tf":1.0},"200":{"tf":2.0},"201":{"tf":2.0},"202":{"tf":2.23606797749979},"203":{"tf":2.0},"204":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"206":{"tf":2.23606797749979},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"209":{"tf":3.1622776601683795},"215":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.7320508075688772},"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":1.7320508075688772},"24":{"tf":1.0},"245":{"tf":1.7320508075688772},"252":{"tf":1.0},"259":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"28":{"tf":2.6457513110645907},"31":{"tf":2.0},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.0},"45":{"tf":2.8284271247461903},"47":{"tf":1.0},"49":{"tf":2.23606797749979},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"6":{"tf":3.0},"60":{"tf":5.0990195135927845},"62":{"tf":2.6457513110645907},"63":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":5.0990195135927845},"66":{"tf":4.123105625617661},"68":{"tf":1.0},"74":{"tf":2.8284271247461903},"75":{"tf":2.449489742783178},"79":{"tf":2.0},"8":{"tf":2.449489742783178},"80":{"tf":2.0},"81":{"tf":2.23606797749979},"82":{"tf":3.872983346207417},"83":{"tf":4.69041575982343},"84":{"tf":3.0},"85":{"tf":1.7320508075688772},"86":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"9":{"tf":2.23606797749979},"93":{"tf":2.0},"94":{"tf":2.8284271247461903},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"32":{"tf":1.4142135623730951},"38":{"tf":1.0},"69":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"258":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":9,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"274":{"tf":4.123105625617661},"4":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":95,"docs":{"105":{"tf":2.23606797749979},"107":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":1.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":2.0},"127":{"tf":1.0},"137":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":2.23606797749979},"233":{"tf":1.0},"234":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"245":{"tf":2.0},"261":{"tf":1.0},"271":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"74":{"tf":1.7320508075688772},"8":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}}}},"t":{"df":1,"docs":{"16":{"tf":1.4142135623730951}},"e":{"df":43,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":2.23606797749979},"106":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":2.23606797749979},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"150":{"tf":1.4142135623730951},"172":{"tf":1.0},"18":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":2.23606797749979},"233":{"tf":2.449489742783178},"236":{"tf":2.449489742783178},"237":{"tf":2.0},"238":{"tf":2.6457513110645907},"239":{"tf":2.6457513110645907},"24":{"tf":1.0},"240":{"tf":2.6457513110645907},"243":{"tf":1.4142135623730951},"244":{"tf":2.23606797749979},"245":{"tf":3.3166247903554},"28":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"2":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":3,"docs":{"255":{"tf":1.0},"256":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"1":{"tf":1.0},"68":{"tf":1.0}}}},"y":{"df":6,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"217":{"tf":1.0},"249":{"tf":1.0},"262":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"6":{"4":{"df":2,"docs":{"72":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"f":{"4":{"df":2,"docs":{"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"76":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"3":{"df":2,"docs":{"72":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":2,"docs":{"72":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"u":{"6":{"4":{"df":4,"docs":{"38":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"71":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"72":{"tf":1.0},"85":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"72":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"255":{"tf":1.0}}}},"p":{"df":16,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":2.449489742783178},"112":{"tf":2.23606797749979},"130":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":2.23606797749979},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"242":{"tf":1.0},"267":{"tf":1.0},"99":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"110":{"tf":1.0},"137":{"tf":1.0},"212":{"tf":1.0},"255":{"tf":1.0},"63":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"6":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"10":{"tf":1.7320508075688772},"114":{"tf":1.0},"128":{"tf":1.0},"17":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"265":{"tf":1.0},"267":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"6":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":2.23606797749979},"79":{"tf":2.0},"80":{"tf":2.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"219":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":2.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":16,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"17":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"233":{"tf":1.0},"255":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"16":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"52":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"34":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":9,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"137":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"262":{"tf":1.0},"37":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"82":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"65":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"h":{"df":21,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"121":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.7320508075688772},"233":{"tf":1.0},"245":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"29":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"170":{"tf":1.0},"199":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":4,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"207":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"17":{"tf":2.23606797749979},"2":{"tf":1.4142135623730951},"55":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"138":{"tf":1.0},"2":{"tf":2.449489742783178},"212":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"270":{"tf":1.0},"3":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"39":{"tf":1.4142135623730951},"7":{"tf":1.0},"88":{"tf":1.0}}}},"s":{"df":2,"docs":{"239":{"tf":1.0},"240":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":26,"docs":{"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"114":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"218":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"250":{"tf":2.0},"254":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":2.0},"264":{"tf":1.0},"9":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"p":{".":{"1":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"w":{"df":3,"docs":{"139":{"tf":1.0},"189":{"tf":1.7320508075688772},"60":{"tf":1.0}}}},"df":11,"docs":{"139":{"tf":1.0},"185":{"tf":2.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"60":{"tf":2.6457513110645907}},"w":{".":{"1":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":2,"docs":{"139":{"tf":1.0},"187":{"tf":1.7320508075688772}}},"3":{"df":2,"docs":{"139":{"tf":1.0},"188":{"tf":1.7320508075688772}}},"df":3,"docs":{"139":{"tf":1.0},"186":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951}}}},"y":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"246":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"33":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":2.0},"144":{"tf":1.0},"220":{"tf":1.0},"229":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":2.6457513110645907},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"64":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":3.0},"99":{"tf":1.0}},"l":{".":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"245":{"tf":1.0}}},"df":16,"docs":{"111":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"149":{"tf":1.4142135623730951},"169":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"4":{"tf":1.4142135623730951},"72":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"c":{"'":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"⋅":{"(":{"df":0,"docs":{},"z":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"1":{"6":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"2":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{")":{")":{"=":{"0":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"0":{"df":4,"docs":{"105":{"tf":1.7320508075688772},"129":{"tf":1.0},"131":{"tf":1.0},"170":{"tf":1.0}},"":{",":{"df":0,"docs":{},"t":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"df":5,"docs":{"105":{"tf":1.4142135623730951},"129":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"170":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"t":{"4":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":6,"docs":{"105":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"170":{"tf":1.0}}},"3":{"df":1,"docs":{"170":{"tf":1.0}}},"5":{"df":1,"docs":{"105":{"tf":1.0}}},"6":{"df":1,"docs":{"105":{"tf":1.0}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"77":{"tf":2.0}}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":51,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":6.244997998398398},"106":{"tf":5.291502622129181},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":3.0},"111":{"tf":4.898979485566356},"112":{"tf":4.358898943540674},"113":{"tf":2.6457513110645907},"115":{"tf":2.0},"117":{"tf":4.123105625617661},"118":{"tf":4.123105625617661},"119":{"tf":1.4142135623730951},"126":{"tf":4.358898943540674},"128":{"tf":1.0},"129":{"tf":3.4641016151377544},"130":{"tf":2.8284271247461903},"131":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":2.8284271247461903},"17":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.4142135623730951},"221":{"tf":1.0},"230":{"tf":3.0},"231":{"tf":2.23606797749979},"233":{"tf":3.0},"244":{"tf":1.0},"245":{"tf":3.3166247903554},"246":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"248":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":3.1622776601683795},"265":{"tf":1.7320508075688772},"267":{"tf":2.8284271247461903},"268":{"tf":2.0},"269":{"tf":3.1622776601683795},"50":{"tf":1.0},"55":{"tf":1.4142135623730951},"67":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"21":{"tf":1.0},"55":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.449489742783178}},"n":{"df":2,"docs":{"101":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"13":{"tf":1.0},"15":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"24":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"35":{"tf":1.4142135623730951},"7":{"tf":1.0},"71":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"101":{"tf":1.0},"13":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0}}}}},"df":5,"docs":{"256":{"tf":1.4142135623730951},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0},"64":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"104":{"tf":1.0},"116":{"tf":1.7320508075688772},"118":{"tf":2.23606797749979},"127":{"tf":1.0},"18":{"tf":1.0},"206":{"tf":1.0},"34":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"37":{"tf":1.0},"45":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"274":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"69":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"t":{"'":{"df":3,"docs":{"271":{"tf":1.0},"272":{"tf":1.0},"55":{"tf":1.0}}},":":{"1":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"111":{"tf":1.0},"184":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"230":{"tf":1.0},"71":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"116":{"tf":1.0},"223":{"tf":1.7320508075688772},"262":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}},"g":{"df":3,"docs":{"2":{"tf":1.0},"24":{"tf":1.4142135623730951},"60":{"tf":1.0}}}},"r":{"d":{"df":10,"docs":{"105":{"tf":1.4142135623730951},"112":{"tf":1.0},"138":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"23":{"tf":1.0},"245":{"tf":1.4142135623730951},"35":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"215":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0},"270":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"111":{"tf":1.0},"212":{"tf":1.0}},"t":{"df":6,"docs":{"105":{"tf":1.7320508075688772},"111":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.0},"232":{"tf":1.0},"266":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":9,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"123":{"tf":1.0},"143":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.4142135623730951},"42":{"tf":1.0},"6":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"23":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.0},"249":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}}}}}}}}},"u":{"df":77,"docs":{"100":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":2.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"138":{"tf":2.449489742783178},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"147":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"238":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.7320508075688772},"271":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.7320508075688772},"7":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":2.0},"98":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":1,"docs":{"238":{"tf":1.0}},"e":{"df":2,"docs":{"233":{"tf":1.0},"245":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":25,"docs":{"105":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"129":{"tf":1.0},"19":{"tf":3.0},"20":{"tf":2.449489742783178},"209":{"tf":1.0},"21":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"226":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951},"263":{"tf":1.0},"267":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":6,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"211":{"tf":1.0},"240":{"tf":1.4142135623730951},"245":{"tf":1.0},"65":{"tf":1.0},"87":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"116":{"tf":1.0}}},"l":{"df":5,"docs":{"16":{"tf":1.0},"22":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0}}}},"p":{"df":71,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":3.3166247903554},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.6457513110645907},"114":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"42":{"tf":1.7320508075688772},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":3.1622776601683795},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":2.449489742783178},"68":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"93":{"tf":2.0},"94":{"tf":2.8284271247461903},"98":{"tf":2.23606797749979}}},"t":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"106":{"tf":1.0},"111":{"tf":2.0},"138":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"258":{"tf":1.0},"37":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":49,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":2.0},"128":{"tf":1.0},"136":{"tf":1.7320508075688772},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":2.449489742783178},"218":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":3.872983346207417},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"230":{"tf":1.0},"233":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"258":{"tf":2.23606797749979},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"265":{"tf":2.8284271247461903},"266":{"tf":3.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772}}},"k":{"df":16,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"117":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.4142135623730951},"260":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"89":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"19":{"tf":1.0},"258":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":58,"docs":{"113":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"223":{"tf":2.6457513110645907},"231":{"tf":1.4142135623730951},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"41":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":24,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"17":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":2.0},"220":{"tf":1.0},"239":{"tf":2.23606797749979},"240":{"tf":2.449489742783178},"33":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":3.1622776601683795},"75":{"tf":3.1622776601683795},"77":{"tf":1.0},"8":{"tf":2.449489742783178},"88":{"tf":1.0},"90":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"255":{"tf":1.0}}}}},"df":4,"docs":{"213":{"tf":1.0},"35":{"tf":1.0},"66":{"tf":1.0},"98":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"223":{"tf":1.0},"252":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"42":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"106":{"tf":3.605551275463989},"111":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"135":{"tf":1.4142135623730951},"17":{"tf":1.0},"77":{"tf":1.7320508075688772}},"e":{".":{"2":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}},"n":{"df":4,"docs":{"112":{"tf":1.0},"138":{"tf":1.0},"169":{"tf":1.0},"36":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"233":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"'":{"df":1,"docs":{"175":{"tf":1.0}}},"df":64,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"115":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"148":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":2.0},"227":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":2.8284271247461903},"259":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"269":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":3.872983346207417},"83":{"tf":4.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":10,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.0},"234":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"266":{"tf":1.0},"270":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}}}},"←":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"u":{"3":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"2":{"a":{"d":{"d":{"3":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772}}},"df":2,"docs":{"142":{"tf":1.0},"173":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"140":{"tf":1.0},"179":{"tf":1.7320508075688772},"248":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"1":{"df":1,"docs":{"56":{"tf":1.0}}},"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":2,"docs":{"142":{"tf":1.0},"172":{"tf":1.7320508075688772}}},"df":1,"docs":{"56":{"tf":1.0}},"w":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{".":{"b":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"27":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"57":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"28":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"u":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"142":{"tf":1.0},"178":{"tf":1.7320508075688772}}}}},"df":10,"docs":{"140":{"tf":1.4142135623730951},"142":{"tf":3.1622776601683795},"168":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.0},"55":{"tf":1.0},"81":{"tf":1.0}},"m":{"a":{"d":{"d":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"142":{"tf":1.0},"176":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"3":{"df":1,"docs":{"57":{"tf":1.0}}},"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"d":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"56":{"tf":1.0}}}}}},"u":{"b":{"df":2,"docs":{"142":{"tf":1.0},"175":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}},"w":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"57":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"3":{"df":1,"docs":{"57":{"tf":1.0}}},"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"d":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"140":{"tf":1.0},"180":{"tf":1.7320508075688772},"248":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0}}}}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"65":{"tf":1.0},"81":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"1":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"+":{"df":0,"docs":{},"α":{"4":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"z":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"d":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"213":{"tf":1.0},"252":{"tf":1.7320508075688772},"263":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"b":{"df":0,"docs":{},"h":{"+":{"df":0,"docs":{},"α":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"5":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":1,"docs":{"252":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"tf":1.4142135623730951}},"":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{",":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{",":{"2":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"4":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"+":{"df":0,"docs":{},"v":{"df":2,"docs":{"200":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"113":{"tf":2.23606797749979},"167":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"238":{"tf":1.0},"259":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"55":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951}},"e":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"82":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"83":{"tf":1.0}},"z":{"df":1,"docs":{"83":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"83":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"242":{"tf":1.0},"244":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"55":{"tf":1.0},"57":{"tf":3.605551275463989},"58":{"tf":2.23606797749979},"59":{"tf":2.449489742783178},"77":{"tf":1.0},"81":{"tf":1.0}}}}},"r":{"df":9,"docs":{"135":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"19":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"38":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"82":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":2,"docs":{"24":{"tf":1.0},"31":{"tf":2.449489742783178}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":32,"docs":{"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"252":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"272":{"tf":1.0},"89":{"tf":1.0},"99":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"234":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"87":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":7,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"127":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":8,"docs":{"168":{"tf":1.0},"2":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"120":{"tf":1.0},"23":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"139":{"tf":1.0},"143":{"tf":2.8284271247461903}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":22,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"232":{"tf":2.23606797749979},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"240":{"tf":1.7320508075688772},"243":{"tf":1.0},"245":{"tf":2.23606797749979},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":17,"docs":{"105":{"tf":1.4142135623730951},"111":{"tf":2.0},"138":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"238":{"tf":1.0},"258":{"tf":1.7320508075688772},"6":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"77":{"tf":1.0},"97":{"tf":2.0},"98":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"266":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"11":{"tf":1.0},"32":{"tf":1.0},"71":{"tf":1.0}}}},"df":136,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":1.0},"105":{"tf":2.0},"106":{"tf":2.449489742783178},"107":{"tf":1.0},"11":{"tf":2.0},"111":{"tf":3.0},"113":{"tf":2.0},"115":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":1.0},"118":{"tf":1.7320508075688772},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":3.0},"14":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"147":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"199":{"tf":1.0},"2":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"210":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":1.0},"220":{"tf":2.0},"223":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":2.449489742783178},"233":{"tf":3.4641016151377544},"234":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":2.0},"243":{"tf":1.0},"245":{"tf":3.4641016151377544},"246":{"tf":1.4142135623730951},"247":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.449489742783178},"266":{"tf":1.7320508075688772},"267":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":2.0},"38":{"tf":2.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":2.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"77":{"tf":2.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.872983346207417},"87":{"tf":1.7320508075688772},"88":{"tf":3.0},"89":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.0},"99":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"u":{"6":{"4":{"df":2,"docs":{"38":{"tf":1.4142135623730951},"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"97":{"tf":1.0}}},"df":11,"docs":{"17":{"tf":1.0},"2":{"tf":1.7320508075688772},"23":{"tf":1.7320508075688772},"32":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"69":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"d":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"72":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"52":{"tf":1.0}}}}},"v":{"0":{".":{"7":{"df":2,"docs":{"1":{"tf":1.0},"11":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"258":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"v":{"7":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"3":{"df":3,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"7":{"df":1,"docs":{"130":{"tf":1.0}}},"8":{"df":1,"docs":{"130":{"tf":1.0}}},"df":3,"docs":{"126":{"tf":1.0},"130":{"tf":1.0},"258":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"2":{"df":3,"docs":{"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"258":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"258":{"tf":1.0}}},"8":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"v":{"1":{"5":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":2,"docs":{"200":{"tf":1.0},"202":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"264":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"1":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"1":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":2,"docs":{"201":{"tf":1.0},"203":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"245":{"tf":1.0}},"l":{"df":2,"docs":{"166":{"tf":1.4142135623730951},"255":{"tf":2.6457513110645907}},"i":{"d":{"df":13,"docs":{"107":{"tf":1.0},"170":{"tf":2.449489742783178},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"25":{"tf":1.0},"60":{"tf":2.8284271247461903},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":157,"docs":{"10":{"tf":2.0},"100":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":3.605551275463989},"105":{"tf":4.0},"106":{"tf":4.795831523312719},"110":{"tf":1.7320508075688772},"111":{"tf":5.477225575051661},"113":{"tf":2.0},"114":{"tf":2.8284271247461903},"116":{"tf":4.123105625617661},"117":{"tf":3.3166247903554},"118":{"tf":3.605551275463989},"120":{"tf":3.0},"121":{"tf":2.0},"122":{"tf":2.0},"123":{"tf":3.0},"124":{"tf":2.23606797749979},"126":{"tf":4.58257569495584},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":3.7416573867739413},"130":{"tf":2.8284271247461903},"131":{"tf":3.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":2.449489742783178},"138":{"tf":2.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.4142135623730951},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":2.0},"17":{"tf":2.0},"170":{"tf":2.23606797749979},"171":{"tf":2.0},"172":{"tf":1.7320508075688772},"173":{"tf":2.0},"174":{"tf":2.0},"175":{"tf":2.0},"176":{"tf":2.23606797749979},"177":{"tf":2.23606797749979},"178":{"tf":1.7320508075688772},"179":{"tf":2.0},"180":{"tf":2.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"199":{"tf":2.0},"200":{"tf":2.23606797749979},"201":{"tf":2.23606797749979},"202":{"tf":2.0},"203":{"tf":2.23606797749979},"204":{"tf":2.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"207":{"tf":2.23606797749979},"208":{"tf":2.8284271247461903},"209":{"tf":3.1622776601683795},"210":{"tf":1.0},"211":{"tf":4.242640687119285},"212":{"tf":3.0},"213":{"tf":2.23606797749979},"216":{"tf":1.4142135623730951},"217":{"tf":2.8284271247461903},"218":{"tf":1.7320508075688772},"219":{"tf":2.23606797749979},"224":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"23":{"tf":2.0},"231":{"tf":2.449489742783178},"232":{"tf":2.0},"233":{"tf":3.1622776601683795},"234":{"tf":2.449489742783178},"238":{"tf":1.4142135623730951},"239":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":2.8284271247461903},"244":{"tf":1.0},"245":{"tf":3.7416573867739413},"246":{"tf":3.4641016151377544},"247":{"tf":2.8284271247461903},"250":{"tf":2.6457513110645907},"251":{"tf":2.23606797749979},"252":{"tf":2.0},"253":{"tf":1.7320508075688772},"254":{"tf":3.605551275463989},"255":{"tf":2.23606797749979},"256":{"tf":2.23606797749979},"257":{"tf":2.23606797749979},"258":{"tf":3.7416573867739413},"259":{"tf":3.4641016151377544},"261":{"tf":2.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":2.23606797749979},"267":{"tf":2.449489742783178},"268":{"tf":2.23606797749979},"271":{"tf":2.0},"272":{"tf":3.0},"29":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.7320508075688772},"49":{"tf":2.449489742783178},"50":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.7320508075688772},"60":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":2.449489742783178},"64":{"tf":1.0},"65":{"tf":2.8284271247461903},"68":{"tf":2.0},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":3.872983346207417},"77":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":2.449489742783178},"80":{"tf":1.0},"81":{"tf":2.23606797749979},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.872983346207417},"85":{"tf":1.0},"87":{"tf":2.0},"89":{"tf":1.4142135623730951},"97":{"tf":2.23606797749979},"98":{"tf":2.8284271247461903},"99":{"tf":2.23606797749979}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":26,"docs":{"103":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"219":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}},"df":1,"docs":{"169":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"135":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"16":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"72":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}},"b":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"c":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"d":{"df":1,"docs":{"245":{"tf":1.0}}},"df":12,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":3.1622776601683795},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"66":{"tf":2.0},"68":{"tf":2.8284271247461903}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"266":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"111":{"tf":1.0},"144":{"tf":1.0},"18":{"tf":1.0},"210":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"262":{"tf":1.0},"274":{"tf":1.0},"33":{"tf":1.0},"68":{"tf":1.0}},"f":{"df":10,"docs":{"100":{"tf":1.0},"19":{"tf":1.4142135623730951},"207":{"tf":1.0},"232":{"tf":2.6457513110645907},"233":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"35":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0}},"i":{"df":42,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":2.0},"107":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"22":{"tf":1.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.7320508075688772},"245":{"tf":1.0},"252":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":2,"docs":{"132":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"11":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}}}},"h":{"df":1,"docs":{"245":{"tf":1.0}},"i":{"df":0,"docs":{},"":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"3":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"t":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"":{"=":{"2":{"3":{"2":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"a":{"df":34,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":2.23606797749979},"126":{"tf":1.4142135623730951},"148":{"tf":1.0},"15":{"tf":1.4142135623730951},"169":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"259":{"tf":1.0},"267":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"42":{"tf":2.449489742783178},"44":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":2.449489742783178},"75":{"tf":1.4142135623730951},"8":{"tf":1.0},"88":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"132":{"tf":1.0},"257":{"tf":1.0}}}},"df":2,"docs":{"252":{"tf":1.4142135623730951},"259":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"111":{"tf":1.0},"19":{"tf":1.0},"258":{"tf":1.0},"35":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":21,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"129":{"tf":1.0},"2":{"tf":1.4142135623730951},"223":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":2.449489742783178},"231":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"262":{"tf":1.0},"264":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"268":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"k":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{")":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"c":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"6":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"h":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"245":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"b":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"":{"+":{"b":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"d":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"c":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"7":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"":{"=":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"'":{"df":9,"docs":{"2":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"77":{"tf":1.0}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":105,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":2.0},"10":{"tf":2.23606797749979},"100":{"tf":2.6457513110645907},"101":{"tf":2.449489742783178},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"105":{"tf":2.449489742783178},"106":{"tf":4.47213595499958},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"11":{"tf":2.8284271247461903},"110":{"tf":2.8284271247461903},"111":{"tf":2.6457513110645907},"112":{"tf":1.0},"113":{"tf":2.6457513110645907},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"14":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"16":{"tf":2.0},"168":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":4.123105625617661},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":2.6457513110645907},"220":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"3":{"tf":2.0},"32":{"tf":2.0},"33":{"tf":3.0},"35":{"tf":1.4142135623730951},"4":{"tf":2.23606797749979},"42":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.4142135623730951},"6":{"tf":2.8284271247461903},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"8":{"tf":2.23606797749979},"87":{"tf":1.7320508075688772},"88":{"tf":2.6457513110645907},"89":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772},"90":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":2.0},"98":{"tf":3.7416573867739413},"99":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"c":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"7":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"b":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"s":{"df":4,"docs":{"137":{"tf":1.0},"212":{"tf":1.0},"274":{"tf":1.0},"43":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"i":{"+":{"b":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"b":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"h":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"230":{"tf":1.0},"264":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"+":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":1,"docs":{"264":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{")":{"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":2,"docs":{"211":{"tf":1.0},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"←":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"i":{"]":{"[":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"]":{"[":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"→":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"i":{"]":{"[":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"]":{"[":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":18,"docs":{"121":{"tf":1.0},"130":{"tf":1.4142135623730951},"170":{"tf":1.0},"18":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.4142135623730951},"246":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.7320508075688772},"262":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0},"8":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}}}},"y":{"df":19,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"42":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.7320508075688772},"86":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":5,"docs":{"211":{"tf":1.0},"213":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":15,"docs":{"128":{"tf":1.0},"129":{"tf":2.449489742783178},"132":{"tf":1.0},"133":{"tf":1.0},"212":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"263":{"tf":1.0},"268":{"tf":1.7320508075688772}}}},"v":{"df":2,"docs":{"110":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"2":{"tf":1.0},"209":{"tf":1.0},"260":{"tf":1.0},"62":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"245":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"133":{"tf":1.0},"170":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"81":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"49":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"222":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"204":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"255":{"tf":1.0},"264":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"265":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":23,"docs":{"10":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"227":{"tf":1.0},"245":{"tf":2.0},"253":{"tf":1.0},"258":{"tf":2.23606797749979},"34":{"tf":2.23606797749979},"37":{"tf":1.0},"44":{"tf":2.449489742783178},"6":{"tf":1.0},"60":{"tf":2.8284271247461903},"62":{"tf":1.0},"65":{"tf":2.8284271247461903},"66":{"tf":3.4641016151377544},"68":{"tf":2.449489742783178},"70":{"tf":2.23606797749979},"75":{"tf":2.0},"85":{"tf":2.23606797749979},"87":{"tf":2.0}},"s":{".":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":18,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"116":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"241":{"tf":1.0},"255":{"tf":1.4142135623730951},"258":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"1":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"258":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"213":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"258":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"85":{"tf":2.8284271247461903}}}}}},"df":19,"docs":{"137":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"22":{"tf":1.0},"25":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":2.449489742783178},"258":{"tf":3.0},"259":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":2.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"0":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}}}}},"x":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"1":{"df":1,"docs":{"247":{"tf":1.0}}},"2":{"df":1,"docs":{"247":{"tf":1.0}}},"3":{"df":1,"docs":{"247":{"tf":1.0}}},"=":{"1":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"138":{"tf":4.0},"209":{"tf":1.7320508075688772},"211":{"tf":2.449489742783178},"241":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"213":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"(":{"a":{",":{"b":{")":{"=":{"a":{"+":{"b":{"df":0,"docs":{},"−":{"2":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"⋅":{"b":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"180":{"tf":1.7320508075688772},"220":{"tf":1.0},"246":{"tf":2.0},"52":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"x":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"′":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"x":{"+":{"df":0,"docs":{},"y":{")":{"=":{"0":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"1":{"df":1,"docs":{"247":{"tf":1.0}}},"2":{"df":1,"docs":{"247":{"tf":1.0}}},"3":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"z":{"=":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{")":{"4":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"":{"+":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{")":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"":{"+":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"0":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"219":{"tf":1.0},"246":{"tf":1.7320508075688772},"247":{"tf":2.449489742783178},"251":{"tf":1.0},"252":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":20,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"111":{"tf":1.0},"124":{"tf":1.0},"170":{"tf":1.7320508075688772},"2":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":2.23606797749979},"246":{"tf":1.4142135623730951},"259":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"49":{"tf":1.0},"66":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}},"k":{"df":2,"docs":{"274":{"tf":1.0},"3":{"tf":1.0}}},"p":{"df":3,"docs":{"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"251":{"tf":1.0}}}}}},"breadcrumbs":{"root":{"0":{"'":{"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"233":{"tf":1.0}}},",":{"0":{",":{"0":{",":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"1":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"224":{"tf":1.0},"234":{"tf":1.0}}},"1":{"df":2,"docs":{"224":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"0":{",":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"1":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"1":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"3":{",":{"4":{",":{"5":{",":{"6":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"2":{"df":2,"docs":{"6":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":2,"docs":{"124":{"tf":1.0},"189":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":2,"docs":{"34":{"tf":1.0},"70":{"tf":1.0}}}},".":{"9":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"1":{"0":{"0":{"1":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"1":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.0}}},"1":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":103,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":2.23606797749979},"106":{"tf":4.898979485566356},"109":{"tf":1.0},"110":{"tf":2.8284271247461903},"111":{"tf":5.0990195135927845},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":2.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":2.449489742783178},"120":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":2.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":2.0},"137":{"tf":2.0},"138":{"tf":3.4641016151377544},"139":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"154":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":2.8284271247461903},"227":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":3.605551275463989},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":2.23606797749979},"259":{"tf":1.7320508075688772},"261":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"28":{"tf":4.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":6.928203230275509},"34":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":2.23606797749979},"65":{"tf":2.6457513110645907},"66":{"tf":2.8284271247461903},"70":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"83":{"tf":4.0},"84":{"tf":2.449489742783178},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.0},"98":{"tf":2.0}},"s":{"df":1,"docs":{"239":{"tf":1.0}}},"x":{"7":{"b":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"":{"+":{"df":0,"docs":{},"v":{")":{"2":{"df":1,"docs":{"212":{"tf":1.0}}},"4":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"212":{"tf":1.0}}},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"a":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"r":{"+":{"7":{")":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"+":{"8":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"α":{"4":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"n":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"r":{"+":{"7":{")":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},",":{".":{".":{".":{",":{"df":0,"docs":{},"α":{"3":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"α":{"1":{"df":3,"docs":{"252":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0}},"":{",":{"df":0,"docs":{},"α":{"2":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"→":{"1":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"1":{"+":{"a":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"′":{")":{"df":0,"docs":{},"⋅":{"(":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":0,"docs":{},"−":{"1":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{")":{"=":{"0":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},",":{"0":{",":{"0":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"222":{"tf":1.0},"224":{"tf":1.4142135623730951}}},"1":{",":{"0":{",":{"0":{"df":1,"docs":{"224":{"tf":1.0}}},"1":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"222":{"tf":1.0},"224":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951}}},"1":{",":{"0":{"df":2,"docs":{"222":{"tf":1.0},"224":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"224":{"tf":1.0},"234":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"3":{",":{"4":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"6":{"7":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"/":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"7":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"1":{"1":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"138":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"266":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0}}},"1":{"0":{"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"138":{"tf":1.0},"274":{"tf":1.0}}},"2":{"4":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"144":{"tf":1.0}}},"6":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"144":{"tf":1.0}}},"df":9,"docs":{"123":{"tf":1.0},"139":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.4142135623730951},"247":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.0}}},"1":{"0":{"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"1":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"144":{"tf":1.0}}},"6":{"df":1,"docs":{"144":{"tf":1.0}}},"d":{"b":{"b":{"d":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"2":{"7":{"df":0,"docs":{},"e":{"2":{"6":{"df":0,"docs":{},"e":{"4":{"8":{"b":{"df":0,"docs":{},"e":{"3":{"1":{"9":{"8":{"1":{"3":{"3":{"d":{"df":0,"docs":{},"f":{"8":{"c":{"b":{"df":0,"docs":{},"e":{"d":{"6":{"c":{"5":{"8":{"7":{"5":{"d":{"0":{"df":0,"docs":{},"f":{"b":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.0}}},"2":{",":{"1":{"3":{",":{"1":{"4":{",":{"1":{"5":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"144":{"tf":1.0}}},"2":{"df":1,"docs":{"20":{"tf":1.0}}},"3":{"df":2,"docs":{"36":{"tf":1.0},"63":{"tf":1.0}}},"4":{"df":1,"docs":{"144":{"tf":1.0}}},"6":{"df":1,"docs":{"20":{"tf":1.0}}},"8":{"df":3,"docs":{"20":{"tf":1.0},"266":{"tf":1.0},"68":{"tf":1.0}}},"9":{"df":1,"docs":{"247":{"tf":1.4142135623730951}}},"df":12,"docs":{"123":{"tf":1.0},"139":{"tf":1.0},"187":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"246":{"tf":1.0},"258":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"3":{"5":{"6":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"20":{"tf":1.0}}},"df":2,"docs":{"139":{"tf":1.0},"222":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"204":{"tf":1.0}}}}},"4":{"df":2,"docs":{"139":{"tf":1.0},"20":{"tf":1.0}}},"5":{".":{"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"247":{"tf":1.0}}},"df":7,"docs":{"111":{"tf":1.0},"139":{"tf":1.0},"20":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"53":{"tf":1.0},"85":{"tf":1.0}}},"6":{"3":{"df":1,"docs":{"247":{"tf":1.0}}},"df":54,"docs":{"127":{"tf":2.449489742783178},"128":{"tf":2.23606797749979},"129":{"tf":1.0},"131":{"tf":2.0},"133":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"210":{"tf":2.0},"213":{"tf":2.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.0},"23":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":2.23606797749979},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"42":{"tf":2.449489742783178},"45":{"tf":2.0},"52":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":2.23606797749979},"88":{"tf":1.0},"9":{"tf":2.23606797749979},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"85":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}}},"7":{"df":6,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"53":{"tf":1.0},"89":{"tf":1.0}}},"8":{"df":2,"docs":{"139":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"9":{"df":3,"docs":{"128":{"tf":1.0},"139":{"tf":1.0},"53":{"tf":1.0}}},"df":118,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"106":{"tf":4.58257569495584},"109":{"tf":1.0},"110":{"tf":2.449489742783178},"111":{"tf":3.4641016151377544},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":2.23606797749979},"116":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":2.6457513110645907},"120":{"tf":2.0},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":2.23606797749979},"126":{"tf":1.7320508075688772},"129":{"tf":1.4142135623730951},"130":{"tf":2.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"138":{"tf":3.1622776601683795},"139":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":2.0},"148":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":2.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":2.0},"232":{"tf":1.4142135623730951},"233":{"tf":2.6457513110645907},"234":{"tf":4.795831523312719},"237":{"tf":1.7320508075688772},"238":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"245":{"tf":1.7320508075688772},"247":{"tf":4.47213595499958},"250":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":2.449489742783178},"259":{"tf":1.4142135623730951},"261":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.4142135623730951},"274":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":2.0},"34":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":2.8284271247461903},"53":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"60":{"tf":2.6457513110645907},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":2.0},"68":{"tf":2.23606797749979},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"83":{"tf":3.7416573867739413},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"−":{"b":{"6":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"4":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"4":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{")":{"=":{"0":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{")":{"=":{"0":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"b":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"1":{"6":{")":{"=":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{")":{"=":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"k":{"0":{"df":1,"docs":{"234":{"tf":1.0}}},"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"⋅":{"(":{"2":{"3":{"2":{"df":0,"docs":{},"−":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{")":{"=":{"1":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"δ":{"a":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"1":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{"=":{"1":{"df":2,"docs":{"257":{"tf":1.0},"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"δ":{"c":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"z":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"1":{"6":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{")":{"=":{"0":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"159":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"2":{"'":{"df":1,"docs":{"212":{"tf":1.0}}},".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"5":{"df":0,"docs":{},"x":{"df":1,"docs":{"258":{"tf":1.0}}}},"6":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"7":{"0":{"df":1,"docs":{"247":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"139":{"tf":1.0},"20":{"tf":1.0},"68":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"6":{"df":12,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.4142135623730951},"210":{"tf":1.0},"259":{"tf":1.0},"37":{"tf":1.0}}},"8":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"df":1,"docs":{"139":{"tf":1.0}}},"2":{"0":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}},"df":1,"docs":{"139":{"tf":1.0}}},"3":{"0":{"+":{"3":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"37":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"1":{"df":1,"docs":{"45":{"tf":1.0}}},"2":{"df":16,"docs":{"127":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"246":{"tf":1.0},"258":{"tf":1.7320508075688772},"55":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0}},"−":{"1":{"df":4,"docs":{"170":{"tf":1.0},"44":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"139":{"tf":1.0},"56":{"tf":1.0}}},"4":{".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"20":{"tf":1.0}}},"8":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"3":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"t":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":3,"docs":{"102":{"tf":1.0},"139":{"tf":1.0},"247":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"2":{"6":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":2,"docs":{"211":{"tf":1.7320508075688772},"65":{"tf":1.0}}},"6":{"df":1,"docs":{"258":{"tf":1.0}}},"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"≤":{"2":{"1":{"6":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"139":{"tf":1.0}}},"6":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"1":{"5":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"2":{"6":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"−":{"2":{"3":{"2":{"+":{"1":{"df":5,"docs":{"127":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"253":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"139":{"tf":1.0}}},"7":{".":{"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"21":{"tf":1.0}}},"df":3,"docs":{"111":{"tf":1.0},"123":{"tf":1.0},"139":{"tf":1.0}}},"8":{"df":3,"docs":{"139":{"tf":1.0},"20":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"df":2,"docs":{"139":{"tf":1.0},"68":{"tf":1.0}}},"^":{"3":{"2":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"82":{"tf":3.0},"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":74,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":1.0},"209":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"266":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":2.0},"51":{"tf":1.4142135623730951},"52":{"tf":2.449489742783178},"53":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":3.3166247903554},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":2.0},"68":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":2.0},"79":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":2.23606797749979},"87":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"'":{"df":1,"docs":{"212":{"tf":1.0}}},".":{"1":{"df":1,"docs":{"21":{"tf":1.0}}},"6":{"df":1,"docs":{"21":{"tf":1.0}}},"7":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"7":{"2":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"139":{"tf":1.0},"20":{"tf":1.0}}},"1":{"0":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}},"df":2,"docs":{"139":{"tf":1.0},"170":{"tf":1.0}}},"2":{"df":31,"docs":{"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":2.23606797749979},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"258":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"58":{"tf":2.0},"65":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":2.8284271247461903},"80":{"tf":2.8284271247461903},"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"88":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"1":{"3":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"140":{"tf":1.0},"58":{"tf":1.0}}},"4":{"df":1,"docs":{"140":{"tf":1.0}}},"5":{"df":2,"docs":{"140":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"140":{"tf":1.0},"58":{"tf":1.0}}},"7":{"df":3,"docs":{"140":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}},"8":{"df":1,"docs":{"140":{"tf":1.0}}},"9":{"df":1,"docs":{"140":{"tf":1.0}}},"df":49,"docs":{"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":2.23606797749979},"111":{"tf":1.0},"113":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"250":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":2.0},"45":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":3.3166247903554},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"66":{"tf":2.23606797749979},"68":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":1,"docs":{"213":{"tf":1.0}}},"r":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"4":{",":{"5":{",":{"6":{",":{"7":{",":{"8":{",":{"9":{",":{"1":{"0":{",":{"1":{"1":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":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":{"186":{"tf":1.0},"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":3,"docs":{"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0}}},"df":0,"docs":{}},".":{"6":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"0":{"4":{"2":{"6":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"140":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"1":{"8":{"5":{"1":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"140":{"tf":1.0}}},"2":{"df":1,"docs":{"140":{"tf":1.0}}},"3":{"df":1,"docs":{"140":{"tf":1.0}}},"4":{"df":3,"docs":{"140":{"tf":1.0},"58":{"tf":1.0},"84":{"tf":1.0}}},"5":{"df":1,"docs":{"140":{"tf":1.0}}},"6":{"df":1,"docs":{"140":{"tf":1.0}}},"7":{"df":3,"docs":{"140":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.7320508075688772}}},"8":{"df":2,"docs":{"141":{"tf":1.0},"85":{"tf":1.0}}},"9":{"df":1,"docs":{"141":{"tf":1.0}}},"]":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":54,"docs":{"104":{"tf":2.0},"105":{"tf":2.0},"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":2.6457513110645907},"116":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"138":{"tf":2.0},"139":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":2.8284271247461903},"166":{"tf":1.7320508075688772},"167":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"200":{"tf":1.0},"202":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":2.0},"209":{"tf":1.7320508075688772},"217":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"247":{"tf":2.23606797749979},"258":{"tf":1.7320508075688772},"269":{"tf":1.0},"31":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":3.3166247903554},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"65":{"tf":1.7320508075688772},"66":{"tf":2.6457513110645907},"72":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"77":{"tf":2.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}},"n":{"df":2,"docs":{"212":{"tf":1.0},"216":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}}},"5":{",":{"6":{",":{"7":{",":{"8":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":1,"docs":{"141":{"tf":1.0}}},"1":{"df":1,"docs":{"141":{"tf":1.0}}},"2":{"df":2,"docs":{"141":{"tf":1.0},"20":{"tf":1.0}}},"3":{"df":1,"docs":{"141":{"tf":1.0}}},"4":{"df":1,"docs":{"141":{"tf":1.0}}},"5":{"df":1,"docs":{"141":{"tf":1.0}}},"6":{"df":1,"docs":{"141":{"tf":1.0}}},"7":{"df":2,"docs":{"141":{"tf":1.0},"20":{"tf":1.0}}},"8":{"df":2,"docs":{"141":{"tf":1.0},"85":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"5":{"0":{"df":0,"docs":{},"x":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"141":{"tf":1.0},"58":{"tf":1.0}}},"df":27,"docs":{"113":{"tf":2.0},"116":{"tf":1.4142135623730951},"132":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.0},"142":{"tf":2.0},"143":{"tf":4.0},"144":{"tf":1.0},"200":{"tf":1.0},"222":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.449489742783178},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0}}},"6":{".":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"6":{"c":{"9":{"df":0,"docs":{},"f":{"0":{"3":{"7":{"c":{"7":{"8":{"9":{"3":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"e":{"4":{"1":{"1":{"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":1,"docs":{"141":{"tf":1.0}}},"1":{"df":2,"docs":{"141":{"tf":1.0},"20":{"tf":1.0}}},"2":{"df":1,"docs":{"141":{"tf":1.0}}},"3":{"df":2,"docs":{"141":{"tf":1.0},"52":{"tf":1.0}}},"4":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":23,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"213":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"266":{"tf":1.0},"38":{"tf":1.4142135623730951},"6":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.7320508075688772},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":4.0},"97":{"tf":1.0}}},"5":{"5":{"3":{"5":{"df":3,"docs":{"213":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.0}}},"6":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.0}},"k":{"df":1,"docs":{"213":{"tf":1.0}}}},"6":{"df":2,"docs":{"142":{"tf":1.0},"20":{"tf":1.0}}},"7":{"df":1,"docs":{"20":{"tf":1.0}}},"8":{"df":1,"docs":{"142":{"tf":1.0}}},"9":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}},"df":28,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.7320508075688772},"132":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"142":{"tf":3.1622776601683795},"184":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.7320508075688772},"224":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":2.0},"255":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"77":{"tf":1.4142135623730951}},"x":{"df":1,"docs":{"258":{"tf":1.0}}}},"7":{".":{"7":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"142":{"tf":1.0}}},"1":{"df":1,"docs":{"89":{"tf":1.0}}},"2":{"df":2,"docs":{"142":{"tf":1.0},"97":{"tf":1.0}}},"3":{"df":1,"docs":{"52":{"tf":1.0}}},"4":{"df":1,"docs":{"142":{"tf":1.0}}},"5":{"df":1,"docs":{"85":{"tf":1.0}}},"6":{"df":2,"docs":{"142":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"20":{"tf":1.0}}},"8":{"df":2,"docs":{"142":{"tf":1.0},"20":{"tf":1.0}}},"df":30,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":2.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"126":{"tf":1.0},"138":{"tf":2.6457513110645907},"139":{"tf":5.830951894845301},"140":{"tf":4.123105625617661},"141":{"tf":4.123105625617661},"143":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"240":{"tf":2.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"68":{"tf":1.0},"97":{"tf":1.7320508075688772}}},"8":{",":{"1":{"6":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"9":{",":{"1":{"0":{",":{"1":{"1":{",":{"1":{"2":{",":{"1":{"3":{",":{"1":{"4":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"143":{"tf":1.0},"20":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.0}}},"2":{"df":1,"docs":{"143":{"tf":1.0}}},"3":{"df":1,"docs":{"143":{"tf":1.0}}},"4":{"df":1,"docs":{"143":{"tf":1.0}}},"5":{"df":2,"docs":{"143":{"tf":1.0},"20":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"143":{"tf":1.0}}},"7":{"df":2,"docs":{"143":{"tf":1.0},"30":{"tf":1.0}}},"8":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"143":{"tf":1.0}}},"9":{"df":2,"docs":{"143":{"tf":1.0},"20":{"tf":1.0}}},"df":45,"docs":{"104":{"tf":2.6457513110645907},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"111":{"tf":3.605551275463989},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":2.0},"121":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"142":{"tf":1.0},"186":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"213":{"tf":1.0},"222":{"tf":1.7320508075688772},"224":{"tf":1.0},"232":{"tf":3.3166247903554},"233":{"tf":1.7320508075688772},"234":{"tf":3.3166247903554},"237":{"tf":1.0},"238":{"tf":2.0},"242":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"246":{"tf":1.7320508075688772},"247":{"tf":1.7320508075688772},"250":{"tf":1.4142135623730951},"252":{"tf":1.0},"258":{"tf":1.0},"29":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"97":{"tf":2.0},"99":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"244":{"tf":1.0}}}},"⋅":{"d":{"df":0,"docs":{},"−":{"1":{"df":2,"docs":{"207":{"tf":1.0},"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"9":{".":{"0":{"df":1,"docs":{"21":{"tf":1.0}}},"8":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":2,"docs":{"143":{"tf":1.0},"20":{"tf":1.0}}},"2":{"df":1,"docs":{"143":{"tf":1.0}}},"3":{"df":1,"docs":{"143":{"tf":1.0}}},"4":{"df":2,"docs":{"143":{"tf":1.0},"84":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":1,"docs":{"143":{"tf":1.0}}},"6":{"df":3,"docs":{"144":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0}}},"df":23,"docs":{"105":{"tf":1.0},"111":{"tf":2.23606797749979},"118":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"193":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"247":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"68":{"tf":1.0},"85":{"tf":2.23606797749979},"87":{"tf":1.0},"97":{"tf":1.0}}},"_":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.0}}},"a":{"+":{"1":{"df":1,"docs":{"65":{"tf":1.0}}},"7":{"df":1,"docs":{"116":{"tf":1.0}}},"b":{")":{"df":0,"docs":{},"≥":{"2":{"3":{"2":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"+":{"c":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"173":{"tf":1.0}},"⋅":{"c":{"df":1,"docs":{"177":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"′":{",":{"df":0,"docs":{},"h":{"5":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{",":{"c":{",":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{",":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"/":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":7,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"34":{"tf":1.0},"54":{"tf":2.8284271247461903},"65":{"tf":1.4142135623730951},"70":{"tf":1.0},"87":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"a":{"1":{"1":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"df":1,"docs":{"209":{"tf":1.0}},"":{",":{"a":{"2":{"df":0,"docs":{},"":{",":{"a":{"3":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{".":{"a":{"3":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"←":{"df":0,"docs":{},"−":{"a":{"0":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"df":4,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"54":{"tf":2.8284271247461903},"65":{"tf":1.4142135623730951}},"′":{"df":0,"docs":{},"←":{"df":0,"docs":{},"−":{"a":{"1":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"2":{"df":2,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":1.0}}},"3":{"df":2,"docs":{"246":{"tf":1.4142135623730951},"250":{"tf":1.0}}},"<":{"2":{"3":{"2":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":1,"docs":{"57":{"tf":1.0}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"53":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}},"=":{"0":{"df":4,"docs":{"165":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}}},"1":{"df":1,"docs":{"51":{"tf":1.0}}},"4":{"1":{"8":{"5":{"1":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":2,"docs":{"164":{"tf":1.0},"51":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"∑":{"df":0,"docs":{},"i":{"=":{"0":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},">":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"6":{"3":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":4,"docs":{"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0}}}},"i":{"df":1,"docs":{"98":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":4,"docs":{"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":95,"docs":{"104":{"tf":1.0},"106":{"tf":3.1622776601683795},"107":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":2.0},"113":{"tf":1.0},"116":{"tf":3.1622776601683795},"117":{"tf":1.7320508075688772},"118":{"tf":2.23606797749979},"120":{"tf":2.0},"122":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":2.23606797749979},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"138":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":2.23606797749979},"207":{"tf":2.0},"208":{"tf":2.0},"212":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":3.1622776601683795},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":2.23606797749979},"255":{"tf":1.7320508075688772},"256":{"tf":2.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.4142135623730951},"272":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"p":{"df":3,"docs":{"232":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"62":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.7320508075688772},"74":{"tf":1.0}}}}},"r":{"b":{"df":15,"docs":{"104":{"tf":2.23606797749979},"106":{"tf":1.0},"111":{"tf":2.6457513110645907},"115":{"tf":1.4142135623730951},"116":{"tf":2.23606797749979},"232":{"tf":2.0},"233":{"tf":1.0},"238":{"tf":2.0},"239":{"tf":2.0},"240":{"tf":2.0},"243":{"tf":1.7320508075688772},"244":{"tf":1.4142135623730951},"245":{"tf":2.0},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"116":{"tf":2.0},"99":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":1,"docs":{"166":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"15":{"tf":2.449489742783178},"220":{"tf":1.0},"88":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":32,"docs":{"116":{"tf":1.7320508075688772},"127":{"tf":1.0},"199":{"tf":2.6457513110645907},"2":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"220":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.7320508075688772},"260":{"tf":1.0},"263":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":2.449489742783178},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":2.23606797749979},"72":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"257":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":15,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"259":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}}}},"r":{"d":{"df":7,"docs":{"100":{"tf":1.0},"104":{"tf":1.7320508075688772},"113":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"247":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":15,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"210":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"35":{"tf":2.23606797749979},"69":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"227":{"tf":3.0}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"231":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"105":{"tf":1.0},"111":{"tf":1.4142135623730951},"213":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{".":{"1":{"df":1,"docs":{"23":{"tf":1.0}}},"b":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":34,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":3.605551275463989},"110":{"tf":2.0},"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.449489742783178},"126":{"tf":2.23606797749979},"130":{"tf":1.7320508075688772},"140":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":2.0},"2":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.7320508075688772},"23":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.0},"248":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"265":{"tf":1.0},"38":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":38,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"2":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"233":{"tf":1.0},"234":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"259":{"tf":1.0},"38":{"tf":1.4142135623730951},"48":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"133":{"tf":1.0},"221":{"tf":1.0},"255":{"tf":1.0},"271":{"tf":1.0},"45":{"tf":1.0}}}}}}},"r":{"=":{"0":{"df":1,"docs":{"264":{"tf":1.0}}},"1":{"df":1,"docs":{"264":{"tf":1.0}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"262":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"111":{"tf":2.23606797749979},"223":{"tf":1.0},"254":{"tf":2.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"261":{"tf":1.7320508075688772},"262":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":46,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"106":{"tf":3.3166247903554},"111":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":3.1622776601683795},"118":{"tf":1.4142135623730951},"121":{"tf":2.23606797749979},"126":{"tf":2.0},"128":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"17":{"tf":1.0},"200":{"tf":2.0},"201":{"tf":2.0},"202":{"tf":2.0},"203":{"tf":2.0},"204":{"tf":1.7320508075688772},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"253":{"tf":1.7320508075688772},"254":{"tf":2.23606797749979},"255":{"tf":2.449489742783178},"256":{"tf":2.8284271247461903},"257":{"tf":2.6457513110645907},"258":{"tf":3.3166247903554},"259":{"tf":2.6457513110645907},"261":{"tf":1.0},"264":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"44":{"tf":2.6457513110645907},"45":{"tf":2.0},"6":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":3.4641016151377544},"77":{"tf":1.0}}}}},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{")":{"=":{"0":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":25,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":2.8284271247461903},"112":{"tf":1.7320508075688772},"117":{"tf":3.1622776601683795},"118":{"tf":3.3166247903554},"126":{"tf":2.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"213":{"tf":1.0},"221":{"tf":1.4142135623730951},"247":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"6":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.0},"223":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"127":{"tf":1.0},"138":{"tf":1.0},"241":{"tf":1.0},"87":{"tf":1.0}}}}},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"6":{"4":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"w":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"65":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"4":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"65":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"100":{"tf":1.0},"150":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"21":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":15,"docs":{"10":{"tf":3.1622776601683795},"17":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"207":{"tf":1.0},"6":{"tf":2.6457513110645907},"62":{"tf":2.449489742783178},"65":{"tf":4.898979485566356},"68":{"tf":2.23606797749979},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"8":{"tf":2.0},"85":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"[":{"df":0,"docs":{},"k":{"]":{"df":0,"docs":{},"←":{"[":{"a":{",":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"141":{"tf":1.0},"197":{"tf":2.23606797749979}},"w":{"df":2,"docs":{"139":{"tf":1.0},"198":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"137":{"tf":1.4142135623730951},"203":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"106":{"tf":1.0},"110":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":1.0},"219":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"265":{"tf":1.0},"45":{"tf":2.0},"49":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"t":{"df":21,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":1.0},"16":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0},"231":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"68":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":6,"docs":{"166":{"tf":1.0},"224":{"tf":1.0},"246":{"tf":1.4142135623730951},"247":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":2.449489742783178}}}}}},"o":{"df":1,"docs":{"31":{"tf":1.0}}}},"i":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":2,"docs":{"250":{"tf":1.4142135623730951},"99":{"tf":1.0}},"r":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":20,"docs":{"113":{"tf":2.0},"116":{"tf":1.0},"132":{"tf":1.4142135623730951},"149":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"241":{"tf":1.7320508075688772},"248":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"4":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"":{"<":{"2":{"3":{"2":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"∀":{"df":0,"docs":{},"i":{"df":0,"docs":{},"∈":{"df":0,"docs":{},"{":{"0":{",":{"1":{",":{"2":{",":{"3":{"df":0,"docs":{},"}":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":1,"docs":{"274":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"222":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"128":{"tf":1.0},"254":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":14,"docs":{"111":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.0},"213":{"tf":2.0},"221":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.4142135623730951},"248":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"40":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}},"g":{"df":2,"docs":{"17":{"tf":1.0},"29":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"0":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"123":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"254":{"tf":1.7320508075688772}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":7,"docs":{"116":{"tf":1.0},"17":{"tf":1.0},"227":{"tf":1.0},"245":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":22,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"209":{"tf":1.0},"221":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.4142135623730951},"260":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}}},"d":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"258":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"69":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"129":{"tf":1.0},"268":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}},"z":{"df":1,"docs":{"16":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"d":{"(":{"a":{",":{"b":{")":{"=":{"3":{"3":{"1":{"3":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"⋅":{"b":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"65":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"170":{"tf":1.0},"211":{"tf":1.4142135623730951},"221":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0},"36":{"tf":1.0},"62":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"221":{"tf":1.0},"246":{"tf":1.0},"74":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":3,"docs":{"15":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772}},"i":{"c":{"df":6,"docs":{"1":{"tf":1.0},"113":{"tf":1.0},"15":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0}}},"df":20,"docs":{"113":{"tf":1.0},"121":{"tf":1.0},"135":{"tf":1.0},"19":{"tf":1.0},"206":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":2.0},"226":{"tf":1.0},"227":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"255":{"tf":1.0},"262":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"254":{"tf":1.0},"258":{"tf":2.23606797749979},"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"111":{"tf":1.0},"209":{"tf":1.0},"251":{"tf":1.0}}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"2":{"tf":1.0},"216":{"tf":1.0},"243":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"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":3,"docs":{"23":{"tf":1.0},"265":{"tf":1.0},"270":{"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":9,"docs":{"155":{"tf":1.0},"2":{"tf":1.0},"274":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"87":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"45":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}}},"y":{"df":2,"docs":{"10":{"tf":1.0},"17":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":48,"docs":{"16":{"tf":2.449489742783178},"2":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":3.872983346207417},"34":{"tf":1.0},"35":{"tf":3.1622776601683795},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772}},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"51":{"tf":1.0}},"w":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":5,"docs":{"140":{"tf":1.0},"151":{"tf":2.0},"28":{"tf":1.0},"51":{"tf":1.7320508075688772},"85":{"tf":1.0}},"z":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"257":{"tf":1.0},"44":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":50,"docs":{"113":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"211":{"tf":1.0},"246":{"tf":1.4142135623730951},"258":{"tf":1.0},"268":{"tf":1.0},"34":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":3.0},"83":{"tf":3.1622776601683795},"84":{"tf":2.6457513110645907},"87":{"tf":1.0},"97":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"274":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":3.0},"111":{"tf":1.0},"129":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"104":{"tf":1.0},"115":{"tf":1.0},"22":{"tf":1.4142135623730951},"26":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"66":{"tf":1.7320508075688772},"69":{"tf":1.0},"72":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"95":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}},"y":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"′":{",":{"a":{",":{"0":{"df":1,"docs":{"117":{"tf":2.0}}},"1":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{",":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"=":{"1":{"6":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"∑":{"df":0,"docs":{},"i":{"=":{"0":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"←":{"a":{"+":{"2":{"df":2,"docs":{"65":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"q":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"−":{"a":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":2,"docs":{"256":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":2,"docs":{"254":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"257":{"tf":1.0},"258":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"←":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"4":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"→":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"−":{"b":{"df":1,"docs":{"175":{"tf":1.0}}},"c":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"≤":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}},"≥":{"2":{"3":{"2":{"df":3,"docs":{"56":{"tf":1.4142135623730951},"58":{"tf":3.3166247903554},"66":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}},"⊕":{"b":{"df":0,"docs":{},"→":{"df":0,"docs":{},"z":{"df":1,"docs":{"246":{"tf":1.0}}}}},"df":0,"docs":{}},"⋅":{"b":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"":{"=":{"0":{"df":1,"docs":{"51":{"tf":1.0}}},"1":{"df":1,"docs":{"51":{"tf":1.0}}},"b":{"df":1,"docs":{"51":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{",":{"c":{")":{"df":0,"docs":{},"←":{"a":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"0":{"df":11,"docs":{"112":{"tf":2.8284271247461903},"128":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.4142135623730951},"196":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"54":{"tf":2.0},"65":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}},"":{",":{".":{".":{".":{",":{"b":{"1":{"1":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":2,"docs":{"103":{"tf":1.0},"138":{"tf":1.0}}},"df":0,"docs":{},"j":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"1":{"df":0,"docs":{},"":{",":{"b":{"2":{"df":0,"docs":{},"":{",":{"b":{"3":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{".":{"b":{"3":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"1":{"6":{"df":3,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"6":{"1":{"df":4,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"":{"=":{"1":{"6":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"′":{"df":0,"docs":{},"":{"=":{"b":{"0":{"df":1,"docs":{"134":{"tf":1.0}},"":{"+":{"1":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"1":{"_":{"0":{"1":{"1":{"0":{"_":{"1":{"0":{"1":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"247":{"tf":1.0}}},"1":{"_":{"1":{"1":{"0":{"1":{"_":{"1":{"1":{"1":{"0":{"_":{"1":{"0":{"1":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"_":{"0":{"0":{"1":{"1":{"_":{"0":{"1":{"1":{"1":{"_":{"1":{"0":{"1":{"1":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"112":{"tf":3.0},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"138":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"54":{"tf":2.0},"65":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}},"":{",":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{",":{"b":{"1":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":2,"docs":{"128":{"tf":1.0},"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":5,"docs":{"112":{"tf":3.1622776601683795},"138":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"98":{"tf":1.4142135623730951}},"−":{"b":{"=":{"0":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":8,"docs":{"112":{"tf":3.0},"138":{"tf":1.0},"246":{"tf":1.4142135623730951},"250":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"4":{"df":3,"docs":{"112":{"tf":2.0},"138":{"tf":1.0},"98":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":3,"docs":{"138":{"tf":1.0},"144":{"tf":1.0},"98":{"tf":1.4142135623730951}},"":{"=":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"144":{"tf":1.0}},"":{"=":{"1":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"5":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"4":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"4":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"5":{"df":1,"docs":{"138":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"b":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"=":{"0":{"df":3,"docs":{"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":2.449489742783178}}},"1":{"df":1,"docs":{"165":{"tf":1.0}}},"4":{"0":{"4":{"2":{"6":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"∑":{"df":0,"docs":{},"i":{"=":{"0":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},">":{"3":{"1":{"df":1,"docs":{"58":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"82":{"tf":3.872983346207417},"83":{"tf":4.0},"84":{"tf":1.7320508075688772}}}},"j":{"df":1,"docs":{"98":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"82":{"tf":3.872983346207417},"83":{"tf":4.0},"84":{"tf":1.7320508075688772}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"104":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"152":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"271":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"260":{"tf":1.0},"274":{"tf":1.7320508075688772},"4":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"23":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"45":{"tf":1.0}}},"df":1,"docs":{"45":{"tf":3.0}}},"s":{"df":0,"docs":{},"e":{"df":20,"docs":{"0":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"113":{"tf":1.0},"124":{"tf":1.0},"147":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"259":{"tf":1.0},"274":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"49":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"126":{"tf":1.0},"2":{"tf":1.0},"242":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":19,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":3.1622776601683795},"106":{"tf":3.1622776601683795},"111":{"tf":5.916079783099616},"115":{"tf":2.449489742783178},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"121":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":4.358898943540674},"126":{"tf":2.8284271247461903},"253":{"tf":1.0},"258":{"tf":1.4142135623730951},"6":{"tf":1.0},"62":{"tf":1.0},"97":{"tf":2.8284271247461903},"99":{"tf":2.449489742783178}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}}},"z":{"df":1,"docs":{"45":{"tf":3.0}}}},"c":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"1":{"df":1,"docs":{"125":{"tf":1.0}}},"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":13,"docs":{"104":{"tf":2.449489742783178},"116":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":2.449489742783178},"233":{"tf":2.0},"245":{"tf":3.3166247903554},"259":{"tf":1.7320508075688772},"261":{"tf":1.0},"273":{"tf":1.0}},"′":{"df":0,"docs":{},"":{"=":{"b":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"116":{"tf":1.0},"245":{"tf":1.0},"263":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"+":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"263":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"263":{"tf":1.0}}},"v":{"a":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"245":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"245":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"259":{"tf":1.0}}}}},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"=":{"b":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"":{"=":{"b":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"=":{"b":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"206":{"tf":1.0},"207":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}},"i":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"b":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":57,"docs":{"100":{"tf":1.0},"106":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"198":{"tf":1.0},"23":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":2.0},"247":{"tf":2.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.0},"266":{"tf":1.7320508075688772},"271":{"tf":2.6457513110645907},"34":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":4.123105625617661},"53":{"tf":3.3166247903554},"56":{"tf":2.449489742783178},"57":{"tf":5.830951894845301},"58":{"tf":5.656854249492381},"59":{"tf":4.0},"60":{"tf":2.449489742783178},"61":{"tf":2.0},"63":{"tf":2.23606797749979},"64":{"tf":1.4142135623730951},"65":{"tf":2.449489742783178},"66":{"tf":1.0},"68":{"tf":2.0},"70":{"tf":1.0},"82":{"tf":4.123105625617661},"83":{"tf":4.47213595499958},"84":{"tf":4.0},"85":{"tf":2.0},"87":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":8,"docs":{"110":{"tf":1.0},"131":{"tf":1.0},"17":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"8":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":20,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"122":{"tf":1.0},"148":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"209":{"tf":1.0},"258":{"tf":1.0},"27":{"tf":1.0},"42":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":19,"docs":{"101":{"tf":1.0},"106":{"tf":2.8284271247461903},"11":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"17":{"tf":1.0},"222":{"tf":1.0},"234":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"33":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"66":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"122":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.0},"45":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"243":{"tf":1.0},"244":{"tf":1.0},"257":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"121":{"tf":1.0},"137":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"7":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"96":{"tf":1.0},"99":{"tf":1.0}}}},"w":{"df":115,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":2.6457513110645907},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.23606797749979},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":2.23606797749979},"208":{"tf":2.449489742783178},"209":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"246":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":2.0},"27":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"274":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"1":{"tf":1.0},"8":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"212":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"45":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":45,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"213":{"tf":2.449489742783178},"222":{"tf":1.0},"223":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":2.0},"257":{"tf":2.6457513110645907},"258":{"tf":2.449489742783178},"259":{"tf":1.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}}}},"h":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"+":{"df":0,"docs":{},"α":{"7":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"4":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"114":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"111":{"tf":1.0},"250":{"tf":1.4142135623730951}},"g":{"df":2,"docs":{"138":{"tf":1.0},"224":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":47,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"111":{"tf":1.0},"114":{"tf":1.4142135623730951},"120":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"259":{"tf":1.0},"262":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"58":{"tf":2.0},"70":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"d":{"df":2,"docs":{"100":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":63,"docs":{"100":{"tf":1.0},"111":{"tf":2.0},"116":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":3.1622776601683795},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":2.449489742783178},"171":{"tf":2.0},"172":{"tf":1.7320508075688772},"173":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":2.0},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":1.7320508075688772},"213":{"tf":2.23606797749979},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0},"224":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.7320508075688772},"246":{"tf":3.0},"247":{"tf":2.8284271247461903},"250":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"255":{"tf":2.23606797749979},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":2.23606797749979},"266":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"58":{"tf":3.1622776601683795},"6":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":2.23606797749979},"80":{"tf":2.23606797749979},"81":{"tf":2.6457513110645907},"82":{"tf":5.477225575051661},"83":{"tf":6.0},"84":{"tf":4.358898943540674},"88":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":20,"docs":{"116":{"tf":1.0},"179":{"tf":2.0},"180":{"tf":2.0},"2":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.4142135623730951},"246":{"tf":3.1622776601683795},"247":{"tf":2.0},"248":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":2.6457513110645907},"273":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"81":{"tf":1.0},"84":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"3":{"df":3,"docs":{"19":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":2.23606797749979}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"+":{"8":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"117":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"106":{"tf":5.385164807134504},"111":{"tf":2.449489742783178}}},"o":{"c":{"df":0,"docs":{},"k":{"'":{"df":5,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":2.449489742783178},"115":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":1,"docs":{"118":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"33":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":45,"docs":{"100":{"tf":1.0},"101":{"tf":3.1622776601683795},"102":{"tf":1.0},"103":{"tf":2.23606797749979},"104":{"tf":1.7320508075688772},"105":{"tf":6.164414002968976},"106":{"tf":6.0},"107":{"tf":3.0},"108":{"tf":3.0},"109":{"tf":2.8284271247461903},"110":{"tf":3.605551275463989},"111":{"tf":5.385164807134504},"112":{"tf":5.656854249492381},"113":{"tf":1.7320508075688772},"114":{"tf":2.0},"115":{"tf":3.4641016151377544},"116":{"tf":2.449489742783178},"117":{"tf":5.0990195135927845},"118":{"tf":5.385164807134504},"119":{"tf":2.6457513110645907},"121":{"tf":2.23606797749979},"122":{"tf":2.449489742783178},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"147":{"tf":1.0},"229":{"tf":1.4142135623730951},"233":{"tf":1.0},"237":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"48":{"tf":1.4142135623730951},"90":{"tf":2.23606797749979},"91":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"93":{"tf":2.23606797749979},"94":{"tf":2.449489742783178},"95":{"tf":3.0},"96":{"tf":3.0},"97":{"tf":2.23606797749979},"98":{"tf":5.0},"99":{"tf":3.872983346207417}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":10,"docs":{"105":{"tf":1.0},"106":{"tf":2.23606797749979},"110":{"tf":2.6457513110645907},"118":{"tf":2.0},"39":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":2.0},"94":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":33,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":2.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"124":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"172":{"tf":1.0},"19":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.4142135623730951},"23":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.7320508075688772},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"47":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"107":{"tf":1.0},"113":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"267":{"tf":1.0},"271":{"tf":1.0}}}}},"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":5,"docs":{"232":{"tf":1.7320508075688772},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"106":{"tf":1.0},"109":{"tf":2.0},"118":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":5,"docs":{"169":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.7320508075688772},"273":{"tf":1.0}},"e":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"=":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"z":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"1":{"tf":1.0},"23":{"tf":1.0},"257":{"tf":1.0},"33":{"tf":1.0},"97":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":2.449489742783178},"3":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"244":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"213":{"tf":2.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"265":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}}}},"u":{"df":25,"docs":{"104":{"tf":1.0},"116":{"tf":2.449489742783178},"169":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.449489742783178},"224":{"tf":1.0},"228":{"tf":2.23606797749979},"229":{"tf":2.0},"245":{"tf":1.4142135623730951},"252":{"tf":2.23606797749979},"259":{"tf":1.7320508075688772},"261":{"tf":1.0},"263":{"tf":2.449489742783178},"265":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":2.0},"273":{"tf":1.4142135623730951}},"g":{"df":1,"docs":{"1":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"13":{"tf":2.0},"16":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"270":{"tf":1.4142135623730951},"273":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"35":{"tf":1.4142135623730951},"63":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":2.0},"80":{"tf":2.0}}}}},"}":{"df":0,"docs":{},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"′":{"=":{"1":{"6":{"df":0,"docs":{},"⋅":{"b":{"+":{"df":0,"docs":{},"∑":{"df":0,"docs":{},"i":{"=":{"0":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"=":{"b":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"b":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"←":{"(":{"a":{"+":{"1":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"159":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"¬":{"a":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"−":{"a":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"−":{"a":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"a":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"−":{"1":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"{":{"1":{",":{"0":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"53":{"tf":1.0},"56":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"−":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"−":{"d":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"≥":{"2":{"3":{"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{",":{"d":{")":{"df":0,"docs":{},"←":{"a":{"+":{"b":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}},"/":{"b":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}},"⋅":{"b":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"54":{"tf":2.0}},"":{",":{"c":{"1":{"df":0,"docs":{},"":{",":{"c":{"2":{"df":2,"docs":{"103":{"tf":1.0},"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"←":{"(":{"a":{"0":{"+":{"b":{"0":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{"0":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"∗":{"b":{"0":{")":{"df":0,"docs":{},"−":{"2":{"df":0,"docs":{},"∗":{"(":{"a":{"1":{"df":0,"docs":{},"∗":{"b":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"54":{"tf":2.0}},"←":{"(":{"a":{"0":{"+":{"a":{"1":{")":{"df":0,"docs":{},"∗":{"(":{"b":{"0":{"+":{"b":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"+":{"b":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"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":{}}},"=":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178}}}}},"1":{"df":4,"docs":{"164":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178}}},"c":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"c":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},">":{"1":{"df":1,"docs":{"61":{"tf":2.0}}},"df":0,"docs":{}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":3,"docs":{"82":{"tf":3.4641016151377544},"83":{"tf":2.0},"84":{"tf":3.0}}}},"k":{"df":1,"docs":{"98":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":3,"docs":{"82":{"tf":3.4641016151377544},"83":{"tf":2.0},"84":{"tf":3.0}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"116":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}}}},"df":0,"docs":{},"l":{".":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":27,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.7320508075688772},"144":{"tf":1.0},"2":{"tf":1.7320508075688772},"211":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.7320508075688772},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"42":{"tf":2.8284271247461903},"43":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":3.1622776601683795},"96":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":2,"docs":{"257":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772}},"r":{"'":{"df":1,"docs":{"42":{"tf":1.0}}},"df":6,"docs":{"139":{"tf":1.0},"257":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.7320508075688772},"64":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"129":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"214":{"tf":1.0},"216":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"c":{"df":11,"docs":{"104":{"tf":1.0},"116":{"tf":1.7320508075688772},"206":{"tf":1.0},"233":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"244":{"tf":1.0},"68":{"tf":1.0},"85":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"212":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"111":{"tf":1.0},"173":{"tf":1.0},"195":{"tf":1.0},"244":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":32,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"177":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.4142135623730951},"233":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"34":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"65":{"tf":2.0},"81":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":2.0}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}},"w":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":37,"docs":{"106":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"164":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"198":{"tf":1.0},"23":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":2.8284271247461903},"53":{"tf":2.6457513110645907},"56":{"tf":1.0},"57":{"tf":4.358898943540674},"58":{"tf":4.242640687119285},"59":{"tf":3.7416573867739413},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.7320508075688772},"77":{"tf":1.0},"82":{"tf":3.605551275463989},"83":{"tf":5.656854249492381},"84":{"tf":2.8284271247461903},"85":{"tf":2.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"113":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":2.23606797749979}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"1":{"df":1,"docs":{"118":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"118":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"118":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"209":{"tf":1.0},"77":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":57,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"111":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"127":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"198":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"223":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772},"257":{"tf":2.6457513110645907},"258":{"tf":2.449489742783178},"259":{"tf":2.8284271247461903},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"264":{"tf":1.0},"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.0},"89":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"17":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{",":{"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"":{",":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"":{",":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":56,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.7320508075688772},"151":{"tf":1.0},"169":{"tf":2.6457513110645907},"17":{"tf":1.0},"170":{"tf":1.7320508075688772},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":2.449489742783178},"211":{"tf":3.0},"212":{"tf":1.7320508075688772},"213":{"tf":2.23606797749979},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":1.4142135623730951},"219":{"tf":2.23606797749979},"233":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.7320508075688772},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"265":{"tf":2.449489742783178},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"42":{"tf":1.0},"55":{"tf":1.7320508075688772},"81":{"tf":2.0},"82":{"tf":3.0},"83":{"tf":3.0},"84":{"tf":1.0},"88":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"d":{"d":{"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"82":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"83":{"tf":1.0}},"z":{"df":1,"docs":{"83":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"83":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"169":{"tf":1.0},"217":{"tf":1.0}}},"df":16,"docs":{"169":{"tf":1.0},"210":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":2.0},"221":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":9,"docs":{"105":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":2.0},"109":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":2.8284271247461903},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":12,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"_":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"221":{"tf":1.0},"226":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.0}}},"df":67,"docs":{"102":{"tf":1.0},"104":{"tf":3.0},"105":{"tf":1.0},"106":{"tf":2.449489742783178},"107":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":4.123105625617661},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":2.0},"205":{"tf":2.0},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"215":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":3.3166247903554},"221":{"tf":4.123105625617661},"222":{"tf":4.0},"223":{"tf":3.7416573867739413},"224":{"tf":2.6457513110645907},"225":{"tf":1.7320508075688772},"226":{"tf":3.1622776601683795},"227":{"tf":2.6457513110645907},"228":{"tf":3.0},"229":{"tf":2.6457513110645907},"230":{"tf":3.1622776601683795},"231":{"tf":2.449489742783178},"232":{"tf":2.8284271247461903},"233":{"tf":3.1622776601683795},"234":{"tf":2.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"237":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"240":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":3.605551275463989},"246":{"tf":2.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":1.7320508075688772},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"252":{"tf":2.6457513110645907},"253":{"tf":2.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"259":{"tf":2.449489742783178},"260":{"tf":2.23606797749979},"261":{"tf":1.7320508075688772},"262":{"tf":2.8284271247461903},"263":{"tf":2.6457513110645907},"264":{"tf":2.23606797749979},"269":{"tf":2.0},"271":{"tf":1.0},"273":{"tf":2.6457513110645907},"88":{"tf":2.449489742783178},"89":{"tf":1.7320508075688772}},"’":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"4":{"tf":1.0},"7":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"270":{"tf":1.7320508075688772},"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"113":{"tf":1.0},"228":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"245":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"+":{"1":{",":{"df":0,"docs":{},"v":{"2":{",":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"df":0,"docs":{},"v":{"1":{",":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"130":{"tf":1.0},"141":{"tf":1.0},"154":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"245":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.0},"64":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"′":{"df":0,"docs":{},"−":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"+":{"1":{")":{"=":{"0":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":15,"docs":{"130":{"tf":1.4142135623730951},"154":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":2.23606797749979},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"df":27,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"33":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.0},"62":{"tf":1.7320508075688772},"69":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":2.23606797749979}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"104":{"tf":1.0},"118":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"68":{"tf":1.0},"99":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":73,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":4.358898943540674},"106":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.6457513110645907},"113":{"tf":1.4142135623730951},"114":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.23606797749979},"120":{"tf":3.0},"121":{"tf":2.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":3.1622776601683795},"128":{"tf":2.8284271247461903},"129":{"tf":3.0},"130":{"tf":2.0},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"169":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"211":{"tf":3.7416573867739413},"212":{"tf":2.23606797749979},"213":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":2.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":3.0},"228":{"tf":2.23606797749979},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":4.123105625617661},"234":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":2.23606797749979},"243":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":3.3166247903554},"246":{"tf":4.0},"247":{"tf":3.1622776601683795},"248":{"tf":1.0},"250":{"tf":2.6457513110645907},"251":{"tf":1.4142135623730951},"254":{"tf":3.1622776601683795},"255":{"tf":2.8284271247461903},"256":{"tf":3.0},"257":{"tf":4.0},"258":{"tf":4.358898943540674},"259":{"tf":2.449489742783178},"261":{"tf":2.8284271247461903},"262":{"tf":2.23606797749979},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"266":{"tf":4.358898943540674},"267":{"tf":1.0},"268":{"tf":2.23606797749979},"271":{"tf":2.449489742783178},"87":{"tf":2.6457513110645907},"89":{"tf":2.8284271247461903}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":27,"docs":{"116":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"208":{"tf":1.7320508075688772},"213":{"tf":1.0},"217":{"tf":1.0},"224":{"tf":1.7320508075688772},"226":{"tf":1.0},"230":{"tf":1.4142135623730951},"234":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"259":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"89":{"tf":1.0}}}}},"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":6,"docs":{"126":{"tf":1.7320508075688772},"222":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0},"272":{"tf":1.4142135623730951},"3":{"tf":1.0}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"256":{"tf":1.0},"257":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":3.0}}}}},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"245":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"77":{"tf":1.7320508075688772},"8":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0},"33":{"tf":1.0},"67":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"69":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":12,"docs":{"116":{"tf":1.7320508075688772},"199":{"tf":1.0},"205":{"tf":1.0},"219":{"tf":1.7320508075688772},"229":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":2.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":4,"docs":{"209":{"tf":1.0},"266":{"tf":1.0},"33":{"tf":1.4142135623730951},"83":{"tf":2.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"17":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"70":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":4.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":18,"docs":{"13":{"tf":2.23606797749979},"15":{"tf":1.0},"16":{"tf":2.0},"2":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":2.0},"38":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"48":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.0},"55":{"tf":1.0}}}}}},"t":{"df":16,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"3":{"tf":1.0}}},"x":{"df":7,"docs":{"102":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"270":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"88":{"tf":1.0}}}},"i":{"df":1,"docs":{"113":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"10":{"tf":1.4142135623730951},"102":{"tf":1.0},"194":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"245":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":2.23606797749979},"271":{"tf":2.23606797749979},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772},"65":{"tf":1.0},"88":{"tf":2.6457513110645907},"89":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":3,"docs":{"224":{"tf":1.0},"245":{"tf":1.0},"6":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"111":{"tf":1.0},"127":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":94,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":2.8284271247461903},"105":{"tf":2.449489742783178},"106":{"tf":2.0},"107":{"tf":2.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"115":{"tf":2.449489742783178},"116":{"tf":2.23606797749979},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.7320508075688772},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":2.8284271247461903},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":2.449489742783178},"209":{"tf":2.449489742783178},"211":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":2.449489742783178},"224":{"tf":1.0},"228":{"tf":1.4142135623730951},"232":{"tf":3.872983346207417},"233":{"tf":2.6457513110645907},"234":{"tf":2.449489742783178},"235":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"243":{"tf":3.0},"244":{"tf":1.7320508075688772},"245":{"tf":4.242640687119285},"246":{"tf":2.23606797749979},"247":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"268":{"tf":1.7320508075688772},"271":{"tf":1.4142135623730951},"272":{"tf":2.449489742783178},"274":{"tf":1.7320508075688772},"47":{"tf":1.0},"58":{"tf":3.1622776601683795},"65":{"tf":1.0},"68":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"88":{"tf":2.0},"99":{"tf":2.8284271247461903}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"247":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":6,"docs":{"232":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":18,"docs":{"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"2":{"tf":1.0},"211":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"245":{"tf":2.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"271":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"49":{"tf":1.7320508075688772},"60":{"tf":2.0},"61":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"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":{"23":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"223":{"tf":2.23606797749979},"262":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"102":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.4142135623730951},"265":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"213":{"tf":1.4142135623730951},"218":{"tf":1.0},"241":{"tf":1.0},"258":{"tf":2.6457513110645907},"77":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"d":{"df":5,"docs":{"101":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"209":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"105":{"tf":2.0},"11":{"tf":1.0},"111":{"tf":1.4142135623730951},"126":{"tf":1.0},"138":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"261":{"tf":1.0},"265":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"32":{"tf":1.0},"38":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.4142135623730951},"81":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}},"t":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"1":{"=":{"3":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"1":{"=":{"1":{"0":{"0":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"=":{"2":{"0":{"0":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"39":{"tf":1.0}}},"df":3,"docs":{"111":{"tf":1.0},"39":{"tf":2.6457513110645907},"63":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"218":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951}},"t":{"_":{"_":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":133,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":3.605551275463989},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":3.0},"117":{"tf":3.3166247903554},"118":{"tf":3.3166247903554},"119":{"tf":2.23606797749979},"120":{"tf":2.8284271247461903},"121":{"tf":2.6457513110645907},"122":{"tf":2.6457513110645907},"123":{"tf":2.6457513110645907},"124":{"tf":2.23606797749979},"125":{"tf":2.0},"126":{"tf":3.3166247903554},"127":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"134":{"tf":2.0},"135":{"tf":2.8284271247461903},"136":{"tf":2.0},"137":{"tf":4.123105625617661},"138":{"tf":2.6457513110645907},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":2.449489742783178},"143":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":2.23606797749979},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"178":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"212":{"tf":2.449489742783178},"213":{"tf":2.0},"214":{"tf":1.0},"218":{"tf":2.23606797749979},"219":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":3.3166247903554},"225":{"tf":1.4142135623730951},"226":{"tf":3.1622776601683795},"227":{"tf":2.449489742783178},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"231":{"tf":2.449489742783178},"241":{"tf":2.0},"242":{"tf":2.6457513110645907},"243":{"tf":3.1622776601683795},"244":{"tf":2.23606797749979},"245":{"tf":4.58257569495584},"246":{"tf":1.4142135623730951},"248":{"tf":1.7320508075688772},"249":{"tf":1.0},"250":{"tf":2.0},"251":{"tf":1.7320508075688772},"252":{"tf":2.23606797749979},"253":{"tf":1.0},"254":{"tf":2.449489742783178},"255":{"tf":2.0},"256":{"tf":2.6457513110645907},"257":{"tf":2.6457513110645907},"258":{"tf":1.7320508075688772},"259":{"tf":3.605551275463989},"262":{"tf":3.0},"263":{"tf":2.0},"264":{"tf":2.6457513110645907},"267":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":2.6457513110645907},"4":{"tf":1.0},"87":{"tf":3.4641016151377544},"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"35":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":8,"docs":{"122":{"tf":1.0},"126":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"233":{"tf":1.0},"65":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":80,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.0},"105":{"tf":3.7416573867739413},"111":{"tf":2.23606797749979},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"130":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"217":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":1.4142135623730951},"246":{"tf":2.8284271247461903},"247":{"tf":2.23606797749979},"250":{"tf":1.7320508075688772},"255":{"tf":2.0},"256":{"tf":2.0},"257":{"tf":2.23606797749979},"258":{"tf":3.605551275463989},"259":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":3.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.0},"97":{"tf":2.8284271247461903},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"116":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"258":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"259":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":23,"docs":{"2":{"tf":2.6457513110645907},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":1.0},"257":{"tf":3.4641016151377544},"258":{"tf":3.605551275463989},"259":{"tf":2.6457513110645907},"260":{"tf":1.4142135623730951},"3":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":4.0},"42":{"tf":2.449489742783178},"43":{"tf":2.23606797749979},"44":{"tf":3.1622776601683795},"45":{"tf":3.872983346207417},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"88":{"tf":1.0},"95":{"tf":2.0},"96":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":5,"docs":{"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.7320508075688772},"258":{"tf":1.7320508075688772},"77":{"tf":1.0}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":27,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":1.7320508075688772},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":2.449489742783178},"120":{"tf":1.0},"121":{"tf":1.0},"14":{"tf":1.7320508075688772},"143":{"tf":2.0},"144":{"tf":2.449489742783178},"148":{"tf":2.23606797749979},"2":{"tf":2.0},"223":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"46":{"tf":2.449489742783178},"47":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":2.0},"7":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"103":{"tf":1.0},"262":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0}}},"t":{"df":2,"docs":{"137":{"tf":1.0},"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"113":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"i":{"df":21,"docs":{"10":{"tf":1.0},"106":{"tf":2.0},"111":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"137":{"tf":1.4142135623730951},"150":{"tf":1.0},"184":{"tf":2.0},"212":{"tf":1.4142135623730951},"234":{"tf":1.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.4142135623730951},"74":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":2.23606797749979},"69":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":22,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"137":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"220":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":19,"docs":{"0":{"tf":1.0},"107":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"166":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"227":{"tf":1.4142135623730951},"230":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"274":{"tf":1.0},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.7320508075688772},"126":{"tf":1.0},"138":{"tf":1.0},"208":{"tf":1.4142135623730951},"228":{"tf":1.0},"246":{"tf":1.4142135623730951},"247":{"tf":1.0},"259":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"266":{"tf":1.0},"48":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":2.0},"122":{"tf":3.3166247903554},"123":{"tf":2.23606797749979},"124":{"tf":1.4142135623730951},"126":{"tf":2.0},"23":{"tf":2.449489742783178},"48":{"tf":2.0},"58":{"tf":1.4142135623730951},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.0},"150":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"64":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"211":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}},"u":{"df":2,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"142":{"tf":1.0},"262":{"tf":1.0},"274":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"257":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":4,"docs":{"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"274":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":12,"docs":{"2":{"tf":1.0},"205":{"tf":2.449489742783178},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"229":{"tf":1.0},"274":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"140":{"tf":1.0},"192":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":1.0}},"w":{"df":3,"docs":{"140":{"tf":1.0},"193":{"tf":2.0},"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{"0":{"df":1,"docs":{"45":{"tf":2.0}}},"1":{"df":1,"docs":{"45":{"tf":2.23606797749979}}},"2":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}},"df":8,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"257":{"tf":2.23606797749979},"258":{"tf":1.7320508075688772},"259":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":67,"docs":{"1":{"tf":1.0},"103":{"tf":2.0},"105":{"tf":2.23606797749979},"106":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"241":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"259":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"42":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"72":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"255":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":57,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"130":{"tf":1.7320508075688772},"150":{"tf":1.0},"154":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"222":{"tf":2.0},"228":{"tf":1.0},"23":{"tf":2.449489742783178},"231":{"tf":1.0},"232":{"tf":3.4641016151377544},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":2.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":2.0},"259":{"tf":1.0},"265":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":4.242640687119285},"53":{"tf":3.1622776601683795},"54":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951},"56":{"tf":2.6457513110645907},"57":{"tf":5.830951894845301},"58":{"tf":4.58257569495584},"59":{"tf":4.0},"60":{"tf":3.4641016151377544},"61":{"tf":2.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":2.23606797749979},"66":{"tf":3.605551275463989},"68":{"tf":2.8284271247461903},"83":{"tf":1.0},"84":{"tf":2.449489742783178},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{")":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"i":{"c":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"−":{"c":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"257":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"257":{"tf":1.0},"258":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"←":{"(":{"a":{"+":{"b":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"b":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"∧":{"b":{"df":2,"docs":{"162":{"tf":1.0},"179":{"tf":1.0}}},"df":0,"docs":{}},"∨":{"b":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"⊕":{"b":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"⋅":{"2":{"b":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"158":{"tf":1.0}},"−":{"1":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"+":{"b":{"df":1,"docs":{"57":{"tf":1.0}},"−":{"2":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"⋅":{"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"⋅":{"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"∗":{"b":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"⋅":{"b":{"df":2,"docs":{"52":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{",":{"b":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"{":{"1":{",":{"0":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"53":{"tf":2.6457513110645907},"59":{"tf":3.1622776601683795}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{",":{"b":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"59":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"⌊":{"a":{"/":{"2":{"3":{"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"57":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{",":{"c":{",":{"b":{",":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"e":{")":{"df":0,"docs":{},"←":{"a":{"+":{"b":{"+":{"c":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"c":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"}":{"df":0,"docs":{},"←":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{",":{"b":{",":{"c":{"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":{},"←":{"[":{"a":{"d":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"0":{"df":6,"docs":{"219":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":2.0},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0}}},"1":{"df":6,"docs":{"219":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":2.0},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0}}},"=":{"b":{"=":{"0":{"df":0,"docs":{},"∑":{"6":{"df":0,"docs":{},"":{"(":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"2":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"a":{",":{"b":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"192":{"tf":1.0},"193":{"tf":1.0},"61":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"n":{"df":1,"docs":{"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"77":{"tf":2.0}}}}}}},"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.7320508075688772},"270":{"tf":1.4142135623730951},"272":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"65":{"tf":3.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0},"8":{"tf":1.0},"88":{"tf":1.0}},"←":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"]":{".":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":21,"docs":{"116":{"tf":1.7320508075688772},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"198":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"57":{"tf":3.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":2.449489742783178},"66":{"tf":1.0},"68":{"tf":2.6457513110645907},"84":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"258":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":4,"docs":{"16":{"tf":1.0},"23":{"tf":2.449489742783178},"24":{"tf":1.0},"3":{"tf":1.4142135623730951}},"g":{"df":3,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":2.6457513110645907}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"d":{"df":38,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":1.7320508075688772},"102":{"tf":2.449489742783178},"103":{"tf":2.23606797749979},"104":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":2.23606797749979},"108":{"tf":2.0},"109":{"tf":2.449489742783178},"110":{"tf":2.0},"111":{"tf":4.358898943540674},"112":{"tf":2.0},"113":{"tf":3.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":2.8284271247461903},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":2.449489742783178},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"138":{"tf":1.0},"147":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"269":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"2":{"df":1,"docs":{"112":{"tf":1.0}}},"4":{"df":1,"docs":{"112":{"tf":1.0}}},"6":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"246":{"tf":1.0},"250":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.4142135623730951}}}}}}}},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"111":{"tf":1.0},"122":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"106":{"tf":1.0},"111":{"tf":2.0},"122":{"tf":2.8284271247461903},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"131":{"tf":1.0},"134":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"44":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":4,"docs":{"127":{"tf":1.0},"6":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"81":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"206":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"65":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":57,"docs":{"101":{"tf":1.0},"105":{"tf":1.7320508075688772},"111":{"tf":1.0},"116":{"tf":2.0},"118":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":2.449489742783178},"130":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.4142135623730951},"238":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":2.449489742783178},"252":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"260":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":3.0},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"54":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"19":{"tf":1.0}}}}}}},"g":{"(":{"c":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":28,"docs":{"103":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":3.4641016151377544},"139":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":3.0},"143":{"tf":3.0},"144":{"tf":2.23606797749979},"183":{"tf":1.0},"209":{"tf":2.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"222":{"tf":2.6457513110645907},"223":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"234":{"tf":1.0},"245":{"tf":1.4142135623730951},"257":{"tf":1.0},"274":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":2.8284271247461903}},"e":{"=":{"1":{"+":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"+":{"4":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":33,"docs":{"118":{"tf":1.4142135623730951},"126":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}},"2":{"+":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"(":{"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":32,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"133":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":2.0},"167":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"199":{"tf":1.0},"218":{"tf":1.4142135623730951},"231":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":2.449489742783178},"251":{"tf":1.4142135623730951},"259":{"tf":2.0},"262":{"tf":1.7320508075688772}},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"1":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"1":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"2":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"+":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"170":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"242":{"tf":1.0},"251":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0}},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"2":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"4":{"+":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"125":{"tf":1.7320508075688772},"142":{"tf":1.0},"147":{"tf":1.0},"231":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0}},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"3":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"5":{"df":17,"docs":{"114":{"tf":2.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"147":{"tf":1.4142135623730951},"169":{"tf":1.0},"208":{"tf":1.0},"227":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"259":{"tf":1.7320508075688772}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"6":{"df":12,"docs":{"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":2.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"259":{"tf":1.4142135623730951}}},"7":{"(":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":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":{"114":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.7320508075688772},"122":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0}}},"8":{"df":3,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0}}},"9":{"df":4,"docs":{"114":{"tf":1.0},"124":{"tf":1.0},"135":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"129":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951}}}},"t":{"a":{"df":5,"docs":{"238":{"tf":1.0},"245":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":2.0},"258":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":22,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"135":{"tf":1.4142135623730951},"138":{"tf":1.0},"170":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"250":{"tf":1.0},"252":{"tf":1.0},"263":{"tf":1.0},"36":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"112":{"tf":1.0},"126":{"tf":1.0},"169":{"tf":1.0},"244":{"tf":1.0},"266":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":30,"docs":{"127":{"tf":2.6457513110645907},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":2.449489742783178},"133":{"tf":1.0},"134":{"tf":2.449489742783178},"150":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":2.23606797749979},"191":{"tf":2.23606797749979},"196":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"239":{"tf":1.0},"4":{"tf":1.4142135623730951},"42":{"tf":2.6457513110645907},"45":{"tf":2.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":2.449489742783178},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":86,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.23606797749979},"105":{"tf":1.7320508075688772},"106":{"tf":2.6457513110645907},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":2.6457513110645907},"113":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"181":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.7320508075688772},"245":{"tf":2.449489742783178},"246":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":40,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"137":{"tf":1.0},"147":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"32":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":191,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.7320508075688772},"254":{"tf":2.449489742783178},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"81":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"df":3,"docs":{"17":{"tf":1.0},"257":{"tf":1.0},"8":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"2":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"106":{"tf":1.0},"137":{"tf":1.4142135623730951},"16":{"tf":1.0},"209":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"104":{"tf":1.0},"222":{"tf":1.0},"239":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"107":{"tf":1.4142135623730951},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"128":{"tf":1.0},"130":{"tf":1.0},"170":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"239":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":16,"docs":{"2":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"255":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":59,"docs":{"106":{"tf":3.872983346207417},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.0},"113":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":23,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":2.23606797749979},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"118":{"tf":1.4142135623730951},"24":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"255":{"tf":1.0},"256":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"36":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"18":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"243":{"tf":1.0},"82":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"137":{"tf":1.4142135623730951},"209":{"tf":1.0},"226":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"23":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":1,"docs":{"52":{"tf":1.4142135623730951}},"i":{"d":{"df":20,"docs":{"104":{"tf":2.449489742783178},"111":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"245":{"tf":1.0},"259":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"65":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"n":{"df":1,"docs":{"98":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":59,"docs":{"220":{"tf":1.0},"226":{"tf":1.0},"32":{"tf":2.23606797749979},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.23606797749979},"40":{"tf":2.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"212":{"tf":1.0},"239":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"264":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"116":{"tf":1.0},"209":{"tf":3.3166247903554},"233":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":6,"docs":{"105":{"tf":1.0},"19":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":23,"docs":{"105":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"116":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"135":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":2.0},"255":{"tf":1.4142135623730951},"259":{"tf":2.0},"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":6,"docs":{"115":{"tf":1.4142135623730951},"127":{"tf":1.0},"138":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"21":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":13,"docs":{"113":{"tf":2.449489742783178},"128":{"tf":1.0},"131":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"183":{"tf":2.23606797749979},"31":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.7320508075688772},"8":{"tf":1.0},"83":{"tf":2.0},"9":{"tf":1.0}},"w":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"126":{"tf":1.0},"68":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"18":{"tf":1.0}}}},"p":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"184":{"tf":1.7320508075688772}}}},".":{"0":{"df":1,"docs":{"60":{"tf":1.0}}},"2":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"184":{"tf":1.0}}},"1":{"1":{"df":1,"docs":{"141":{"tf":1.0}}},"3":{"df":1,"docs":{"141":{"tf":1.0}}},"5":{"df":1,"docs":{"141":{"tf":1.0}}},"df":2,"docs":{"137":{"tf":1.0},"141":{"tf":1.0}}},"2":{"df":1,"docs":{"141":{"tf":1.0}}},"3":{"df":1,"docs":{"141":{"tf":1.0}}},"4":{"df":1,"docs":{"141":{"tf":1.0}}},"5":{"df":2,"docs":{"141":{"tf":1.0},"184":{"tf":1.0}}},"6":{"df":1,"docs":{"141":{"tf":1.0}}},"7":{"df":1,"docs":{"141":{"tf":1.0}}},"9":{"df":1,"docs":{"141":{"tf":1.0}}},"df":6,"docs":{"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"184":{"tf":1.0},"23":{"tf":1.0},"60":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"216":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"184":{"tf":1.0}}},"w":{".":{"0":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"60":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":22,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":2.6457513110645907},"239":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}},"←":{"(":{"a":{"+":{"b":{"+":{"c":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"b":{"+":{"c":{")":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{"1":{",":{"0":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"⌊":{"(":{"a":{"df":0,"docs":{},"⋅":{"b":{")":{"/":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{",":{"d":{"]":{"df":0,"docs":{},"←":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"]":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"+":{"1":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"g":{"df":29,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"111":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"2":{"tf":1.0},"210":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.4142135623730951},"8":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"0":{"df":3,"docs":{"138":{"tf":1.7320508075688772},"143":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772}},"":{"df":0,"docs":{},"−":{"b":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"5":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"4":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"1":{"df":3,"docs":{"138":{"tf":1.7320508075688772},"144":{"tf":1.0},"77":{"tf":1.7320508075688772}},"":{"df":0,"docs":{},"−":{"b":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"5":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"{":{"b":{",":{"a":{",":{"df":0,"docs":{},"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"192":{"tf":1.0},"193":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":63,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"127":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.7320508075688772},"2":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.7320508075688772},"221":{"tf":1.7320508075688772},"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"226":{"tf":2.23606797749979},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.7320508075688772},"247":{"tf":1.4142135623730951},"251":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"258":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"137":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.4142135623730951},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"33":{"tf":1.0},"7":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":8,"docs":{"239":{"tf":1.0},"240":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":54,"docs":{"106":{"tf":1.0},"113":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"148":{"tf":1.0},"210":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"47":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":1,"docs":{"184":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":96,"docs":{"10":{"tf":2.0},"100":{"tf":1.7320508075688772},"104":{"tf":3.872983346207417},"109":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951},"111":{"tf":2.449489742783178},"113":{"tf":2.449489742783178},"116":{"tf":1.4142135623730951},"127":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":2.23606797749979},"169":{"tf":1.0},"17":{"tf":2.449489742783178},"170":{"tf":2.6457513110645907},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"190":{"tf":2.449489742783178},"191":{"tf":2.449489742783178},"192":{"tf":2.0},"193":{"tf":2.23606797749979},"197":{"tf":1.4142135623730951},"198":{"tf":2.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"202":{"tf":1.7320508075688772},"203":{"tf":2.0},"204":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":2.0},"208":{"tf":2.23606797749979},"209":{"tf":3.4641016151377544},"210":{"tf":1.0},"232":{"tf":2.0},"233":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":3.605551275463989},"239":{"tf":2.449489742783178},"240":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":2.0},"246":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":2.23606797749979},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"34":{"tf":2.8284271247461903},"42":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":1.0},"6":{"tf":2.6457513110645907},"60":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":2.449489742783178},"66":{"tf":3.872983346207417},"68":{"tf":1.4142135623730951},"70":{"tf":3.1622776601683795},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"79":{"tf":3.1622776601683795},"8":{"tf":1.4142135623730951},"80":{"tf":3.1622776601683795},"81":{"tf":1.7320508075688772},"86":{"tf":2.449489742783178},"87":{"tf":2.449489742783178},"97":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}}}}},"i":{"df":1,"docs":{"274":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":17,"docs":{"105":{"tf":2.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0},"267":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.4142135623730951},"75":{"tf":2.0},"77":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"3":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":18,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"123":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"170":{"tf":1.4142135623730951},"234":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}}},"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}},"df":57,"docs":{"100":{"tf":1.0},"101":{"tf":4.242640687119285},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":2.23606797749979},"108":{"tf":1.4142135623730951},"110":{"tf":2.449489742783178},"111":{"tf":2.6457513110645907},"112":{"tf":3.605551275463989},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":2.23606797749979},"120":{"tf":2.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"131":{"tf":1.0},"144":{"tf":1.0},"18":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"233":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"271":{"tf":1.0},"37":{"tf":2.23606797749979},"38":{"tf":2.449489742783178},"39":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":2.23606797749979},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"68":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.4142135623730951},"9":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"138":{"tf":1.0},"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":44,"docs":{"113":{"tf":2.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"129":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"223":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":2.23606797749979},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"250":{"tf":2.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"255":{"tf":1.4142135623730951},"259":{"tf":2.0},"260":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"1":{"tf":1.0},"130":{"tf":1.0},"266":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":43,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"150":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.7320508075688772},"234":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.4142135623730951},"248":{"tf":1.0},"251":{"tf":2.23606797749979},"252":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"23":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.0},"118":{"tf":1.0},"150":{"tf":1.0},"227":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"25":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"112":{"tf":2.8284271247461903},"117":{"tf":2.0},"118":{"tf":1.7320508075688772},"17":{"tf":1.0},"233":{"tf":2.0},"245":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}}}}}}},"q":{".":{"2":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"140":{"tf":1.0},"164":{"tf":2.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":25,"docs":{"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"151":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":2.0},"267":{"tf":1.0},"34":{"tf":1.0},"55":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":2.449489742783178},"87":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":3,"docs":{"170":{"tf":1.0},"243":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}}},"w":{"df":1,"docs":{"53":{"tf":1.0}}},"z":{"df":2,"docs":{"139":{"tf":1.0},"165":{"tf":2.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"110":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"40":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":2.449489742783178},"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"t":{"c":{"df":19,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"212":{"tf":1.0},"232":{"tf":1.4142135623730951},"239":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":1,"docs":{"274":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":6,"docs":{"118":{"tf":1.0},"133":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"19":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":10,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":1.0},"213":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":14,"docs":{"101":{"tf":1.4142135623730951},"121":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"169":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"250":{"tf":1.0},"267":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"86":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":50,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":2.6457513110645907},"190":{"tf":1.0},"191":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"247":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"254":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"272":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":2.23606797749979},"40":{"tf":1.0},"45":{"tf":1.7320508075688772},"49":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"df":11,"docs":{"111":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"230":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"105":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"234":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"42":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":5,"docs":{"113":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"234":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{".":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"37":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":3,"docs":{"23":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951}}}}},"u":{"6":{"4":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"38":{"tf":1.0},"42":{"tf":2.449489742783178},"44":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":121,"docs":{"0":{"tf":2.0},"10":{"tf":1.4142135623730951},"100":{"tf":3.0},"101":{"tf":3.3166247903554},"102":{"tf":1.4142135623730951},"103":{"tf":2.449489742783178},"105":{"tf":3.3166247903554},"106":{"tf":5.385164807134504},"107":{"tf":1.4142135623730951},"108":{"tf":2.6457513110645907},"109":{"tf":2.23606797749979},"11":{"tf":2.0},"110":{"tf":3.872983346207417},"111":{"tf":4.47213595499958},"112":{"tf":3.605551275463989},"113":{"tf":3.0},"114":{"tf":3.1622776601683795},"115":{"tf":2.0},"116":{"tf":2.6457513110645907},"117":{"tf":3.0},"118":{"tf":3.4641016151377544},"120":{"tf":2.6457513110645907},"121":{"tf":1.4142135623730951},"122":{"tf":2.8284271247461903},"123":{"tf":2.8284271247461903},"124":{"tf":2.0},"125":{"tf":1.4142135623730951},"126":{"tf":2.449489742783178},"127":{"tf":1.7320508075688772},"129":{"tf":1.0},"13":{"tf":2.0},"132":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"148":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":3.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"20":{"tf":2.23606797749979},"209":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"211":{"tf":1.4142135623730951},"217":{"tf":2.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":2.0},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":2.0},"232":{"tf":4.242640687119285},"233":{"tf":2.0},"234":{"tf":1.0},"236":{"tf":2.0},"237":{"tf":2.0},"238":{"tf":2.23606797749979},"239":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"240":{"tf":2.6457513110645907},"241":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"260":{"tf":2.0},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":2.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"38":{"tf":2.23606797749979},"41":{"tf":3.605551275463989},"42":{"tf":2.6457513110645907},"43":{"tf":1.4142135623730951},"44":{"tf":2.449489742783178},"45":{"tf":4.898979485566356},"46":{"tf":1.0},"47":{"tf":2.449489742783178},"48":{"tf":1.0},"49":{"tf":2.6457513110645907},"50":{"tf":1.0},"55":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"8":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.23606797749979},"89":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":2.23606797749979},"92":{"tf":1.7320508075688772},"93":{"tf":2.0},"94":{"tf":2.6457513110645907},"95":{"tf":2.6457513110645907},"96":{"tf":2.6457513110645907},"97":{"tf":1.4142135623730951},"98":{"tf":4.358898943540674},"99":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"|":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{":":{":":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}},"t":{"df":12,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"147":{"tf":1.0},"24":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.0}}}},"p":{".":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"c":{"df":2,"docs":{"139":{"tf":1.0},"166":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"33":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"166":{"tf":1.7320508075688772},"28":{"tf":1.0},"52":{"tf":1.7320508075688772}},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"1":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"19":{"tf":2.0},"2":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"221":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"38":{"tf":1.0},"50":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":2.8284271247461903},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"265":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"105":{"tf":1.0},"195":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"166":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}},"z":{".":{"2":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"38":{"tf":1.0},"40":{"tf":1.0}}}}},"u":{"6":{"4":{":":{":":{"a":{"d":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"38":{"tf":2.6457513110645907},"43":{"tf":1.0}}}},"s":{"df":7,"docs":{"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"132":{"tf":1.0},"137":{"tf":1.0},"199":{"tf":1.0},"35":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"118":{"tf":1.0},"134":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"33":{"tf":1.0},"46":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951}}}}}}},"t":{"2":{"a":{"d":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"139":{"tf":1.0},"167":{"tf":2.0},"54":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"2":{"tf":1.0},"213":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":6,"docs":{"167":{"tf":1.0},"209":{"tf":1.7320508075688772},"253":{"tf":1.0},"54":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":2.449489742783178}}}},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"1":{"tf":1.0},"2":{"tf":1.4142135623730951},"33":{"tf":1.0},"38":{"tf":1.0},"8":{"tf":1.0}}}}},"r":{"a":{"df":6,"docs":{"138":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"←":{"df":0,"docs":{},"⌊":{"(":{"a":{"+":{"b":{"+":{"c":{")":{"/":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"b":{"+":{"c":{")":{"/":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"0":{"df":1,"docs":{"106":{"tf":1.4142135623730951}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"106":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}},"a":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.4142135623730951}},"":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"=":{"1":{"df":2,"docs":{"244":{"tf":1.0},"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"244":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":13,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"233":{"tf":1.0},"35":{"tf":1.0},"46":{"tf":1.0}}}}}},"t":{"df":8,"docs":{"100":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"271":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"209":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}},"d":{"d":{"3":{"_":{"df":0,"docs":{},"m":{"a":{"d":{"d":{"df":0,"docs":{},"":{"=":{"b":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"5":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"4":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"2":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":33,"docs":{"106":{"tf":2.0},"110":{"tf":1.0},"151":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":2.8284271247461903},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":3.0},"58":{"tf":3.0},"59":{"tf":2.8284271247461903},"61":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":2.0},"68":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"82":{"tf":3.0},"83":{"tf":3.0},"84":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"s":{"df":5,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"118":{"tf":1.0},"49":{"tf":1.0},"99":{"tf":1.0}},"e":{"_":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"⋅":{"(":{"b":{"2":{"df":0,"docs":{},"−":{"b":{")":{"=":{"0":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"7":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"13":{"tf":1.0},"55":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}}},"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"=":{"1":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"113":{"tf":1.0},"148":{"tf":1.0}},"i":{"df":1,"docs":{"116":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"137":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"68":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.7320508075688772},"13":{"tf":1.7320508075688772},"2":{"tf":2.0},"23":{"tf":1.0},"257":{"tf":1.0},"3":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"n":{"d":{",":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"4":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"113":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"g":{"c":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"=":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":8,"docs":{"19":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"234":{"tf":1.0},"274":{"tf":1.0},"33":{"tf":1.0},"62":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"216":{"tf":1.0},"221":{"tf":1.0},"65":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}}},"g":{"1":{"df":1,"docs":{"126":{"tf":1.4142135623730951}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"2":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"4":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"=":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"c":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"2":{"df":1,"docs":{"126":{"tf":1.4142135623730951}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"c":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"df":1,"docs":{"126":{"tf":1.4142135623730951}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"c":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"c":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"c":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}},"":{"=":{"b":{"c":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}},"":{"=":{"1":{"df":3,"docs":{"234":{"tf":1.4142135623730951},"242":{"tf":1.0},"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"b":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"18":{"tf":2.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":55,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"111":{"tf":2.0},"127":{"tf":1.0},"139":{"tf":2.6457513110645907},"140":{"tf":2.23606797749979},"155":{"tf":2.23606797749979},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.7320508075688772},"170":{"tf":2.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.7320508075688772},"209":{"tf":2.0},"210":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"246":{"tf":1.7320508075688772},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"258":{"tf":1.7320508075688772},"266":{"tf":1.7320508075688772},"34":{"tf":2.0},"44":{"tf":1.0},"50":{"tf":2.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"6":{"tf":2.23606797749979},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":2.23606797749979},"72":{"tf":1.0},"77":{"tf":2.0},"87":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"35":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"18":{"tf":2.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0}}},"l":{"df":2,"docs":{"116":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":17,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"211":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.7320508075688772},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"272":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0}}}},"d":{"df":2,"docs":{"213":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":11,"docs":{"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"129":{"tf":1.0},"17":{"tf":1.0},"231":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"267":{"tf":1.0},"49":{"tf":1.0},"8":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":71,"docs":{"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":2.8284271247461903},"106":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"111":{"tf":3.605551275463989},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.23606797749979},"120":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"147":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"246":{"tf":1.7320508075688772},"247":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":2.6457513110645907},"65":{"tf":1.7320508075688772},"66":{"tf":3.1622776601683795},"70":{"tf":1.0},"77":{"tf":3.0},"79":{"tf":2.0},"80":{"tf":2.0},"87":{"tf":1.0},"92":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979}}}}},"t":{"df":5,"docs":{"111":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"2":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"212":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":45,"docs":{"103":{"tf":2.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":2.23606797749979},"113":{"tf":3.1622776601683795},"114":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"123":{"tf":2.0},"125":{"tf":3.0},"126":{"tf":2.0},"132":{"tf":2.6457513110645907},"133":{"tf":2.449489742783178},"135":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":4.242640687119285},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":3.0},"143":{"tf":2.0},"144":{"tf":1.7320508075688772},"145":{"tf":2.0},"146":{"tf":2.23606797749979},"147":{"tf":3.1622776601683795},"148":{"tf":2.0},"15":{"tf":1.0},"169":{"tf":1.0},"18":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"224":{"tf":2.23606797749979},"226":{"tf":1.7320508075688772},"234":{"tf":5.196152422706632},"242":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"251":{"tf":1.0},"262":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"234":{"tf":1.0}}},"w":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"113":{"tf":1.0}},"":{"=":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":22,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":1.7320508075688772},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":2.449489742783178},"148":{"tf":2.23606797749979},"2":{"tf":1.7320508075688772},"25":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"46":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"7":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"a":{"d":{"d":{"df":2,"docs":{"139":{"tf":1.0},"152":{"tf":2.0}}},"df":0,"docs":{}},"df":1,"docs":{"234":{"tf":1.4142135623730951}}},"df":5,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"234":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"153":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"":{"=":{"1":{"df":2,"docs":{"244":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"a":{"df":1,"docs":{"234":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"234":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"=":{"1":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":1,"docs":{"234":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"234":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"=":{"1":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"32":{"tf":1.0},"4":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"209":{"tf":3.7416573867739413},"72":{"tf":1.0},"77":{"tf":2.6457513110645907}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":166,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.23606797749979},"105":{"tf":2.23606797749979},"106":{"tf":3.0},"108":{"tf":1.0},"111":{"tf":3.0},"112":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":2.449489742783178},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":2.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"135":{"tf":2.449489742783178},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":2.0},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"233":{"tf":2.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":2.0},"243":{"tf":2.6457513110645907},"244":{"tf":1.7320508075688772},"245":{"tf":3.1622776601683795},"246":{"tf":2.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"252":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"255":{"tf":2.0},"256":{"tf":2.0},"257":{"tf":2.0},"259":{"tf":2.6457513110645907},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"87":{"tf":2.0},"89":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"s":{":":{"[":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"'":{"df":1,"docs":{"45":{"tf":1.0}}},"df":3,"docs":{"23":{"tf":1.0},"38":{"tf":1.0},"45":{"tf":2.8284271247461903}}},"p":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"113":{"tf":1.0},"137":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"df":5,"docs":{"122":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}},"t":{"df":2,"docs":{"63":{"tf":1.0},"87":{"tf":1.0}}}},"df":8,"docs":{"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"65":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"234":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"1":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"260":{"tf":1.0},"265":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":15,"docs":{"170":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"258":{"tf":1.0},"262":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":2.0},"70":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"138":{"tf":1.0},"167":{"tf":1.0},"35":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"":{"=":{"1":{"df":3,"docs":{"234":{"tf":1.4142135623730951},"242":{"tf":1.0},"244":{"tf":1.0}}},"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"i":{"=":{"0":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"′":{"df":0,"docs":{},"":{"=":{"1":{"df":2,"docs":{"234":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{},"k":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":1,"docs":{"133":{"tf":1.0}},"":{"=":{"(":{"b":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"1":{"6":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"135":{"tf":1.0}}},"1":{"df":3,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"113":{"tf":1.0},"123":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":2,"docs":{"113":{"tf":1.0},"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"166":{"tf":2.6457513110645907},"167":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"88":{"tf":1.0},"89":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"h":{"4":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"258":{"tf":1.0},"265":{"tf":1.0},"37":{"tf":1.0},"55":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"123":{"tf":1.4142135623730951}},"":{"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"−":{"8":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":5,"docs":{"209":{"tf":1.7320508075688772},"274":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":2.23606797749979}},"e":{"2":{"df":0,"docs":{},"f":{"4":{"df":2,"docs":{"140":{"tf":1.0},"209":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"234":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"g":{"c":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}},"":{"=":{"0":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}},"1":{"df":3,"docs":{"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"132":{"tf":1.0}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"6":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"4":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"3":{"2":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"146":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"132":{"tf":1.0},"135":{"tf":1.7320508075688772}}},"1":{"df":2,"docs":{"134":{"tf":1.0},"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"b":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}},"":{"=":{"1":{"df":3,"docs":{"234":{"tf":1.4142135623730951},"242":{"tf":1.0},"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"3":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"2":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"113":{"tf":1.0},"123":{"tf":1.4142135623730951}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"2":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"4":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"8":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{")":{"=":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"′":{"=":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"2":{"7":{"df":0,"docs":{},"−":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{")":{"=":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"3":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"b":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"113":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"=":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"3":{"2":{"a":{"d":{"d":{"3":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"d":{"d":{"df":0,"docs":{},"":{"=":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"":{"=":{"b":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"5":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"b":{"4":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"206":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0},"265":{"tf":1.0}},"i":{"df":4,"docs":{"105":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"2":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":28,"docs":{"11":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"221":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.7320508075688772},"35":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"213":{"tf":1.0},"90":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"6":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0}}}}}}},"g":{"0":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"106":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":2,"docs":{"106":{"tf":1.0},"111":{"tf":2.449489742783178}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"g":{"7":{"df":1,"docs":{"111":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"111":{"tf":2.449489742783178}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"g":{"7":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"111":{"tf":1.0}}},"7":{"df":1,"docs":{"111":{"tf":1.0}}},"9":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"g":{"1":{"0":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"g":{"1":{"1":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"0":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"213":{"tf":2.23606797749979},"258":{"tf":1.7320508075688772}}},"r":{"b":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"209":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":1,"docs":{"20":{"tf":2.23606797749979}}},"c":{"=":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"df":0,"docs":{},"g":{"c":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":2.23606797749979},"126":{"tf":1.0}},"⋅":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"b":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"77":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":24,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"19":{"tf":2.449489742783178},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"55":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"t":{"df":4,"docs":{"118":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"252":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"101":{"tf":1.0},"216":{"tf":1.0},"226":{"tf":1.0},"266":{"tf":1.0}},"n":{"df":27,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.4142135623730951},"19":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"24":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":2.0},"259":{"tf":1.0},"272":{"tf":1.0},"44":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"35":{"tf":2.6457513110645907},"69":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":6,"docs":{"1":{"tf":1.0},"138":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"266":{"tf":1.0},"45":{"tf":1.0}},"o":{"d":{"df":3,"docs":{"1":{"tf":1.0},"106":{"tf":1.0},"274":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"15":{"tf":2.23606797749979}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":53,"docs":{"111":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"127":{"tf":1.0},"131":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":2.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":2.8284271247461903},"122":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":29,"docs":{"103":{"tf":2.23606797749979},"105":{"tf":4.358898943540674},"106":{"tf":3.3166247903554},"111":{"tf":8.888194417315589},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"122":{"tf":3.4641016151377544},"123":{"tf":4.242640687119285},"124":{"tf":2.6457513110645907},"125":{"tf":3.1622776601683795},"126":{"tf":6.082762530298219},"138":{"tf":2.8284271247461903},"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":2.23606797749979},"143":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"269":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"87":{"tf":1.0},"97":{"tf":3.605551275463989}}}},"w":{"df":6,"docs":{"127":{"tf":1.0},"20":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"6":{"tf":1.0},"87":{"tf":1.0}}}}},"t":{"df":1,"docs":{"53":{"tf":1.0}},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"103":{"tf":1.0},"130":{"tf":1.0},"138":{"tf":1.0},"177":{"tf":1.0},"211":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.4142135623730951},"270":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"0":{"df":22,"docs":{"111":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":2.449489742783178},"126":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"233":{"tf":1.4142135623730951}},"":{",":{".":{".":{",":{"df":0,"docs":{},"h":{"3":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}},".":{",":{"df":0,"docs":{},"h":{"1":{"1":{"df":2,"docs":{"233":{"tf":1.0},"244":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":10,"docs":{"106":{"tf":2.23606797749979},"169":{"tf":1.0},"171":{"tf":1.7320508075688772},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"233":{"tf":1.0}}},"4":{"df":2,"docs":{"106":{"tf":1.0},"114":{"tf":1.0}}},"7":{"df":5,"docs":{"103":{"tf":1.0},"106":{"tf":2.6457513110645907},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"h":{"2":{"df":2,"docs":{"201":{"tf":1.0},"203":{"tf":1.0}},"":{",":{"df":0,"docs":{},"h":{"3":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"1":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"1":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"−":{"(":{"(":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"1":{")":{"df":0,"docs":{},"∗":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"1":{")":{"=":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"6":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"2":{"7":{"+":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{")":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"df":11,"docs":{"106":{"tf":1.0},"111":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"233":{"tf":1.0}},"":{",":{".":{".":{".":{"df":0,"docs":{},"h":{"3":{"df":1,"docs":{"111":{"tf":1.0}}},"7":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":7,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0}}},"3":{"df":6,"docs":{"125":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0}}},"4":{"df":5,"docs":{"106":{"tf":1.7320508075688772},"114":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"h":{"1":{"1":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":3,"docs":{"125":{"tf":1.0},"233":{"tf":1.0},"244":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"h":{"7":{"df":1,"docs":{"244":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"5":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"147":{"tf":1.0}},"":{"=":{"1":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"df":1,"docs":{"110":{"tf":1.0}}},"8":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"h":{"1":{"1":{"df":1,"docs":{"244":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.4142135623730951}},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"a":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"101":{"tf":1.7320508075688772},"106":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"144":{"tf":1.0},"23":{"tf":1.0},"90":{"tf":1.0}}}},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"n":{"d":{"df":1,"docs":{"255":{"tf":1.0}},"l":{"df":2,"docs":{"111":{"tf":1.0},"116":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":10,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"122":{"tf":1.4142135623730951},"132":{"tf":1.0},"243":{"tf":1.0},"255":{"tf":1.4142135623730951},"258":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}}}}},"r":{"d":{"df":1,"docs":{"62":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"(":{"a":{"1":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"74":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}}}}}},"_":{"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"1":{"df":2,"docs":{"79":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"2":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"1":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"1":{"df":2,"docs":{"79":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"239":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"(":{"a":{",":{"0":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"(":{"a":{",":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":66,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":5.0990195135927845},"105":{"tf":3.872983346207417},"106":{"tf":5.291502622129181},"107":{"tf":3.3166247903554},"108":{"tf":2.0},"109":{"tf":1.7320508075688772},"110":{"tf":2.8284271247461903},"111":{"tf":3.0},"112":{"tf":4.358898943540674},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":3.3166247903554},"116":{"tf":3.605551275463989},"118":{"tf":5.0990195135927845},"119":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"220":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":2.23606797749979},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":3.4641016151377544},"233":{"tf":3.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":2.0},"237":{"tf":2.6457513110645907},"238":{"tf":2.8284271247461903},"239":{"tf":2.449489742783178},"240":{"tf":2.6457513110645907},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.7320508075688772},"244":{"tf":1.7320508075688772},"245":{"tf":3.1622776601683795},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"64":{"tf":1.0},"68":{"tf":3.3166247903554},"72":{"tf":2.0},"74":{"tf":3.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"88":{"tf":2.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"99":{"tf":5.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"224":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":18,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":2.8284271247461903},"106":{"tf":3.0},"111":{"tf":3.872983346207417},"115":{"tf":3.1622776601683795},"116":{"tf":4.0},"206":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":2.23606797749979},"233":{"tf":1.4142135623730951},"236":{"tf":2.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"244":{"tf":2.23606797749979},"245":{"tf":2.8284271247461903},"85":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"(":{"a":{",":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"(":{"a":{",":{"0":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"(":{"a":{",":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"(":{"a":{",":{"0":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"123":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"217":{"tf":1.0},"232":{"tf":1.0},"8":{"tf":1.0}}}}},"df":2,"docs":{"23":{"tf":1.4142135623730951},"64":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":9,"docs":{"103":{"tf":1.0},"16":{"tf":1.7320508075688772},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":2.0},"26":{"tf":1.7320508075688772},"35":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"103":{"tf":1.0},"128":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":29,"docs":{"100":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":1.0},"106":{"tf":2.8284271247461903},"107":{"tf":1.0},"111":{"tf":2.23606797749979},"116":{"tf":1.0},"122":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"233":{"tf":1.0},"247":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"62":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"17":{"tf":2.23606797749979}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"42":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":18,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"19":{"tf":1.0},"209":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.7320508075688772},"4":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"138":{"tf":1.0},"20":{"tf":1.0},"222":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.4142135623730951},"4":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"69":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"233":{"tf":1.0},"254":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"232":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"143":{"tf":1.0},"206":{"tf":2.23606797749979},"68":{"tf":1.0}}}}}},"r":{"df":6,"docs":{"232":{"tf":2.23606797749979},"236":{"tf":2.6457513110645907},"237":{"tf":2.6457513110645907},"238":{"tf":3.7416573867739413},"239":{"tf":3.7416573867739413},"240":{"tf":5.291502622129181}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"a":{"+":{"7":{")":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"←":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"i":{".":{"df":47,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"128":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"211":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":2.0},"245":{"tf":2.6457513110645907},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.7320508075688772}}},"/":{"df":0,"docs":{},"o":{"df":5,"docs":{"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.0}}}},"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"243":{"tf":1.4142135623730951}},"∏":{"8":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{")":{"=":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"+":{"b":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":9,"docs":{"105":{"tf":3.0},"106":{"tf":4.123105625617661},"111":{"tf":2.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"117":{"tf":2.8284271247461903},"258":{"tf":1.7320508075688772},"259":{"tf":1.0}},"e":{"a":{"df":2,"docs":{"113":{"tf":1.0},"213":{"tf":1.0}},"l":{"df":2,"docs":{"255":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":14,"docs":{"103":{"tf":1.0},"120":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"272":{"tf":1.0},"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"213":{"tf":1.0}}},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"101":{"tf":1.0},"112":{"tf":1.0},"47":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"177":{"tf":1.0}}}},"i":{"df":1,"docs":{"274":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":76,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"247":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"207":{"tf":2.0},"208":{"tf":2.23606797749979}}}},"df":0,"docs":{},"m":{"0":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":14,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":3.0},"113":{"tf":1.0},"126":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"208":{"tf":1.0},"245":{"tf":1.0},"39":{"tf":1.4142135623730951},"45":{"tf":1.0},"50":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"69":{"tf":1.0},"97":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"168":{"tf":1.0},"19":{"tf":1.0},"214":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"245":{"tf":1.7320508075688772},"253":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"273":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.4142135623730951},"88":{"tf":1.0},"99":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":5,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"170":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":11,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"210":{"tf":1.0},"240":{"tf":1.0},"266":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":2.449489742783178},"39":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0}}}},"s":{"df":22,"docs":{"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.7320508075688772},"150":{"tf":1.0},"170":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"234":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"259":{"tf":1.4142135623730951},"264":{"tf":1.0},"9":{"tf":1.0}},"s":{"df":1,"docs":{"120":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"2":{"tf":1.0},"270":{"tf":1.0},"33":{"tf":1.0}}}}}}},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"120":{"tf":2.0}}}},"df":0,"docs":{}}}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":27,"docs":{"105":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":2.23606797749979},"217":{"tf":1.7320508075688772},"221":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"245":{"tf":2.6457513110645907},"252":{"tf":1.7320508075688772},"259":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"62":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"124":{"tf":1.0},"211":{"tf":1.0},"6":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":2,"docs":{"139":{"tf":1.0},"160":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":15,"docs":{"130":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"217":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"262":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"222":{"tf":1.0},"254":{"tf":1.0},"261":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"224":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"245":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":20,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":2.0},"17":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":1.0},"239":{"tf":2.23606797749979},"240":{"tf":1.4142135623730951},"243":{"tf":2.0},"245":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":2.23606797749979},"68":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}},"i":{"c":{"df":14,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"118":{"tf":1.7320508075688772},"133":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":12,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"226":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.0},"34":{"tf":1.4142135623730951},"63":{"tf":1.0},"70":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"34":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":3,"docs":{"105":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"266":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951}},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"245":{"tf":1.0}}}}},"df":42,"docs":{"10":{"tf":1.0},"101":{"tf":2.8284271247461903},"104":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":2.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":3.3166247903554},"127":{"tf":1.0},"129":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.0},"232":{"tf":2.0},"233":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"24":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":2.0},"9":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"247":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"62":{"tf":1.0},"65":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"33":{"tf":1.0},"42":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}}}}},"df":59,"docs":{"10":{"tf":2.0},"103":{"tf":1.0},"106":{"tf":2.0},"116":{"tf":1.0},"127":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":2.8284271247461903},"179":{"tf":1.0},"180":{"tf":1.0},"194":{"tf":2.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":2.0},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"250":{"tf":1.7320508075688772},"270":{"tf":2.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":2.0},"66":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":3.1622776601683795},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"86":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":11,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.0},"23":{"tf":1.0},"267":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":2.449489742783178},"9":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"d":{"df":9,"docs":{"103":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":2.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"16":{"tf":1.0},"2":{"tf":1.0},"232":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":5,"docs":{"223":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":57,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"107":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"132":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"232":{"tf":5.0990195135927845},"233":{"tf":1.4142135623730951},"234":{"tf":2.6457513110645907},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.7320508075688772},"240":{"tf":2.23606797749979},"25":{"tf":2.23606797749979},"28":{"tf":1.0},"31":{"tf":2.0},"33":{"tf":2.8284271247461903},"35":{"tf":1.7320508075688772},"36":{"tf":2.0},"37":{"tf":3.4641016151377544},"38":{"tf":3.872983346207417},"39":{"tf":1.4142135623730951},"41":{"tf":2.0},"42":{"tf":3.4641016151377544},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"45":{"tf":3.872983346207417},"47":{"tf":2.6457513110645907},"48":{"tf":2.23606797749979},"49":{"tf":2.23606797749979},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.449489742783178},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":2.8284271247461903},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":2.449489742783178},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":19,"docs":{"168":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.4142135623730951},"220":{"tf":1.0},"258":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":2.23606797749979},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"88":{"tf":1.0}},"r":{"df":1,"docs":{"274":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"224":{"tf":1.0},"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"22":{"tf":1.4142135623730951},"265":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":5,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"23":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"147":{"tf":1.0},"209":{"tf":1.0},"252":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":19,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"14":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":2.0},"230":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.0},"38":{"tf":2.0},"4":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"17":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":6,"docs":{"138":{"tf":1.0},"211":{"tf":1.0},"223":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"87":{"tf":1.0}},"t":{"df":24,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"265":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"139":{"tf":1.0},"159":{"tf":2.0},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"257":{"tf":1.4142135623730951},"258":{"tf":2.0},"54":{"tf":1.0}}}}},"o":{"c":{"df":1,"docs":{"42":{"tf":1.7320508075688772}}},"df":0,"docs":{},"k":{"df":8,"docs":{"264":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"41":{"tf":2.0},"42":{"tf":3.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":8,"docs":{"113":{"tf":1.0},"210":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"255":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"118":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"110":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.7320508075688772}}}}}},"o":{"d":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"2":{"tf":1.0},"270":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"211":{"tf":1.0},"223":{"tf":1.0}}}}},"t":{"'":{"df":3,"docs":{"272":{"tf":1.0},"274":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":17,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"127":{"tf":3.1622776601683795},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"137":{"tf":2.6457513110645907},"140":{"tf":1.0},"141":{"tf":1.0},"42":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"60":{"tf":2.449489742783178},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"r":{"df":4,"docs":{"101":{"tf":1.0},"2":{"tf":1.0},"49":{"tf":1.0},"94":{"tf":1.0}}}},"h":{"df":1,"docs":{"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"129":{"tf":1.0},"207":{"tf":1.0},"37":{"tf":1.0},"8":{"tf":1.0}}}}}}},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":0,"docs":{},"−":{"1":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":2,"docs":{"256":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"255":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"∈":{"2":{",":{"3":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"0":{",":{"1":{"5":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":1,"docs":{"125":{"tf":1.0}}},"4":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"114":{"tf":1.0}}},"7":{"df":2,"docs":{"111":{"tf":1.0},"114":{"tf":1.0}}},"8":{"df":2,"docs":{"189":{"tf":1.4142135623730951},"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"8":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{",":{"8":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"0":{",":{"1":{",":{"2":{",":{"3":{"df":5,"docs":{"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"56":{"tf":1.0}},"}":{"df":0,"docs":{},"∋":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"≥":{"2":{"3":{"2":{"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":{}},"df":0,"docs":{}},"df":2,"docs":{"162":{"tf":1.0},"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"92":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"101":{"tf":2.23606797749979},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":2.23606797749979},"108":{"tf":2.449489742783178},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.23606797749979},"143":{"tf":1.0},"92":{"tf":2.23606797749979},"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"35":{"tf":1.0}}}}},"∈":{"[":{"0":{",":{"4":{"df":1,"docs":{"244":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"0":{"df":5,"docs":{"130":{"tf":1.4142135623730951},"135":{"tf":1.0},"233":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.4142135623730951}},"":{",":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"":{",":{"b":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"244":{"tf":1.0}}},"1":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951}},"":{"=":{"0":{"df":1,"docs":{"252":{"tf":1.0}}},"1":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"(":{"a":{"df":0,"docs":{},"⋅":{"1":{"6":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{")":{")":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"(":{"b":{"df":0,"docs":{},"⋅":{"1":{"6":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{")":{")":{"=":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{")":{"=":{"0":{"df":1,"docs":{"249":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"−":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"2":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"245":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"2":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"b":{"df":1,"docs":{"20":{"tf":3.4641016151377544}}},"df":2,"docs":{"65":{"tf":3.3166247903554},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":23,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"117":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":21,"docs":{"116":{"tf":2.6457513110645907},"2":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"231":{"tf":2.0},"260":{"tf":2.6457513110645907},"261":{"tf":2.23606797749979},"262":{"tf":2.449489742783178},"263":{"tf":2.8284271247461903},"264":{"tf":3.1622776601683795},"269":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":3.3166247903554},"45":{"tf":1.0},"88":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}}}},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"df":7,"docs":{"10":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":2.449489742783178},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":3.3166247903554}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"1":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"z":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"0":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"207":{"tf":1.0},"264":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":4,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":11,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"246":{"tf":1.0},"55":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"116":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"α":{"6":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"7":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"8":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"∣":{"df":0,"docs":{},"∣":{"b":{",":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":20,"docs":{"104":{"tf":2.449489742783178},"116":{"tf":2.6457513110645907},"179":{"tf":1.0},"180":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"224":{"tf":2.23606797749979},"228":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"252":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"210":{"tf":1.0},"212":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"170":{"tf":1.0},"44":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":41,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.7320508075688772},"142":{"tf":1.0},"144":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.0},"223":{"tf":1.7320508075688772},"226":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"242":{"tf":1.0},"245":{"tf":1.7320508075688772},"246":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"262":{"tf":1.0},"264":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"87":{"tf":1.0},"97":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"212":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":1.0},"259":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"11":{"tf":1.0},"118":{"tf":1.0},"129":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"37":{"tf":1.0},"97":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"170":{"tf":1.0},"62":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}}}}},"df":2,"docs":{"209":{"tf":2.8284271247461903},"77":{"tf":2.6457513110645907}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"128":{"tf":1.0},"233":{"tf":1.0},"258":{"tf":1.0},"44":{"tf":2.0}}}}}}},"df":1,"docs":{"68":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"f":{"'":{"df":1,"docs":{"239":{"tf":1.0}}},"df":14,"docs":{"107":{"tf":1.0},"17":{"tf":1.7320508075688772},"207":{"tf":1.0},"233":{"tf":1.4142135623730951},"239":{"tf":2.0},"240":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"74":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"255":{"tf":1.0},"274":{"tf":1.0},"4":{"tf":1.0}}}},"v":{"df":4,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"239":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":35,"docs":{"106":{"tf":1.0},"118":{"tf":1.0},"131":{"tf":2.8284271247461903},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":2.0},"140":{"tf":2.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"147":{"tf":3.0},"151":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.4142135623730951},"31":{"tf":1.0},"58":{"tf":1.4142135623730951},"68":{"tf":1.0},"84":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"112":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"230":{"tf":1.4142135623730951},"266":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"111":{"tf":1.0},"13":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":2.6457513110645907},"234":{"tf":2.449489742783178},"242":{"tf":1.4142135623730951},"245":{"tf":1.0},"259":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":2.0}}}},"t":{"'":{"df":11,"docs":{"101":{"tf":1.0},"112":{"tf":1.4142135623730951},"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"170":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"247":{"tf":1.4142135623730951},"262":{"tf":1.0},"45":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"34":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":18,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"209":{"tf":1.0},"21":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":2.23606797749979},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"86":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":23,"docs":{"2":{"tf":2.0},"32":{"tf":1.4142135623730951},"38":{"tf":2.0},"43":{"tf":1.7320508075688772},"69":{"tf":2.449489742783178},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"5":{"tf":2.0}}}}}},"df":0,"docs":{},"m":{"b":{"df":15,"docs":{"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"66":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":12,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"232":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"253":{"tf":1.0},"35":{"tf":1.4142135623730951},"6":{"tf":1.0},"97":{"tf":1.0}}}},"df":3,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"40":{"tf":1.0}},"r":{"df":1,"docs":{"243":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"113":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"55":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":5,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.7320508075688772},"210":{"tf":1.0},"74":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"c":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"0":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"37":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.0}},"w":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"37":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.0}}}}}}}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":2,"docs":{"39":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":10,"docs":{"2":{"tf":1.0},"37":{"tf":2.449489742783178},"38":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":2.23606797749979},"62":{"tf":1.7320508075688772},"64":{"tf":1.0},"66":{"tf":3.872983346207417},"88":{"tf":1.0},"89":{"tf":1.0}}},"t":{"df":17,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"233":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.0},"29":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"2":{"(":{"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"6":{"tf":1.0},"74":{"tf":1.0}},"i":{"c":{"df":5,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"113":{"tf":1.0},"2":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"216":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":27,"docs":{"111":{"tf":2.23606797749979},"112":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"150":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"85":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":8,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"265":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772}}}}},"p":{"'":{"df":2,"docs":{"106":{"tf":2.0},"110":{"tf":1.4142135623730951}}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":22,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":3.0},"110":{"tf":4.123105625617661},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.449489742783178},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"2":{"tf":1.4142135623730951},"24":{"tf":1.0},"35":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":2.8284271247461903},"94":{"tf":2.8284271247461903},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"w":{"df":10,"docs":{"106":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"209":{"tf":1.4142135623730951},"274":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"222":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"53":{"tf":1.0}},"e":{"df":1,"docs":{"53":{"tf":1.0}}}}},"m":{"1":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"21":{"tf":1.0}}},"=":{"(":{"2":{"3":{"2":{"df":0,"docs":{},"−":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"k":{"1":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"p":{"df":2,"docs":{"104":{"tf":1.0},"116":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"0":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"35":{"tf":1.0},"6":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"33":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"215":{"tf":1.0},"233":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"272":{"tf":1.0},"38":{"tf":1.7320508075688772},"41":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"230":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":48,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.4142135623730951},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"250":{"tf":2.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"259":{"tf":2.0},"264":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"33":{"tf":2.0},"7":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"101":{"tf":1.0},"127":{"tf":1.4142135623730951},"199":{"tf":1.0},"2":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":15,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.4142135623730951},"24":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"33":{"tf":1.0},"72":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":20,"docs":{"10":{"tf":1.0},"181":{"tf":2.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"42":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"104":{"tf":1.0},"111":{"tf":2.0},"118":{"tf":1.0},"226":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"35":{"tf":1.0},"42":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":12,"docs":{"10":{"tf":2.0},"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"6":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"m":{"df":2,"docs":{"16":{"tf":1.0},"23":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"21":{"tf":1.0}}}}},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"16":{"tf":1.0},"33":{"tf":2.0},"35":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"245":{"tf":1.0},"264":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"111":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"274":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951}}}}},"h":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"212":{"tf":1.0},"228":{"tf":1.0},"271":{"tf":1.0}}}}}},"x":{"(":{"a":{",":{"b":{")":{">":{"1":{"df":1,"docs":{"52":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"≥":{"2":{"3":{"2":{"df":3,"docs":{"57":{"tf":3.605551275463989},"58":{"tf":1.7320508075688772},"59":{"tf":3.7416573867739413}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},",":{"c":{")":{"df":0,"docs":{},"≥":{"2":{"3":{"2":{"df":1,"docs":{"57":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"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}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"2":{"tf":1.0},"212":{"tf":1.0},"60":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"20":{"tf":2.6457513110645907}},"p":{"df":2,"docs":{"104":{"tf":1.0},"116":{"tf":1.0}}}},"df":7,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0},"245":{"tf":1.0},"68":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":27,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"138":{"tf":1.0},"2":{"tf":1.0},"217":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}},"t":{"df":2,"docs":{"106":{"tf":1.0},"4":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"240":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"[":{"8":{"7":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"30":{"tf":1.0}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.4142135623730951}},"w":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.4142135623730951}},"e":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"1":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":2,"docs":{"39":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":2,"docs":{"23":{"tf":1.0},"29":{"tf":2.23606797749979}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":47,"docs":{"10":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":3.3166247903554},"2":{"tf":2.0},"200":{"tf":2.8284271247461903},"201":{"tf":2.8284271247461903},"202":{"tf":3.0},"203":{"tf":3.0},"204":{"tf":3.0},"209":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":2.0},"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"253":{"tf":2.6457513110645907},"254":{"tf":2.6457513110645907},"255":{"tf":3.4641016151377544},"256":{"tf":2.0},"257":{"tf":2.0},"258":{"tf":4.0},"259":{"tf":2.8284271247461903},"273":{"tf":1.4142135623730951},"29":{"tf":2.449489742783178},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"41":{"tf":1.0},"44":{"tf":3.605551275463989},"45":{"tf":2.23606797749979},"6":{"tf":2.23606797749979},"62":{"tf":2.6457513110645907},"64":{"tf":1.4142135623730951},"65":{"tf":2.0},"66":{"tf":4.58257569495584},"72":{"tf":1.0},"74":{"tf":2.0},"77":{"tf":1.4142135623730951},"85":{"tf":2.0},"88":{"tf":2.0},"89":{"tf":1.4142135623730951}}},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"255":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"256":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}},"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":15,"docs":{"111":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"130":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"10":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"33":{"tf":1.0},"90":{"tf":1.0}}}},"l":{"df":23,"docs":{"10":{"tf":2.6457513110645907},"104":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":2.23606797749979},"220":{"tf":1.0},"232":{"tf":3.872983346207417},"233":{"tf":2.0},"239":{"tf":2.8284271247461903},"240":{"tf":2.8284271247461903},"243":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":3.3166247903554},"6":{"tf":2.0},"65":{"tf":1.7320508075688772},"68":{"tf":3.1622776601683795},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":2.6457513110645907},"77":{"tf":1.0},"8":{"tf":1.7320508075688772},"88":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"220":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"100":{"tf":1.0},"104":{"tf":1.7320508075688772},"115":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"116":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":113,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"100":{"tf":2.0},"101":{"tf":1.0},"11":{"tf":3.3166247903554},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"127":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":2.449489742783178},"138":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.7320508075688772},"155":{"tf":1.0},"16":{"tf":3.605551275463989},"168":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":3.4641016151377544},"20":{"tf":1.0},"205":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.7320508075688772},"22":{"tf":2.8284271247461903},"220":{"tf":1.0},"23":{"tf":2.23606797749979},"232":{"tf":1.0},"24":{"tf":2.6457513110645907},"25":{"tf":2.0},"253":{"tf":1.0},"258":{"tf":2.0},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"269":{"tf":1.7320508075688772},"27":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.0},"3":{"tf":1.7320508075688772},"31":{"tf":1.0},"32":{"tf":2.8284271247461903},"33":{"tf":4.47213595499958},"34":{"tf":1.0},"35":{"tf":3.4641016151377544},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"4":{"tf":2.449489742783178},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":2.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":2.6457513110645907},"7":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"213":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"118":{"tf":1.0},"206":{"tf":1.0}}}},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"139":{"tf":1.0},"201":{"tf":2.0}},"w":{"df":2,"docs":{"140":{"tf":1.0},"200":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":2.449489742783178}}}}}},"df":1,"docs":{"74":{"tf":3.0}}},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":1,"docs":{"84":{"tf":1.7320508075688772}},"e":{"df":1,"docs":{"13":{"tf":1.0}},"l":{"df":1,"docs":{"255":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"262":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"33":{"tf":1.0}}}},"df":23,"docs":{"177":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":2.23606797749979},"225":{"tf":1.4142135623730951},"262":{"tf":1.0},"273":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":4.898979485566356},"39":{"tf":1.4142135623730951},"43":{"tf":2.449489742783178},"71":{"tf":2.23606797749979},"72":{"tf":2.23606797749979},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"'":{"df":3,"docs":{"221":{"tf":1.0},"226":{"tf":1.0},"262":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"u":{"df":7,"docs":{"127":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"253":{"tf":1.0},"34":{"tf":1.0},"6":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"259":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":40,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":2.0},"122":{"tf":1.0},"137":{"tf":1.4142135623730951},"148":{"tf":1.0},"16":{"tf":1.0},"211":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"248":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":2.0},"4":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"86":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"110":{"tf":1.0},"45":{"tf":1.0},"77":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"v":{"d":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.7320508075688772}}}},"2":{"df":2,"docs":{"139":{"tf":1.0},"191":{"tf":1.0}}},"3":{"df":1,"docs":{"139":{"tf":1.0}}},"4":{"df":1,"docs":{"139":{"tf":1.0}}},"5":{"df":1,"docs":{"139":{"tf":1.0}}},"6":{"df":1,"docs":{"139":{"tf":1.0}}},"7":{"df":1,"docs":{"139":{"tf":1.0}}},"8":{"df":1,"docs":{"139":{"tf":1.0}}},"df":2,"docs":{"191":{"tf":1.0},"60":{"tf":1.0}},"w":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":17,"docs":{"115":{"tf":1.0},"130":{"tf":1.4142135623730951},"190":{"tf":2.0},"191":{"tf":1.7320508075688772},"194":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"254":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"45":{"tf":2.23606797749979},"60":{"tf":2.0},"62":{"tf":2.23606797749979},"65":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.7320508075688772}}}},"2":{"df":2,"docs":{"139":{"tf":1.0},"190":{"tf":1.0}}},"3":{"df":1,"docs":{"139":{"tf":1.0}}},"4":{"df":1,"docs":{"139":{"tf":1.0}}},"5":{"df":1,"docs":{"139":{"tf":1.0}}},"6":{"df":1,"docs":{"139":{"tf":1.0}}},"7":{"df":1,"docs":{"139":{"tf":1.0}}},"8":{"df":1,"docs":{"139":{"tf":1.0}}},"df":2,"docs":{"190":{"tf":1.0},"60":{"tf":1.0}},"w":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"p":{"a":{"df":3,"docs":{"232":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0}}},"df":3,"docs":{"232":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0}},"u":{"df":1,"docs":{"240":{"tf":1.0}}},"v":{"df":1,"docs":{"240":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"143":{"tf":1.0},"207":{"tf":2.23606797749979}}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"208":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":4,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":4.0},"21":{"tf":2.0},"23":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"140":{"tf":1.0},"203":{"tf":2.0}},"w":{"df":2,"docs":{"140":{"tf":1.0},"202":{"tf":2.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"143":{"tf":1.0},"204":{"tf":2.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"68":{"tf":1.0},"8":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"u":{"a":{"df":2,"docs":{"232":{"tf":1.0},"240":{"tf":1.0}}},"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"17":{"tf":1.0},"20":{"tf":1.0},"33":{"tf":1.0},"8":{"tf":1.0}}}},"df":2,"docs":{"232":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772}},"l":{"6":{"4":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":4,"docs":{"140":{"tf":1.0},"158":{"tf":2.0},"38":{"tf":1.0},"52":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.4142135623730951},"222":{"tf":1.0},"246":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":21,"docs":{"104":{"tf":1.4142135623730951},"113":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"217":{"tf":1.0},"232":{"tf":3.3166247903554},"233":{"tf":1.0},"234":{"tf":3.3166247903554},"238":{"tf":1.0},"242":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"25":{"tf":1.0},"271":{"tf":1.0},"41":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}},"i":{"df":19,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"138":{"tf":1.0},"169":{"tf":1.0},"212":{"tf":1.7320508075688772},"226":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":15,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.7320508075688772},"265":{"tf":2.449489742783178},"266":{"tf":2.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"113":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":2,"docs":{"232":{"tf":1.0},"240":{"tf":1.0}}},"df":3,"docs":{"232":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"6":{"tf":1.0}}}},"n":{"+":{"1":{"df":2,"docs":{"190":{"tf":1.0},"191":{"tf":1.0}}},"df":0,"docs":{}},"/":{"8":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"0":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"257":{"tf":1.0},"259":{"tf":1.0}},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"(":{"c":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"c":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{"=":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"257":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"257":{"tf":1.4142135623730951},"259":{"tf":1.0}}},"df":0,"docs":{},"δ":{"c":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"n":{"1":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"δ":{"a":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":1,"docs":{"259":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"df":2,"docs":{"257":{"tf":1.0},"259":{"tf":1.0}},"":{"=":{"0":{"df":1,"docs":{"257":{"tf":1.0}}},"1":{"df":1,"docs":{"257":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"=":{"0":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{")":{"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"=":{"0":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"<":{"2":{"5":{"6":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"256":{"tf":1.4142135623730951}}},"1":{"4":{"df":1,"docs":{"104":{"tf":1.0}}},"df":1,"docs":{"256":{"tf":1.4142135623730951}}},"df":0,"docs":{}},">":{"2":{"1":{"6":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"148":{"tf":1.0},"212":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"113":{"tf":1.4142135623730951},"137":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":4,"docs":{"71":{"tf":2.0},"73":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"2":{"tf":1.4142135623730951},"232":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":19,"docs":{"104":{"tf":1.7320508075688772},"18":{"tf":1.0},"184":{"tf":1.4142135623730951},"190":{"tf":2.0},"191":{"tf":2.23606797749979},"209":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"216":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":2.23606797749979},"256":{"tf":1.0},"31":{"tf":1.4142135623730951},"60":{"tf":2.8284271247461903},"65":{"tf":2.0},"74":{"tf":2.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":85,"docs":{"0":{"tf":1.0},"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":2.6457513110645907},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":2.6457513110645907},"111":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"120":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":2.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"16":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":2.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"227":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":2.0},"251":{"tf":1.7320508075688772},"253":{"tf":1.0},"254":{"tf":2.6457513110645907},"255":{"tf":3.0},"256":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.7320508075688772},"259":{"tf":2.23606797749979},"264":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":3,"docs":{"139":{"tf":1.0},"157":{"tf":2.0},"52":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"q":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"59":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}},"t":{"df":1,"docs":{"106":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"105":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"75":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}}},"df":38,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":2.8284271247461903},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":2.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"141":{"tf":1.0},"208":{"tf":2.6457513110645907},"209":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"240":{"tf":1.7320508075688772},"243":{"tf":2.0},"245":{"tf":3.3166247903554},"255":{"tf":1.7320508075688772},"256":{"tf":1.7320508075688772},"257":{"tf":2.0},"258":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"t":{"df":52,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":3.0},"111":{"tf":3.605551275463989},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"120":{"tf":2.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":2.0},"124":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"166":{"tf":2.0},"167":{"tf":1.4142135623730951},"209":{"tf":2.6457513110645907},"211":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"234":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":2.0},"243":{"tf":1.4142135623730951},"244":{"tf":2.0},"246":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"266":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"g":{"=":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"124":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.7320508075688772}}}}}}},"df":23,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"207":{"tf":2.449489742783178},"208":{"tf":3.3166247903554},"232":{"tf":2.6457513110645907},"233":{"tf":1.7320508075688772},"239":{"tf":2.449489742783178},"240":{"tf":3.0},"243":{"tf":2.23606797749979},"244":{"tf":1.0},"245":{"tf":2.8284271247461903},"65":{"tf":1.0},"68":{"tf":2.0},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.7320508075688772},"17":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":1.7320508075688772},"8":{"tf":1.0}}}}}}}}}}}}},"df":27,"docs":{"103":{"tf":1.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"128":{"tf":1.0},"130":{"tf":1.0},"170":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"222":{"tf":1.0},"239":{"tf":1.0},"256":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"55":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":3,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"'":{"df":1,"docs":{"111":{"tf":1.0}}},"df":9,"docs":{"100":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"122":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"150":{"tf":2.0},"23":{"tf":1.0},"97":{"tf":2.23606797749979},"99":{"tf":2.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":8,"docs":{"113":{"tf":1.0},"241":{"tf":1.0},"252":{"tf":1.0},"263":{"tf":1.0},"34":{"tf":1.7320508075688772},"36":{"tf":1.0},"70":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":51,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"143":{"tf":1.0},"159":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"246":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"87":{"tf":1.0}}},"h":{"df":4,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0}}},"i":{"c":{"df":11,"docs":{"111":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"254":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"w":{"df":8,"docs":{"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"255":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":2.8284271247461903}}}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":3.1622776601683795}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":37,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"111":{"tf":3.1622776601683795},"116":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"14":{"tf":1.0},"169":{"tf":1.4142135623730951},"17":{"tf":2.449489742783178},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":1.0},"258":{"tf":1.0},"37":{"tf":2.23606797749979},"39":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"8":{"tf":2.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"208":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"=":{"0":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"106":{"tf":1.0}}}},"∈":{"[":{"2":{",":{"9":{"df":2,"docs":{"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"0":{",":{".":{".":{".":{",":{"1":{"5":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"7":{",":{"9":{",":{"1":{"1":{",":{"1":{"3":{",":{"1":{"5":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"2":{",":{"3":{"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":{}},"1":{",":{".":{".":{".":{",":{"1":{"5":{"df":1,"docs":{"60":{"tf":1.0}}},"6":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"3":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{".":{".":{".":{",":{"1":{"5":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"−":{"1":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":0,"docs":{},"−":{"1":{")":{")":{"df":0,"docs":{},"−":{"(":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"d":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"d":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"116":{"tf":1.0},"228":{"tf":1.0},"245":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"d":{"d":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"18":{"tf":1.4142135623730951}},"f":{"a":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":5,"docs":{"102":{"tf":1.0},"228":{"tf":1.4142135623730951},"232":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"211":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0}}}}}}},"l":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":10,"docs":{"208":{"tf":2.449489742783178},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"240":{"tf":1.4142135623730951},"245":{"tf":2.0},"255":{"tf":2.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"68":{"tf":1.0},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"137":{"tf":1.0},"169":{"tf":1.0},"244":{"tf":1.0},"254":{"tf":1.0},"37":{"tf":1.0},"63":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":2.0}}}}}},"n":{"c":{"df":16,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":2.23606797749979},"16":{"tf":1.0},"19":{"tf":1.4142135623730951},"209":{"tf":1.0},"219":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"98":{"tf":1.0}}},"df":60,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"111":{"tf":3.0},"113":{"tf":1.7320508075688772},"122":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"130":{"tf":1.0},"138":{"tf":1.4142135623730951},"150":{"tf":1.0},"170":{"tf":2.0},"190":{"tf":1.0},"191":{"tf":1.0},"2":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":2.6457513110645907},"233":{"tf":2.449489742783178},"234":{"tf":1.7320508075688772},"24":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"248":{"tf":1.0},"25":{"tf":2.23606797749979},"250":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":2.6457513110645907},"50":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":2.449489742783178},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":29,"docs":{"10":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.0},"130":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.7320508075688772},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":3.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}},"p":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"1":{"1":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"123":{"tf":1.0}}},"9":{"df":1,"docs":{"123":{"tf":1.7320508075688772}}},"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"6":{"df":0,"docs":{},"":{"(":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"2":{"df":0,"docs":{},"i":{")":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"106":{"tf":1.0},"111":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"252":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":16,"docs":{"100":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.7320508075688772},"116":{"tf":2.0},"123":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"103":{"tf":1.0},"105":{"tf":2.449489742783178},"106":{"tf":2.23606797749979},"111":{"tf":5.656854249492381},"116":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":3.872983346207417},"138":{"tf":3.3166247903554},"139":{"tf":5.656854249492381},"140":{"tf":4.123105625617661},"141":{"tf":4.123105625617661},"142":{"tf":3.0},"143":{"tf":2.8284271247461903},"144":{"tf":2.8284271247461903},"269":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":95,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":2.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"62":{"tf":2.0},"65":{"tf":2.23606797749979},"66":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":2.8284271247461903},"75":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"103":{"tf":1.0}}},"(":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{},"s":{"1":{"df":2,"docs":{"101":{"tf":2.449489742783178},"112":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":167,"docs":{"10":{"tf":1.0},"100":{"tf":2.0},"101":{"tf":2.23606797749979},"102":{"tf":1.0},"103":{"tf":3.4641016151377544},"104":{"tf":1.0},"105":{"tf":3.1622776601683795},"106":{"tf":6.557438524302},"108":{"tf":2.0},"109":{"tf":1.0},"110":{"tf":3.7416573867739413},"111":{"tf":8.12403840463596},"112":{"tf":2.6457513110645907},"113":{"tf":2.8284271247461903},"114":{"tf":3.3166247903554},"115":{"tf":2.6457513110645907},"116":{"tf":4.0},"117":{"tf":3.4641016151377544},"118":{"tf":3.4641016151377544},"120":{"tf":3.1622776601683795},"121":{"tf":2.6457513110645907},"122":{"tf":3.872983346207417},"123":{"tf":4.0},"124":{"tf":3.3166247903554},"125":{"tf":3.4641016151377544},"126":{"tf":3.1622776601683795},"127":{"tf":1.4142135623730951},"130":{"tf":2.0},"131":{"tf":1.7320508075688772},"137":{"tf":4.123105625617661},"138":{"tf":4.898979485566356},"139":{"tf":3.0},"140":{"tf":3.0},"141":{"tf":3.0},"142":{"tf":3.872983346207417},"143":{"tf":3.0},"144":{"tf":2.6457513110645907},"145":{"tf":1.4142135623730951},"146":{"tf":2.449489742783178},"147":{"tf":2.6457513110645907},"148":{"tf":2.0},"149":{"tf":2.0},"150":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"154":{"tf":1.7320508075688772},"155":{"tf":2.23606797749979},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":1.7320508075688772},"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":2.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":1.7320508075688772},"168":{"tf":2.0},"169":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":2.23606797749979},"172":{"tf":2.0},"173":{"tf":2.23606797749979},"174":{"tf":2.23606797749979},"175":{"tf":2.23606797749979},"176":{"tf":2.23606797749979},"177":{"tf":2.449489742783178},"178":{"tf":2.23606797749979},"179":{"tf":3.0},"180":{"tf":3.0},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.7320508075688772},"184":{"tf":2.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772},"190":{"tf":2.0},"191":{"tf":2.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"194":{"tf":2.23606797749979},"195":{"tf":2.23606797749979},"196":{"tf":1.7320508075688772},"197":{"tf":2.0},"198":{"tf":2.0},"199":{"tf":2.23606797749979},"2":{"tf":2.0},"20":{"tf":1.0},"200":{"tf":2.449489742783178},"201":{"tf":2.449489742783178},"202":{"tf":2.6457513110645907},"203":{"tf":2.6457513110645907},"204":{"tf":2.6457513110645907},"205":{"tf":2.449489742783178},"206":{"tf":2.23606797749979},"207":{"tf":2.8284271247461903},"208":{"tf":2.449489742783178},"209":{"tf":2.6457513110645907},"21":{"tf":1.4142135623730951},"210":{"tf":2.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":2.8284271247461903},"228":{"tf":2.8284271247461903},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"245":{"tf":2.0},"246":{"tf":3.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"251":{"tf":2.0},"252":{"tf":2.23606797749979},"254":{"tf":1.0},"255":{"tf":2.23606797749979},"258":{"tf":2.8284271247461903},"259":{"tf":2.449489742783178},"260":{"tf":1.0},"263":{"tf":2.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"50":{"tf":2.449489742783178},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"54":{"tf":2.0},"55":{"tf":2.6457513110645907},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":2.8284271247461903},"82":{"tf":2.449489742783178},"83":{"tf":1.4142135623730951},"84":{"tf":2.8284271247461903},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":4.0},"98":{"tf":2.449489742783178},"99":{"tf":2.23606797749979}}},"x":{"df":1,"docs":{"272":{"tf":1.0}}}},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"116":{"tf":1.0},"263":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"206":{"tf":1.0},"245":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}}}}}}},"df":1,"docs":{"259":{"tf":1.0}}}},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"208":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"207":{"tf":1.0},"208":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":18,"docs":{"13":{"tf":2.23606797749979},"19":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"220":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"258":{"tf":1.4142135623730951},"265":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":1.0},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.0},"65":{"tf":1.0}}}}}},"u":{"3":{"2":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"111":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"204":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":2.449489742783178},"228":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"35":{"tf":2.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":12,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"115":{"tf":1.0},"138":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"71":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"209":{"tf":1.0},"247":{"tf":1.0},"42":{"tf":1.0},"86":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"62":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":30,"docs":{"103":{"tf":1.4142135623730951},"105":{"tf":2.0},"106":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"122":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"207":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"42":{"tf":1.0},"68":{"tf":1.4142135623730951},"77":{"tf":1.0},"83":{"tf":4.242640687119285},"84":{"tf":2.449489742783178},"86":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":20,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"17":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"259":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":57,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":2.449489742783178},"194":{"tf":2.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":2.0},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"233":{"tf":1.7320508075688772},"236":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"25":{"tf":1.0},"251":{"tf":2.449489742783178},"258":{"tf":1.0},"270":{"tf":2.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":2.0},"75":{"tf":1.7320508075688772},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":2.6457513110645907},"80":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"2":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"255":{"tf":1.0}}}},"df":24,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":1.0},"220":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"246":{"tf":1.0},"251":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":13,"docs":{"128":{"tf":1.0},"129":{"tf":2.8284271247461903},"130":{"tf":2.23606797749979},"131":{"tf":1.7320508075688772},"133":{"tf":2.0},"134":{"tf":1.0},"135":{"tf":2.6457513110645907},"17":{"tf":1.4142135623730951},"177":{"tf":1.0},"209":{"tf":1.0},"269":{"tf":1.0},"82":{"tf":2.8284271247461903},"84":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}},"r":{"df":1,"docs":{"84":{"tf":1.0}}}},"u":{"b":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"4":{"tf":1.0},"6":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"198":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772}}}}}}}}},"x":{"df":2,"docs":{"103":{"tf":1.0},"124":{"tf":1.7320508075688772}}}},"p":{"0":{"df":2,"docs":{"211":{"tf":1.7320508075688772},"212":{"tf":2.23606797749979}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"p":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{")":{"=":{"0":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"1":{"df":6,"docs":{"105":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"129":{"tf":2.23606797749979},"233":{"tf":2.0},"240":{"tf":1.7320508075688772},"245":{"tf":2.6457513110645907}},"":{"=":{"1":{"df":2,"docs":{"136":{"tf":1.0},"245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"p":{"1":{"df":3,"docs":{"117":{"tf":1.0},"135":{"tf":1.4142135623730951},"245":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.0}}}},"v":{"df":2,"docs":{"117":{"tf":1.0},"135":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"=":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"117":{"tf":1.0},"135":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"2":{"df":2,"docs":{"105":{"tf":2.0},"118":{"tf":1.7320508075688772}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"118":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"=":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"3":{"df":2,"docs":{"105":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"=":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"=":{"2":{"6":{"4":{"df":0,"docs":{},"−":{"2":{"3":{"2":{"+":{"1":{"df":3,"docs":{"6":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"74":{"tf":1.0}}}},"d":{"df":15,"docs":{"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"141":{"tf":1.0},"182":{"tf":2.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"262":{"tf":1.0},"266":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.4142135623730951}},"w":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"16":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"105":{"tf":2.6457513110645907},"106":{"tf":2.449489742783178},"117":{"tf":2.0},"43":{"tf":1.0},"88":{"tf":1.0}}}}},"t":{"df":10,"docs":{"102":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"245":{"tf":2.23606797749979},"264":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"71":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"169":{"tf":1.0}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"113":{"tf":1.0},"222":{"tf":1.0},"270":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"69":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"42":{"tf":1.0},"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":15,"docs":{"10":{"tf":1.7320508075688772},"101":{"tf":1.0},"104":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":2.449489742783178},"208":{"tf":2.0},"232":{"tf":3.1622776601683795},"233":{"tf":1.0},"239":{"tf":2.449489742783178},"240":{"tf":2.449489742783178},"243":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"6":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":2.0}}}}}}}},"df":5,"docs":{"23":{"tf":1.7320508075688772},"267":{"tf":2.449489742783178},"268":{"tf":1.4142135623730951},"34":{"tf":1.0},"77":{"tf":2.0}},"e":{"=":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"74":{"tf":2.0}}}},"df":1,"docs":{"209":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}},"r":{"df":10,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"124":{"tf":1.0},"210":{"tf":1.4142135623730951},"217":{"tf":1.0},"23":{"tf":1.0},"254":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":2.23606797749979},"80":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":34,"docs":{"104":{"tf":1.0},"111":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":2.449489742783178},"20":{"tf":1.7320508075688772},"205":{"tf":1.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"215":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.4142135623730951},"255":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":3.872983346207417},"83":{"tf":3.7416573867739413},"84":{"tf":3.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"223":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"36":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":18,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"206":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"236":{"tf":2.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"68":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"112":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"143":{"tf":1.0}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":13,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"239":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.7320508075688772},"33":{"tf":1.0},"72":{"tf":1.0}}},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"115":{"tf":1.0},"224":{"tf":1.0}}}},"o":{"df":2,"docs":{"209":{"tf":1.0},"74":{"tf":1.7320508075688772}},"e":{"df":1,"docs":{"209":{"tf":1.7320508075688772}},"′":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"4":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"19":{"tf":1.0},"209":{"tf":2.23606797749979},"24":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"77":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"115":{"tf":1.0},"209":{"tf":1.0},"77":{"tf":2.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"274":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"98":{"tf":1.0}}}},"p":{"df":21,"docs":{"10":{"tf":1.0},"106":{"tf":3.4641016151377544},"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":2.449489742783178},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"98":{"tf":2.6457513110645907}},"u":{"df":0,"docs":{},"l":{"df":11,"docs":{"106":{"tf":2.449489742783178},"111":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"257":{"tf":1.0},"45":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"2":{"tf":1.0},"231":{"tf":1.0},"244":{"tf":1.0},"85":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":60,"docs":{"105":{"tf":2.449489742783178},"111":{"tf":2.23606797749979},"126":{"tf":1.0},"137":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.23606797749979},"230":{"tf":1.0},"239":{"tf":1.0},"60":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":12,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"124":{"tf":1.0},"170":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"272":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"274":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"2":{"df":4,"docs":{"25":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"52":{"tf":1.0},"84":{"tf":2.449489742783178}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"112":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"260":{"tf":1.0},"48":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":1,"docs":{"2":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":7,"docs":{"138":{"tf":2.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"81":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"105":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":19,"docs":{"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"31":{"tf":1.0},"42":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"s":{"df":30,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"16":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"209":{"tf":1.0},"245":{"tf":1.4142135623730951},"258":{"tf":1.0},"37":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"55":{"tf":1.0},"7":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":18,"docs":{"127":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.4142135623730951},"220":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":2.23606797749979},"70":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"170":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"23":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"10":{"tf":1.0},"207":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"106":{"tf":4.123105625617661},"111":{"tf":2.0}}}},"o":{"c":{".":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{">":{".":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"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":{}}},"b":{"a":{"df":0,"docs":{},"r":{".":{"1":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"2":{"df":1,"docs":{"37":{"tf":1.0}}},"3":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"23":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"38":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":44,"docs":{"116":{"tf":2.6457513110645907},"2":{"tf":1.7320508075688772},"220":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"233":{"tf":1.0},"260":{"tf":2.0},"262":{"tf":1.4142135623730951},"263":{"tf":2.0},"264":{"tf":2.23606797749979},"269":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":4.0},"38":{"tf":4.58257569495584},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.6457513110645907},"42":{"tf":3.7416573867739413},"43":{"tf":2.8284271247461903},"44":{"tf":2.449489742783178},"45":{"tf":2.449489742783178},"62":{"tf":1.7320508075688772},"66":{"tf":3.3166247903554},"69":{"tf":2.0},"7":{"tf":1.0},"71":{"tf":2.23606797749979},"72":{"tf":2.8284271247461903},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":2.0},"82":{"tf":2.6457513110645907},"83":{"tf":3.0},"84":{"tf":1.7320508075688772},"85":{"tf":2.0},"86":{"tf":2.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"'":{"df":2,"docs":{"45":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":3,"docs":{"111":{"tf":1.4142135623730951},"45":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":10,"docs":{"100":{"tf":1.0},"101":{"tf":2.6457513110645907},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"224":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"233":{"tf":1.0},"81":{"tf":1.0}},"t":{"df":20,"docs":{"1":{"tf":1.0},"105":{"tf":1.7320508075688772},"129":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"211":{"tf":2.23606797749979},"212":{"tf":2.23606797749979},"217":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":2.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"266":{"tf":4.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":2,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":5,"docs":{"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"42":{"tf":1.0},"62":{"tf":1.0},"99":{"tf":1.0}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"118":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":79,"docs":{"0":{"tf":2.0},"10":{"tf":1.0},"100":{"tf":3.7416573867739413},"101":{"tf":3.1622776601683795},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":3.0},"106":{"tf":1.7320508075688772},"107":{"tf":2.6457513110645907},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":2.6457513110645907},"113":{"tf":2.449489742783178},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.7320508075688772},"129":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":2.8284271247461903},"17":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"23":{"tf":3.0},"263":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":2.23606797749979},"3":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":2.8284271247461903},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":3.1622776601683795},"39":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":2.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"62":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":2.23606797749979},"8":{"tf":2.23606797749979},"88":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":2.6457513110645907},"99":{"tf":3.3166247903554}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":17,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"19":{"tf":2.8284271247461903},"2":{"tf":1.0},"20":{"tf":2.449489742783178},"21":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":2.23606797749979},"3":{"tf":2.0},"72":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"119":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"209":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"265":{"tf":1.0},"270":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":17,"docs":{"113":{"tf":1.0},"16":{"tf":1.4142135623730951},"20":{"tf":2.0},"207":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.4142135623730951},"223":{"tf":1.0},"228":{"tf":1.0},"246":{"tf":1.0},"265":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"3":{"tf":1.0},"4":{"tf":1.4142135623730951},"69":{"tf":1.0},"87":{"tf":1.0}},"r":{"df":47,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"106":{"tf":2.8284271247461903},"107":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":2.23606797749979},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"239":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":1.0},"266":{"tf":1.4142135623730951},"268":{"tf":1.7320508075688772},"272":{"tf":1.0},"6":{"tf":1.0},"87":{"tf":1.0}}}},"i":{"d":{"df":54,"docs":{"10":{"tf":2.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"11":{"tf":1.0},"113":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"2":{"tf":2.449489742783178},"207":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"252":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"38":{"tf":1.0},"4":{"tf":2.449489742783178},"46":{"tf":1.0},"50":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"65":{"tf":2.6457513110645907},"66":{"tf":2.23606797749979},"67":{"tf":1.0},"68":{"tf":2.6457513110645907},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":2.0},"8":{"tf":2.8284271247461903},"87":{"tf":1.4142135623730951},"88":{"tf":2.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}}}},"u":{"b":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"17":{"tf":1.7320508075688772},"8":{"tf":2.6457513110645907},"86":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":8,"docs":{"111":{"tf":1.0},"137":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"265":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{".":{"0":{"df":2,"docs":{"49":{"tf":1.0},"60":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"2":{"3":{"4":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"a":{"b":{"c":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"4":{".":{"0":{"df":0,"docs":{},"x":{"a":{"b":{"c":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{".":{"0":{"df":1,"docs":{"38":{"tf":1.0}}},"2":{".":{"3":{".":{"4":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0}}},"2":{".":{"0":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0}}},"3":{"df":3,"docs":{"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0}}},"4":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}},"5":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"1":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"2":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":35,"docs":{"10":{"tf":1.0},"111":{"tf":2.23606797749979},"113":{"tf":1.7320508075688772},"122":{"tf":2.23606797749979},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":2.0},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.7320508075688772},"195":{"tf":2.0},"196":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":2.0},"63":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":3.0},"66":{"tf":1.4142135623730951},"88":{"tf":1.0},"97":{"tf":2.449489742783178}}}},"t":{"df":9,"docs":{"111":{"tf":1.0},"142":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"198":{"tf":1.0},"43":{"tf":1.0},"8":{"tf":1.0}}}},"′":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"p":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"q":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"q":{"3":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"(":{"df":0,"docs":{},"v":{"0":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"":{"=":{"(":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"":{"=":{"(":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"5":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":0,"docs":{},"":{"=":{"(":{"df":0,"docs":{},"v":{"6":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"7":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"23":{"tf":1.0},"82":{"tf":1.4142135623730951}},"u":{"a":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"209":{"tf":1.7320508075688772},"77":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"]":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{")":{".":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"77":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"24":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"178":{"tf":1.0},"65":{"tf":1.0}}}}}}}}}},"r":{"+":{"1":{"5":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"r":{"3":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"r":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"r":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"}":{"df":0,"docs":{},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"a":{"7":{"df":0,"docs":{},"":{",":{"b":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"b":{"7":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"g":{"df":2,"docs":{"239":{"tf":1.0},"240":{"tf":1.0}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":22,"docs":{"105":{"tf":1.7320508075688772},"129":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.4142135623730951},"72":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":39,"docs":{"124":{"tf":1.0},"142":{"tf":1.7320508075688772},"169":{"tf":3.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"210":{"tf":2.6457513110645907},"211":{"tf":2.6457513110645907},"212":{"tf":2.0},"213":{"tf":2.449489742783178},"214":{"tf":1.0},"215":{"tf":1.7320508075688772},"216":{"tf":2.0},"217":{"tf":2.0},"218":{"tf":1.4142135623730951},"219":{"tf":3.0},"221":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.4142135623730951},"34":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":2.0},"84":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"104":{"tf":1.0},"116":{"tf":1.4142135623730951},"206":{"tf":1.0},"233":{"tf":1.7320508075688772},"238":{"tf":1.0},"245":{"tf":1.0},"68":{"tf":1.0},"85":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"4":{"tf":1.0},"87":{"tf":1.0}}}},"df":1,"docs":{"253":{"tf":1.0}}}}}},"w":{"df":2,"docs":{"33":{"tf":2.449489742783178},"50":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"14":{"tf":1.0}}}}}},"c":{"_":{"1":{"6":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":12,"docs":{"104":{"tf":1.4142135623730951},"15":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"23":{"tf":1.0},"240":{"tf":1.0},"261":{"tf":1.0},"65":{"tf":2.449489742783178},"68":{"tf":3.605551275463989},"82":{"tf":1.4142135623730951}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"111":{"tf":2.23606797749979},"112":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"df":26,"docs":{"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":2.449489742783178},"258":{"tf":3.0},"259":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"44":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":2.449489742783178},"8":{"tf":1.0}},"i":{"df":1,"docs":{"1":{"tf":1.0}}},"–":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"–":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"3":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"105":{"tf":1.0},"130":{"tf":1.0},"142":{"tf":1.0},"19":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"142":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":5,"docs":{"107":{"tf":1.0},"15":{"tf":1.0},"3":{"tf":1.4142135623730951},"37":{"tf":1.0},"90":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":29,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"129":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"69":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":4,"docs":{"103":{"tf":1.0},"138":{"tf":1.0},"143":{"tf":1.4142135623730951},"209":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"0":{"tf":1.0},"38":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":2.0},"220":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":1.7320508075688772},"4":{"tf":1.0},"41":{"tf":1.0},"62":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"87":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"101":{"tf":1.0},"133":{"tf":1.0},"221":{"tf":1.0},"245":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"10":{"tf":1.0},"44":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":35,"docs":{"103":{"tf":3.605551275463989},"104":{"tf":1.0},"106":{"tf":4.47213595499958},"111":{"tf":3.7416573867739413},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"123":{"tf":2.23606797749979},"125":{"tf":1.7320508075688772},"138":{"tf":3.0},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"259":{"tf":1.0},"99":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"103":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.7320508075688772},"55":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"232":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.0}}}},"df":2,"docs":{"1":{"tf":1.0},"212":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"v":{"df":9,"docs":{"104":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"169":{"tf":1.4142135623730951},"243":{"tf":1.0},"245":{"tf":1.0}}}},"i":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"130":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"220":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.0},"274":{"tf":1.0},"88":{"tf":1.0}}}},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":2.23606797749979}}}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"178":{"tf":1.0},"65":{"tf":1.0},"77":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}},"df":38,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":2.23606797749979},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":2.0},"259":{"tf":1.0},"261":{"tf":1.7320508075688772},"31":{"tf":1.0},"44":{"tf":1.4142135623730951},"8":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":31,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":2.23606797749979},"108":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":3.7416573867739413},"112":{"tf":2.23606797749979},"117":{"tf":2.6457513110645907},"118":{"tf":2.8284271247461903},"123":{"tf":1.4142135623730951},"126":{"tf":3.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"131":{"tf":2.0},"135":{"tf":1.7320508075688772},"140":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"51":{"tf":2.0},"66":{"tf":2.0},"86":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{".":{"1":{"0":{"df":1,"docs":{"48":{"tf":1.0}}},"6":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"101":{"tf":1.0},"106":{"tf":2.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":2.0},"118":{"tf":2.0},"144":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"246":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":7,"docs":{"111":{"tf":1.0},"13":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"240":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"df":10,"docs":{"16":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":3.1622776601683795},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0}}},"o":{"df":1,"docs":{"22":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":41,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":2.0},"118":{"tf":2.6457513110645907},"126":{"tf":2.23606797749979},"128":{"tf":1.0},"129":{"tf":1.0},"17":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"233":{"tf":1.7320508075688772},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"111":{"tf":1.0},"128":{"tf":1.4142135623730951},"138":{"tf":1.0},"170":{"tf":1.0},"224":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"58":{"tf":2.8284271247461903},"63":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":2.449489742783178},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"215":{"tf":1.0},"219":{"tf":1.7320508075688772},"224":{"tf":1.0},"228":{"tf":2.23606797749979},"229":{"tf":2.0},"252":{"tf":1.0},"259":{"tf":1.4142135623730951},"263":{"tf":1.0},"271":{"tf":2.6457513110645907},"272":{"tf":1.7320508075688772},"41":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":45,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"119":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"170":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"230":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"272":{"tf":1.0},"274":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":12,"docs":{"2":{"tf":1.0},"206":{"tf":1.4142135623730951},"220":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"258":{"tf":1.0},"68":{"tf":2.23606797749979},"88":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"2":{"tf":1.0},"233":{"tf":1.4142135623730951},"44":{"tf":2.0},"45":{"tf":1.0}}}},"t":{"df":2,"docs":{"120":{"tf":1.0},"42":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"207":{"tf":1.0},"223":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"22":{"tf":1.7320508075688772},"274":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":17,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.7320508075688772},"111":{"tf":2.449489742783178},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":2.449489742783178},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"144":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"111":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"226":{"tf":1.0},"245":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":11,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":2.23606797749979},"229":{"tf":1.0},"252":{"tf":1.0},"271":{"tf":2.449489742783178},"272":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}}}}}},"t":{"df":55,"docs":{"111":{"tf":1.0},"137":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"31":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"2":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"50":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":53,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.449489742783178},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":1.7320508075688772},"118":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"246":{"tf":2.23606797749979},"247":{"tf":2.0},"25":{"tf":1.0},"252":{"tf":1.0},"265":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.4142135623730951},"55":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.449489742783178},"9":{"tf":1.0},"97":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"35":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"111":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":19,"docs":{"104":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"66":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}},"e":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"111":{"tf":1.0},"117":{"tf":1.0},"138":{"tf":1.0}}},"t":{"df":2,"docs":{"224":{"tf":1.0},"31":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"a":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":1,"docs":{"268":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":29,"docs":{"106":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.8284271247461903},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":2.0},"137":{"tf":1.7320508075688772},"141":{"tf":2.0},"146":{"tf":2.449489742783178},"147":{"tf":1.0},"154":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"243":{"tf":1.7320508075688772},"39":{"tf":1.0},"45":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"68":{"tf":1.0},"84":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0}}}}},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"0":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"1":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"2":{",":{"df":0,"docs":{},"i":{"df":2,"docs":{"129":{"tf":1.0},"268":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}}},"m":{"'":{"df":2,"docs":{"262":{"tf":1.0},"263":{"tf":1.0}}},"df":14,"docs":{"116":{"tf":1.7320508075688772},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"260":{"tf":2.0},"261":{"tf":2.0},"262":{"tf":2.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.0},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"75":{"tf":1.0}}}}},"df":29,"docs":{"100":{"tf":1.0},"105":{"tf":2.23606797749979},"107":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":1.0},"2":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":2.23606797749979},"232":{"tf":2.23606797749979},"233":{"tf":2.23606797749979},"240":{"tf":2.0},"243":{"tf":1.0},"245":{"tf":3.1622776601683795},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"41":{"tf":2.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"75":{"tf":3.0},"8":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":2.0},"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"19":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951}}}}}},"n":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":10,"docs":{"166":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"240":{"tf":2.449489742783178},"244":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"'":{"df":1,"docs":{"251":{"tf":1.0}}},"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"2":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"6":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":67,"docs":{"103":{"tf":1.0},"104":{"tf":2.449489742783178},"105":{"tf":3.0},"106":{"tf":4.0},"110":{"tf":1.7320508075688772},"111":{"tf":4.123105625617661},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":3.3166247903554},"118":{"tf":2.8284271247461903},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":2.449489742783178},"126":{"tf":3.1622776601683795},"128":{"tf":1.0},"129":{"tf":3.872983346207417},"130":{"tf":2.449489742783178},"131":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"211":{"tf":2.23606797749979},"213":{"tf":2.449489742783178},"217":{"tf":2.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"223":{"tf":3.1622776601683795},"226":{"tf":1.0},"227":{"tf":2.0},"231":{"tf":1.4142135623730951},"233":{"tf":2.6457513110645907},"234":{"tf":4.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"244":{"tf":2.23606797749979},"245":{"tf":3.0},"246":{"tf":3.0},"247":{"tf":2.8284271247461903},"250":{"tf":2.449489742783178},"251":{"tf":2.449489742783178},"252":{"tf":2.0},"254":{"tf":2.6457513110645907},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.7320508075688772},"259":{"tf":2.0},"261":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":3.1622776601683795},"268":{"tf":2.23606797749979},"87":{"tf":1.7320508075688772},"97":{"tf":1.0}}}},"p":{"c":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":9,"docs":{"113":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":24,"docs":{"105":{"tf":1.7320508075688772},"112":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":2.449489742783178},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"211":{"tf":2.23606797749979},"212":{"tf":2.23606797749979},"217":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.7320508075688772},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":4.0},"267":{"tf":1.0},"271":{"tf":1.7320508075688772},"32":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"37":{"tf":1.0},"66":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"11":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"r":{")":{"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"7":{"df":0,"docs":{},"":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"3":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{",":{"d":{")":{")":{"df":0,"docs":{},"r":{"df":0,"docs":{},"′":{"df":0,"docs":{},"←":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{",":{"d":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"0":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":9,"docs":{"161":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":23,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"126":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.4142135623730951},"217":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.4142135623730951},"258":{"tf":2.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0}},"":{"+":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},",":{".":{".":{".":{",":{"df":0,"docs":{},"s":{"1":{"4":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},".":{".":{".":{"df":0,"docs":{},"s":{"1":{"5":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"0":{"df":3,"docs":{"212":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"263":{"tf":1.0}}},"1":{"df":3,"docs":{"212":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"263":{"tf":1.0}}},"2":{"4":{"8":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"1":{"=":{"0":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"1":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"3":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"2":{"4":{"8":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"2":{"4":{"8":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"":{"+":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"":{"=":{"0":{"df":2,"docs":{"159":{"tf":1.0},"165":{"tf":1.0}}},"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"′":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"166":{"tf":1.0},"175":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"182":{"tf":1.0}}},"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"2":{"df":4,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"2":{"df":2,"docs":{"173":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"+":{"1":{")":{"=":{"0":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{")":{"=":{"0":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"=":{"0":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"158":{"tf":1.0},"162":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"184":{"tf":1.0},"190":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"⋅":{"(":{"df":0,"docs":{},"f":{"a":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"1":{"2":{"df":1,"docs":{"204":{"tf":1.0}},"":{"+":{"1":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":3,"docs":{"212":{"tf":1.0},"218":{"tf":1.0},"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"s":{"1":{"2":{"df":0,"docs":{},"":{"+":{"2":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"5":{"df":2,"docs":{"131":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951}}},"df":10,"docs":{"162":{"tf":1.0},"163":{"tf":1.0},"212":{"tf":1.4142135623730951},"217":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.4142135623730951},"258":{"tf":2.0},"259":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"s":{"1":{"5":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"0":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"212":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"2":{"3":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"⋅":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"′":{"df":0,"docs":{},"":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"h":{"0":{"df":7,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"1":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"≤":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}}}}},"2":{"df":5,"docs":{"223":{"tf":1.4142135623730951},"227":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0}},"":{"=":{"1":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{")":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"∗":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"−":{"df":0,"docs":{},"s":{"=":{"0":{"df":1,"docs":{"249":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"3":{"df":1,"docs":{"227":{"tf":1.0}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"∗":{"2":{"+":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"=":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"":{"+":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"=":{"0":{"df":1,"docs":{"249":{"tf":1.0}}},"1":{"df":1,"docs":{"249":{"tf":1.0}}},"df":0,"docs":{}},"_":{"1":{"df":1,"docs":{"259":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":46,"docs":{"101":{"tf":1.0},"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"127":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.4142135623730951},"150":{"tf":1.0},"184":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.7320508075688772},"233":{"tf":1.7320508075688772},"240":{"tf":2.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":2.0},"249":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":2.0},"256":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":2.6457513110645907},"259":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"267":{"tf":1.0},"271":{"tf":2.0},"272":{"tf":1.4142135623730951},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"60":{"tf":2.23606797749979},"89":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":37,"docs":{"133":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"243":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"202":{"tf":1.0},"203":{"tf":1.0},"24":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}},"c":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"110":{"tf":1.0},"27":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"138":{"tf":1.0},"274":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"141":{"tf":1.0},"196":{"tf":2.0},"64":{"tf":1.0}}}}}}},"df":3,"docs":{"23":{"tf":1.0},"248":{"tf":1.0},"65":{"tf":2.449489742783178}},"e":{"c":{"df":2,"docs":{"20":{"tf":2.8284271247461903},"21":{"tf":2.0}},"o":{"df":0,"docs":{},"n":{"d":{"df":25,"docs":{"105":{"tf":1.7320508075688772},"108":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"211":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"245":{"tf":1.7320508075688772},"254":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.7320508075688772},"2":{"tf":1.0},"8":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":36,"docs":{"100":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":2.23606797749979},"123":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"217":{"tf":1.0},"219":{"tf":1.0},"232":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"25":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"37":{"tf":1.0},"4":{"tf":1.7320508075688772},"42":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"1":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"266":{"tf":1.4142135623730951},"274":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"17":{"tf":1.0},"209":{"tf":1.0},"62":{"tf":1.0},"71":{"tf":1.0}},"n":{"df":4,"docs":{"138":{"tf":1.0},"20":{"tf":1.0},"223":{"tf":1.0},"89":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"209":{"tf":1.4142135623730951},"221":{"tf":1.0},"273":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"226":{"tf":1.0},"233":{"tf":1.4142135623730951},"245":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0},"47":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"224":{"tf":1.0}}},"df":25,"docs":{"104":{"tf":1.7320508075688772},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"169":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.7320508075688772},"223":{"tf":1.7320508075688772},"224":{"tf":2.0},"226":{"tf":1.7320508075688772},"227":{"tf":4.47213595499958},"230":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":3.4641016151377544},"242":{"tf":1.7320508075688772},"245":{"tf":1.0},"249":{"tf":2.0},"251":{"tf":1.0},"258":{"tf":2.0},"259":{"tf":1.0},"262":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"106":{"tf":1.7320508075688772},"111":{"tf":1.0},"168":{"tf":1.0},"195":{"tf":1.0},"240":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"63":{"tf":1.0},"90":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"d":{"df":7,"docs":{"116":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"245":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.0}}},"t":{"df":9,"docs":{"116":{"tf":1.0},"219":{"tf":1.4142135623730951},"224":{"tf":1.0},"228":{"tf":2.0},"229":{"tf":1.0},"245":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":2.23606797749979},"87":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"2":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"36":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":18,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"18":{"tf":1.0},"246":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"88":{"tf":1.0},"97":{"tf":2.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"104":{"tf":2.0},"106":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.4142135623730951},"220":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"35":{"tf":1.0},"69":{"tf":1.0}}}},"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"v":{"df":4,"docs":{"103":{"tf":1.0},"142":{"tf":1.0},"245":{"tf":1.0},"6":{"tf":1.0}}}},"t":{"df":104,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.23606797749979},"105":{"tf":2.0},"106":{"tf":3.605551275463989},"11":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":2.6457513110645907},"113":{"tf":2.23606797749979},"114":{"tf":1.4142135623730951},"116":{"tf":2.8284271247461903},"117":{"tf":2.0},"118":{"tf":2.0},"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":2.449489742783178},"124":{"tf":2.0},"125":{"tf":2.23606797749979},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":2.449489742783178},"132":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"138":{"tf":2.23606797749979},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"223":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":2.449489742783178},"234":{"tf":4.358898943540674},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"242":{"tf":2.0},"243":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":2.0},"258":{"tf":3.0},"259":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"274":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"100":{"tf":1.0},"246":{"tf":1.4142135623730951}}},"r":{"df":9,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"145":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"33":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"88":{"tf":1.0}}}}}},"h":{"a":{"2":{"5":{"6":{"df":2,"docs":{"72":{"tf":1.0},"80":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":1.0},"230":{"tf":1.0},"245":{"tf":1.0},"69":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":45,"docs":{"127":{"tf":1.0},"130":{"tf":2.8284271247461903},"131":{"tf":2.6457513110645907},"132":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"135":{"tf":2.6457513110645907},"137":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"140":{"tf":2.0},"141":{"tf":2.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":2.449489742783178},"147":{"tf":3.1622776601683795},"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"81":{"tf":1.0},"84":{"tf":4.123105625617661}}}},"p":{"df":1,"docs":{"2":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":4,"docs":{"100":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"w":{"df":2,"docs":{"138":{"tf":1.0},"169":{"tf":1.0}},"n":{"df":15,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":2.449489742783178},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"138":{"tf":1.0},"246":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"272":{"tf":1.0},"89":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"i":{"+":{"1":{"2":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"8":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"187":{"tf":1.0},"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"162":{"tf":1.0},"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"208":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":2.0},"245":{"tf":3.1622776601683795},"269":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"259":{"tf":1.0},"263":{"tf":1.0}}}},"df":1,"docs":{"238":{"tf":1.0}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"221":{"tf":1.0}}}}}}},"df":13,"docs":{"111":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951},"258":{"tf":1.0},"33":{"tf":1.0},"81":{"tf":1.0}}},"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":2.0},"118":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.4142135623730951},"44":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"115":{"tf":1.0},"147":{"tf":1.0},"184":{"tf":1.0},"210":{"tf":1.0},"257":{"tf":1.0},"43":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"112":{"tf":1.0},"18":{"tf":1.0},"212":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.4142135623730951},"245":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.4142135623730951},"33":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"75":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"211":{"tf":1.0},"254":{"tf":1.0}}}}},"i":{"c":{"df":3,"docs":{"170":{"tf":1.0},"222":{"tf":1.0},"247":{"tf":1.0}}},"df":6,"docs":{"111":{"tf":1.4142135623730951},"130":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"35":{"tf":1.0},"87":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":24,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"33":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"240":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":44,"docs":{"103":{"tf":1.4142135623730951},"105":{"tf":2.449489742783178},"11":{"tf":1.0},"111":{"tf":3.1622776601683795},"112":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"134":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"20":{"tf":2.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"219":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":2.23606797749979},"25":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":2.23606797749979},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"271":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.0},"97":{"tf":3.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"42":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"257":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":8,"docs":{"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":2.0},"209":{"tf":1.7320508075688772},"70":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"+":{"1":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"+":{"1":{"2":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":0,"docs":{},"":{"=":{"0":{"df":2,"docs":{"187":{"tf":1.0},"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":6,"docs":{"104":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"49":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951}}},"w":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.0},"232":{"tf":1.0},"266":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"246":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"105":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"211":{"tf":1.0},"23":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"19":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":7,"docs":{"2":{"tf":1.0},"209":{"tf":1.4142135623730951},"23":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"3":{"tf":1.0},"62":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"232":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0}}}}},"p":{"=":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":7,"docs":{"130":{"tf":1.0},"2":{"tf":1.0},"221":{"tf":1.0},"25":{"tf":1.0},"266":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":2.23606797749979}}}},"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":25,"docs":{"101":{"tf":3.1622776601683795},"103":{"tf":2.0},"105":{"tf":2.0},"106":{"tf":2.6457513110645907},"107":{"tf":1.4142135623730951},"111":{"tf":5.385164807134504},"112":{"tf":3.1622776601683795},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":2.23606797749979},"120":{"tf":2.449489742783178},"121":{"tf":1.4142135623730951},"122":{"tf":3.0},"123":{"tf":2.23606797749979},"124":{"tf":2.0},"125":{"tf":1.7320508075688772},"126":{"tf":2.23606797749979},"143":{"tf":1.0},"2":{"tf":1.0},"41":{"tf":1.0},"97":{"tf":2.449489742783178},"99":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"10":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"103":{"tf":1.0},"120":{"tf":2.23606797749979},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"220":{"tf":1.4142135623730951},"228":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"44":{"tf":1.4142135623730951},"68":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":26,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"16":{"tf":1.0},"209":{"tf":1.0},"220":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"232":{"tf":1.0},"233":{"tf":1.0},"244":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.7320508075688772},"36":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":35,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"120":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":2.23606797749979},"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"226":{"tf":1.0},"261":{"tf":1.0},"270":{"tf":1.4142135623730951},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":3.7416573867739413},"88":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"2":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"101":{"tf":2.23606797749979},"103":{"tf":1.0},"106":{"tf":2.23606797749979},"109":{"tf":2.0},"112":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{")":{"=":{"0":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"′":{"=":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"′":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{")":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"δ":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"δ":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"δ":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"33":{"tf":1.0}}}},"l":{"df":2,"docs":{"1":{"tf":1.0},"33":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"75":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"4":{")":{",":{"a":{"d":{"df":0,"docs":{},"v":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}}}},"df":158,"docs":{"10":{"tf":2.0},"101":{"tf":1.4142135623730951},"105":{"tf":2.449489742783178},"106":{"tf":3.4641016151377544},"109":{"tf":1.0},"110":{"tf":3.872983346207417},"111":{"tf":2.0},"112":{"tf":3.872983346207417},"113":{"tf":4.123105625617661},"114":{"tf":1.7320508075688772},"117":{"tf":4.123105625617661},"118":{"tf":2.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":4.242640687119285},"128":{"tf":3.3166247903554},"129":{"tf":2.6457513110645907},"130":{"tf":3.3166247903554},"131":{"tf":3.1622776601683795},"132":{"tf":1.4142135623730951},"133":{"tf":2.0},"134":{"tf":3.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":3.605551275463989},"138":{"tf":1.0},"139":{"tf":4.795831523312719},"140":{"tf":2.8284271247461903},"141":{"tf":4.242640687119285},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":2.23606797749979},"151":{"tf":2.0},"152":{"tf":2.23606797749979},"153":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":1.0},"156":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":2.0},"159":{"tf":2.0},"160":{"tf":2.0},"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":2.0},"164":{"tf":2.0},"165":{"tf":2.0},"166":{"tf":2.23606797749979},"167":{"tf":3.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":2.0},"172":{"tf":2.23606797749979},"173":{"tf":2.0},"174":{"tf":2.0},"175":{"tf":2.0},"176":{"tf":2.0},"177":{"tf":2.0},"178":{"tf":2.0},"179":{"tf":2.0},"18":{"tf":1.4142135623730951},"180":{"tf":2.0},"181":{"tf":2.23606797749979},"182":{"tf":2.23606797749979},"183":{"tf":2.23606797749979},"184":{"tf":3.3166247903554},"185":{"tf":2.23606797749979},"186":{"tf":2.23606797749979},"187":{"tf":2.23606797749979},"188":{"tf":2.23606797749979},"189":{"tf":2.23606797749979},"190":{"tf":3.0},"191":{"tf":2.8284271247461903},"192":{"tf":2.449489742783178},"193":{"tf":2.449489742783178},"194":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"196":{"tf":2.449489742783178},"197":{"tf":2.449489742783178},"198":{"tf":2.6457513110645907},"199":{"tf":1.4142135623730951},"200":{"tf":2.23606797749979},"201":{"tf":2.23606797749979},"202":{"tf":2.449489742783178},"203":{"tf":2.23606797749979},"204":{"tf":2.449489742783178},"205":{"tf":1.7320508075688772},"206":{"tf":2.449489742783178},"207":{"tf":2.0},"208":{"tf":2.0},"209":{"tf":3.3166247903554},"215":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.7320508075688772},"222":{"tf":1.0},"223":{"tf":2.0},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":1.7320508075688772},"24":{"tf":1.0},"245":{"tf":1.7320508075688772},"252":{"tf":1.0},"259":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"28":{"tf":2.8284271247461903},"31":{"tf":2.0},"35":{"tf":1.4142135623730951},"38":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.0},"45":{"tf":2.8284271247461903},"47":{"tf":1.0},"49":{"tf":2.23606797749979},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"6":{"tf":3.0},"60":{"tf":5.291502622129181},"61":{"tf":1.0},"62":{"tf":2.6457513110645907},"63":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":5.0990195135927845},"66":{"tf":4.123105625617661},"68":{"tf":1.0},"74":{"tf":2.8284271247461903},"75":{"tf":2.449489742783178},"79":{"tf":2.0},"8":{"tf":2.449489742783178},"80":{"tf":2.0},"81":{"tf":2.23606797749979},"82":{"tf":3.872983346207417},"83":{"tf":4.69041575982343},"84":{"tf":3.0},"85":{"tf":1.7320508075688772},"86":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"9":{"tf":2.449489742783178},"93":{"tf":2.0},"94":{"tf":2.8284271247461903},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":21,"docs":{"32":{"tf":1.4142135623730951},"38":{"tf":1.0},"69":{"tf":2.449489742783178},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"33":{"tf":1.4142135623730951},"35":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"258":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":9,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"274":{"tf":4.123105625617661},"4":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":95,"docs":{"105":{"tf":2.23606797749979},"107":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":1.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":2.0},"127":{"tf":1.0},"137":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":2.23606797749979},"233":{"tf":1.0},"234":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"245":{"tf":2.0},"261":{"tf":1.0},"271":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"74":{"tf":1.7320508075688772},"8":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}}}},"t":{"df":1,"docs":{"16":{"tf":1.4142135623730951}},"e":{"df":43,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":2.23606797749979},"106":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":2.23606797749979},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"150":{"tf":1.4142135623730951},"172":{"tf":1.0},"18":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":2.23606797749979},"233":{"tf":2.449489742783178},"236":{"tf":2.449489742783178},"237":{"tf":2.0},"238":{"tf":2.6457513110645907},"239":{"tf":2.6457513110645907},"24":{"tf":1.0},"240":{"tf":2.6457513110645907},"243":{"tf":1.4142135623730951},"244":{"tf":2.449489742783178},"245":{"tf":3.3166247903554},"28":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"2":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":3,"docs":{"255":{"tf":1.0},"256":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"y":{"df":6,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"217":{"tf":1.0},"249":{"tf":1.0},"262":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"6":{"4":{"df":2,"docs":{"72":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"f":{"4":{"df":2,"docs":{"72":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"76":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"3":{"df":2,"docs":{"72":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":2,"docs":{"72":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"u":{"6":{"4":{"df":7,"docs":{"38":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"71":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"72":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"72":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"86":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"255":{"tf":1.0}}}},"p":{"df":16,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":2.449489742783178},"112":{"tf":2.23606797749979},"130":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":2.23606797749979},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"242":{"tf":1.0},"267":{"tf":1.0},"99":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"110":{"tf":1.0},"137":{"tf":1.0},"212":{"tf":1.0},"255":{"tf":1.0},"63":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"6":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"10":{"tf":1.7320508075688772},"114":{"tf":1.0},"128":{"tf":1.0},"17":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"265":{"tf":1.0},"267":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"6":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":2.23606797749979},"79":{"tf":2.0},"80":{"tf":2.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"219":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"270":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"17":{"tf":2.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":16,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"17":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"233":{"tf":1.0},"255":{"tf":1.0},"4":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"16":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"52":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"34":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":9,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"137":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"262":{"tf":1.0},"37":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"82":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"65":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"h":{"df":21,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"121":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.7320508075688772},"233":{"tf":1.0},"245":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"29":{"tf":1.0},"60":{"tf":1.0},"7":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"170":{"tf":1.0},"199":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":4,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"207":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"17":{"tf":2.23606797749979},"2":{"tf":1.4142135623730951},"55":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"138":{"tf":1.0},"2":{"tf":2.449489742783178},"212":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"270":{"tf":1.0},"3":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"39":{"tf":1.4142135623730951},"7":{"tf":1.0},"88":{"tf":1.0}}}},"s":{"df":2,"docs":{"239":{"tf":1.0},"240":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":26,"docs":{"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"114":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"218":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"250":{"tf":2.0},"254":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":2.0},"264":{"tf":1.0},"9":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"p":{".":{"1":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"w":{"df":3,"docs":{"139":{"tf":1.0},"189":{"tf":2.0},"60":{"tf":1.0}}}},"df":11,"docs":{"139":{"tf":1.0},"185":{"tf":2.23606797749979},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"60":{"tf":2.6457513110645907}},"w":{".":{"1":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":2,"docs":{"139":{"tf":1.0},"187":{"tf":2.0}}},"3":{"df":2,"docs":{"139":{"tf":1.0},"188":{"tf":2.0}}},"df":3,"docs":{"139":{"tf":1.0},"186":{"tf":2.0},"60":{"tf":1.4142135623730951}}}},"y":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"246":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"33":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":2.0},"144":{"tf":1.0},"220":{"tf":1.0},"229":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":2.6457513110645907},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"64":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":3.1622776601683795},"99":{"tf":1.0}},"l":{".":{"<":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"245":{"tf":1.0}}},"df":21,"docs":{"111":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"149":{"tf":2.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"169":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"4":{"tf":1.4142135623730951},"72":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"c":{"'":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"⋅":{"(":{"df":0,"docs":{},"z":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"1":{"6":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"+":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"2":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{")":{")":{")":{")":{"=":{"0":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"0":{"df":4,"docs":{"105":{"tf":1.7320508075688772},"129":{"tf":1.0},"131":{"tf":1.0},"170":{"tf":1.0}},"":{",":{"df":0,"docs":{},"t":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"df":5,"docs":{"105":{"tf":1.4142135623730951},"129":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"170":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"t":{"4":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":6,"docs":{"105":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"170":{"tf":1.0}}},"3":{"df":1,"docs":{"170":{"tf":1.0}}},"5":{"df":1,"docs":{"105":{"tf":1.0}}},"6":{"df":1,"docs":{"105":{"tf":1.0}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"77":{"tf":2.0}}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":51,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":6.324555320336759},"106":{"tf":5.291502622129181},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":3.0},"111":{"tf":4.898979485566356},"112":{"tf":4.358898943540674},"113":{"tf":2.6457513110645907},"115":{"tf":2.0},"117":{"tf":4.242640687119285},"118":{"tf":4.242640687119285},"119":{"tf":1.4142135623730951},"126":{"tf":4.47213595499958},"128":{"tf":1.0},"129":{"tf":3.605551275463989},"130":{"tf":2.8284271247461903},"131":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":3.0},"17":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.4142135623730951},"221":{"tf":1.0},"230":{"tf":3.1622776601683795},"231":{"tf":2.449489742783178},"233":{"tf":3.0},"244":{"tf":1.0},"245":{"tf":3.3166247903554},"246":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"248":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":3.3166247903554},"265":{"tf":1.7320508075688772},"267":{"tf":3.0},"268":{"tf":2.0},"269":{"tf":3.3166247903554},"50":{"tf":1.0},"55":{"tf":1.4142135623730951},"67":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"268":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"21":{"tf":1.0},"55":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.449489742783178}},"n":{"df":2,"docs":{"101":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"13":{"tf":1.0},"15":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"24":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"35":{"tf":1.4142135623730951},"7":{"tf":1.0},"71":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"101":{"tf":1.0},"13":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0}}}}},"df":5,"docs":{"256":{"tf":1.4142135623730951},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0},"64":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"104":{"tf":1.0},"116":{"tf":1.7320508075688772},"118":{"tf":2.23606797749979},"127":{"tf":1.0},"18":{"tf":1.0},"206":{"tf":1.0},"34":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"37":{"tf":1.0},"45":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"274":{"tf":1.0},"51":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"t":{"'":{"df":3,"docs":{"271":{"tf":1.0},"272":{"tf":1.0},"55":{"tf":1.0}}},":":{"1":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"111":{"tf":1.0},"184":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"230":{"tf":1.0},"71":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"116":{"tf":1.0},"223":{"tf":1.7320508075688772},"262":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}},"g":{"df":3,"docs":{"2":{"tf":1.0},"24":{"tf":1.4142135623730951},"60":{"tf":1.0}}}},"r":{"d":{"df":10,"docs":{"105":{"tf":1.4142135623730951},"112":{"tf":1.0},"138":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"23":{"tf":1.0},"245":{"tf":1.4142135623730951},"35":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"215":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0},"270":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"111":{"tf":1.0},"212":{"tf":1.0}},"t":{"df":6,"docs":{"105":{"tf":1.7320508075688772},"111":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.0},"232":{"tf":1.0},"266":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":9,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"123":{"tf":1.0},"143":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.4142135623730951},"42":{"tf":1.0},"6":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"23":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.0},"249":{"tf":1.0},"34":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}}}}}}}}},"u":{"df":77,"docs":{"100":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":2.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"138":{"tf":2.449489742783178},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"147":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"238":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.7320508075688772},"271":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.7320508075688772},"7":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":2.0},"98":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":1,"docs":{"238":{"tf":1.0}},"e":{"df":2,"docs":{"233":{"tf":1.0},"245":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":25,"docs":{"105":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"129":{"tf":1.0},"19":{"tf":3.0},"20":{"tf":2.449489742783178},"209":{"tf":1.0},"21":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"226":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951},"263":{"tf":1.0},"267":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":6,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"211":{"tf":1.0},"240":{"tf":1.4142135623730951},"245":{"tf":1.0},"65":{"tf":1.0},"87":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"116":{"tf":1.0}}},"l":{"df":12,"docs":{"16":{"tf":1.0},"22":{"tf":2.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0}}}},"p":{"df":71,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":3.3166247903554},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.6457513110645907},"114":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"42":{"tf":1.7320508075688772},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":3.1622776601683795},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":2.449489742783178},"68":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"93":{"tf":2.0},"94":{"tf":2.8284271247461903},"98":{"tf":2.23606797749979}}},"t":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"106":{"tf":1.0},"111":{"tf":2.0},"138":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"258":{"tf":1.0},"37":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":49,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"105":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":2.0},"128":{"tf":1.0},"136":{"tf":1.7320508075688772},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":2.6457513110645907},"218":{"tf":1.4142135623730951},"219":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":4.0},"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"230":{"tf":1.0},"233":{"tf":2.23606797749979},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"258":{"tf":2.23606797749979},"261":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"265":{"tf":2.8284271247461903},"266":{"tf":3.0},"267":{"tf":1.0},"268":{"tf":1.7320508075688772},"271":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"87":{"tf":1.7320508075688772},"89":{"tf":2.0}}},"k":{"df":16,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"117":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.4142135623730951},"260":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"89":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"19":{"tf":1.0},"258":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":58,"docs":{"113":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"223":{"tf":2.6457513110645907},"231":{"tf":1.4142135623730951},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"41":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":24,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"17":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":2.0},"220":{"tf":1.0},"239":{"tf":2.23606797749979},"240":{"tf":2.449489742783178},"33":{"tf":1.4142135623730951},"6":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":3.3166247903554},"75":{"tf":3.3166247903554},"77":{"tf":1.0},"8":{"tf":2.449489742783178},"88":{"tf":1.0},"90":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"255":{"tf":1.0}}}}},"df":4,"docs":{"213":{"tf":1.0},"35":{"tf":1.0},"66":{"tf":1.0},"98":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"223":{"tf":1.0},"252":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"42":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"106":{"tf":3.605551275463989},"111":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"135":{"tf":1.4142135623730951},"17":{"tf":1.0},"77":{"tf":1.7320508075688772}},"e":{".":{"2":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}},"n":{"df":4,"docs":{"112":{"tf":1.0},"138":{"tf":1.0},"169":{"tf":1.0},"36":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"233":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"'":{"df":1,"docs":{"175":{"tf":1.0}}},"df":64,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"115":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"148":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":2.0},"227":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":2.8284271247461903},"259":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"269":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":3.872983346207417},"83":{"tf":4.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":10,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.0},"234":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"266":{"tf":1.0},"270":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}}}},"←":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"0":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"u":{"3":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"2":{"a":{"d":{"d":{"3":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"174":{"tf":2.0}}},"df":2,"docs":{"142":{"tf":1.0},"173":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"140":{"tf":1.0},"179":{"tf":2.0},"248":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"1":{"df":1,"docs":{"56":{"tf":1.0}}},"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":2,"docs":{"142":{"tf":1.0},"172":{"tf":2.0}}},"df":1,"docs":{"56":{"tf":1.0}},"w":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{".":{"b":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"27":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"57":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"28":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"u":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"142":{"tf":1.0},"178":{"tf":2.0}}}}},"df":24,"docs":{"140":{"tf":1.4142135623730951},"142":{"tf":3.3166247903554},"168":{"tf":2.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"2":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.0}},"m":{"a":{"d":{"d":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"177":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"142":{"tf":1.0},"176":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"3":{"df":1,"docs":{"57":{"tf":1.0}}},"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"d":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"171":{"tf":2.0},"56":{"tf":1.0}}}}}},"u":{"b":{"df":2,"docs":{"142":{"tf":1.0},"175":{"tf":2.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}},"w":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"57":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"3":{"df":1,"docs":{"57":{"tf":1.0}}},"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"d":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"140":{"tf":1.0},"180":{"tf":2.0},"248":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0}}}}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"65":{"tf":1.0},"81":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"1":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"+":{"df":0,"docs":{},"α":{"4":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"z":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"d":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"213":{"tf":1.0},"252":{"tf":1.7320508075688772},"263":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"b":{"df":0,"docs":{},"h":{"+":{"df":0,"docs":{},"α":{"6":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"1":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"5":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":1,"docs":{"252":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"tf":1.4142135623730951}},"":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{",":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{",":{"2":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"4":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"+":{"df":0,"docs":{},"v":{"df":2,"docs":{"200":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"113":{"tf":2.23606797749979},"167":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"238":{"tf":1.0},"259":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"55":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951}},"e":{"d":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"82":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"83":{"tf":1.0}},"z":{"df":1,"docs":{"83":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"83":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"242":{"tf":1.0},"244":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"55":{"tf":1.0},"57":{"tf":3.605551275463989},"58":{"tf":2.23606797749979},"59":{"tf":2.449489742783178},"77":{"tf":1.0},"81":{"tf":1.0}}}}},"r":{"df":9,"docs":{"135":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"19":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"38":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"82":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":2,"docs":{"24":{"tf":1.0},"31":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":32,"docs":{"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"252":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"272":{"tf":1.0},"89":{"tf":1.0},"99":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"234":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"87":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":7,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"127":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":8,"docs":{"168":{"tf":1.0},"2":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":2.23606797749979},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"120":{"tf":1.0},"23":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"139":{"tf":1.0},"143":{"tf":2.8284271247461903}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":22,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"232":{"tf":2.23606797749979},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"240":{"tf":2.0},"243":{"tf":1.0},"245":{"tf":2.23606797749979},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":17,"docs":{"105":{"tf":1.4142135623730951},"111":{"tf":2.0},"138":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"238":{"tf":1.0},"258":{"tf":1.7320508075688772},"6":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"77":{"tf":1.0},"97":{"tf":2.0},"98":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"266":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"32":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"df":136,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":1.0},"105":{"tf":2.0},"106":{"tf":2.449489742783178},"107":{"tf":1.0},"11":{"tf":2.0},"111":{"tf":3.0},"113":{"tf":2.0},"115":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":1.0},"118":{"tf":1.7320508075688772},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":3.0},"14":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"147":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.4142135623730951},"199":{"tf":1.0},"2":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"210":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":1.0},"220":{"tf":2.0},"223":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":2.449489742783178},"233":{"tf":3.4641016151377544},"234":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":2.0},"243":{"tf":1.0},"245":{"tf":3.4641016151377544},"246":{"tf":1.4142135623730951},"247":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.449489742783178},"266":{"tf":1.7320508075688772},"267":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":2.0},"38":{"tf":2.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":2.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"77":{"tf":2.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.872983346207417},"87":{"tf":1.7320508075688772},"88":{"tf":3.0},"89":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":2.0},"99":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"u":{"6":{"4":{"df":2,"docs":{"38":{"tf":1.4142135623730951},"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"97":{"tf":1.0}}},"df":60,"docs":{"17":{"tf":1.0},"2":{"tf":1.7320508075688772},"23":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"d":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"72":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"52":{"tf":1.0}}}}},"v":{"0":{".":{"7":{"df":2,"docs":{"1":{"tf":1.0},"11":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"258":{"tf":1.0}},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"v":{"7":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"1":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"":{",":{"df":0,"docs":{},"v":{"3":{"df":3,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{"7":{"df":1,"docs":{"130":{"tf":1.0}}},"8":{"df":1,"docs":{"130":{"tf":1.0}}},"df":3,"docs":{"126":{"tf":1.0},"130":{"tf":1.0},"258":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"2":{"df":3,"docs":{"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"258":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"258":{"tf":1.0}}},"8":{"df":0,"docs":{},"":{",":{".":{".":{".":{",":{"df":0,"docs":{},"v":{"1":{"5":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":2,"docs":{"200":{"tf":1.0},"202":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"264":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"1":{"5":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"b":{"1":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"0":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"(":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"i":{"=":{"1":{"df":0,"docs":{},"∑":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"α":{"df":0,"docs":{},"i":{"+":{"5":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"3":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{"df":2,"docs":{"201":{"tf":1.0},"203":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"′":{"df":0,"docs":{},"":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"245":{"tf":1.0}},"l":{"df":2,"docs":{"166":{"tf":1.4142135623730951},"255":{"tf":2.6457513110645907}},"i":{"d":{"df":13,"docs":{"107":{"tf":1.0},"170":{"tf":2.6457513110645907},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"25":{"tf":1.0},"60":{"tf":2.8284271247461903},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":157,"docs":{"10":{"tf":2.0},"100":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":3.605551275463989},"105":{"tf":4.0},"106":{"tf":4.795831523312719},"110":{"tf":1.7320508075688772},"111":{"tf":5.477225575051661},"113":{"tf":2.0},"114":{"tf":2.8284271247461903},"116":{"tf":4.123105625617661},"117":{"tf":3.3166247903554},"118":{"tf":3.605551275463989},"120":{"tf":3.0},"121":{"tf":2.0},"122":{"tf":2.0},"123":{"tf":3.0},"124":{"tf":2.23606797749979},"126":{"tf":4.58257569495584},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":3.7416573867739413},"130":{"tf":2.8284271247461903},"131":{"tf":3.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":2.449489742783178},"138":{"tf":2.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.4142135623730951},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":2.0},"17":{"tf":2.0},"170":{"tf":2.23606797749979},"171":{"tf":2.0},"172":{"tf":1.7320508075688772},"173":{"tf":2.0},"174":{"tf":2.0},"175":{"tf":2.0},"176":{"tf":2.23606797749979},"177":{"tf":2.23606797749979},"178":{"tf":1.7320508075688772},"179":{"tf":2.0},"180":{"tf":2.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"199":{"tf":2.0},"200":{"tf":2.23606797749979},"201":{"tf":2.23606797749979},"202":{"tf":2.0},"203":{"tf":2.23606797749979},"204":{"tf":2.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"207":{"tf":2.23606797749979},"208":{"tf":2.8284271247461903},"209":{"tf":3.1622776601683795},"210":{"tf":1.0},"211":{"tf":4.242640687119285},"212":{"tf":3.0},"213":{"tf":2.23606797749979},"216":{"tf":1.4142135623730951},"217":{"tf":2.8284271247461903},"218":{"tf":1.7320508075688772},"219":{"tf":2.23606797749979},"224":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"23":{"tf":2.0},"231":{"tf":2.449489742783178},"232":{"tf":2.0},"233":{"tf":3.1622776601683795},"234":{"tf":2.449489742783178},"238":{"tf":1.4142135623730951},"239":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":2.8284271247461903},"244":{"tf":1.0},"245":{"tf":3.7416573867739413},"246":{"tf":3.4641016151377544},"247":{"tf":2.8284271247461903},"250":{"tf":2.6457513110645907},"251":{"tf":2.23606797749979},"252":{"tf":2.0},"253":{"tf":1.7320508075688772},"254":{"tf":3.605551275463989},"255":{"tf":2.23606797749979},"256":{"tf":2.23606797749979},"257":{"tf":2.23606797749979},"258":{"tf":3.7416573867739413},"259":{"tf":3.4641016151377544},"261":{"tf":2.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":2.23606797749979},"267":{"tf":2.449489742783178},"268":{"tf":2.23606797749979},"271":{"tf":2.0},"272":{"tf":3.0},"29":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.7320508075688772},"49":{"tf":2.449489742783178},"50":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.7320508075688772},"60":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":2.449489742783178},"64":{"tf":1.0},"65":{"tf":2.8284271247461903},"68":{"tf":2.0},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":3.872983346207417},"77":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":2.449489742783178},"80":{"tf":1.0},"81":{"tf":2.23606797749979},"82":{"tf":3.872983346207417},"83":{"tf":4.242640687119285},"84":{"tf":3.872983346207417},"85":{"tf":1.0},"87":{"tf":2.0},"89":{"tf":1.4142135623730951},"97":{"tf":2.23606797749979},"98":{"tf":2.8284271247461903},"99":{"tf":2.23606797749979}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":26,"docs":{"103":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"219":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}},"df":1,"docs":{"169":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"135":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"16":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"72":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}},"b":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"c":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}},"d":{"df":1,"docs":{"245":{"tf":1.0}}},"df":12,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":3.1622776601683795},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"66":{"tf":2.0},"68":{"tf":2.8284271247461903}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"266":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"111":{"tf":1.0},"144":{"tf":1.4142135623730951},"18":{"tf":1.0},"210":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"262":{"tf":1.0},"274":{"tf":1.0},"33":{"tf":1.0},"68":{"tf":1.0}},"f":{"df":10,"docs":{"100":{"tf":1.0},"19":{"tf":1.4142135623730951},"207":{"tf":1.0},"232":{"tf":2.6457513110645907},"233":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"35":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.4142135623730951}},"i":{"df":42,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":2.0},"107":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"22":{"tf":1.0},"239":{"tf":2.0},"240":{"tf":1.7320508075688772},"245":{"tf":1.0},"252":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"3":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":2,"docs":{"132":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"11":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}}}},"h":{"df":1,"docs":{"245":{"tf":1.0}},"i":{"df":0,"docs":{},"":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"3":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"":{"=":{"2":{"1":{"6":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"t":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"t":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"":{"=":{"2":{"3":{"2":{"df":0,"docs":{},"−":{"1":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"a":{"df":34,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":2.23606797749979},"126":{"tf":1.4142135623730951},"148":{"tf":1.0},"15":{"tf":1.4142135623730951},"169":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"259":{"tf":1.0},"267":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"42":{"tf":2.449489742783178},"44":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":2.449489742783178},"75":{"tf":1.4142135623730951},"8":{"tf":1.0},"88":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"132":{"tf":1.0},"257":{"tf":1.0}}}},"df":2,"docs":{"252":{"tf":1.4142135623730951},"259":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"111":{"tf":1.0},"19":{"tf":1.0},"258":{"tf":1.0},"35":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":21,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"129":{"tf":1.0},"2":{"tf":1.4142135623730951},"223":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":2.6457513110645907},"231":{"tf":1.7320508075688772},"245":{"tf":1.7320508075688772},"262":{"tf":1.0},"264":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"267":{"tf":2.0},"268":{"tf":1.7320508075688772},"269":{"tf":2.0},"270":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"":{"=":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"k":{"1":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"−":{"df":0,"docs":{},"i":{")":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"c":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"6":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"h":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"245":{"tf":1.0}},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"b":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"":{"+":{"b":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"d":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"c":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"7":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"":{"=":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"'":{"df":9,"docs":{"2":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"245":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"77":{"tf":1.0}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":105,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":2.0},"10":{"tf":2.23606797749979},"100":{"tf":2.8284271247461903},"101":{"tf":2.449489742783178},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"105":{"tf":2.449489742783178},"106":{"tf":4.47213595499958},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"11":{"tf":2.8284271247461903},"110":{"tf":2.8284271247461903},"111":{"tf":2.6457513110645907},"112":{"tf":1.0},"113":{"tf":2.8284271247461903},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":2.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"14":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"16":{"tf":2.23606797749979},"168":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":4.123105625617661},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":2.6457513110645907},"220":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.0},"3":{"tf":2.0},"32":{"tf":2.0},"33":{"tf":3.0},"35":{"tf":1.4142135623730951},"4":{"tf":2.23606797749979},"42":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.4142135623730951},"6":{"tf":3.0},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"8":{"tf":2.23606797749979},"87":{"tf":1.7320508075688772},"88":{"tf":2.8284271247461903},"89":{"tf":2.0},"9":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":2.0},"98":{"tf":3.7416573867739413},"99":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"c":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"7":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{"b":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"s":{"df":4,"docs":{"137":{"tf":1.0},"212":{"tf":1.0},"274":{"tf":1.0},"43":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"3":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"i":{"+":{"b":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"b":{"df":0,"docs":{},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"b":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"h":{"1":{"df":0,"docs":{},"":{"+":{"(":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"":{")":{"df":0,"docs":{},"⋅":{"c":{"df":0,"docs":{},"h":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"α":{"1":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"′":{"+":{"df":0,"docs":{},"α":{"2":{"df":0,"docs":{},"":{"df":0,"docs":{},"⋅":{"a":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"230":{"tf":1.0},"264":{"tf":1.4142135623730951}},"":{"=":{"1":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.0}},"":{"df":0,"docs":{},"⋅":{"(":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"v":{"+":{"1":{"df":0,"docs":{},"−":{"df":0,"docs":{},"δ":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":1,"docs":{"264":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{")":{"df":0,"docs":{},"⋅":{"(":{"a":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"a":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"′":{"df":0,"docs":{},"−":{"df":0,"docs":{},"v":{"df":0,"docs":{},"−":{"1":{")":{"=":{"0":{"df":2,"docs":{"211":{"tf":1.0},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"←":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"i":{"]":{"[":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"]":{"[":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"→":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"i":{"]":{"[":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"]":{"[":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":18,"docs":{"121":{"tf":1.0},"130":{"tf":1.4142135623730951},"170":{"tf":1.0},"18":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.4142135623730951},"246":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.7320508075688772},"262":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.0},"8":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}}}},"y":{"df":19,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"42":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.7320508075688772},"86":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":5,"docs":{"211":{"tf":1.0},"213":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":15,"docs":{"128":{"tf":1.0},"129":{"tf":2.449489742783178},"132":{"tf":1.0},"133":{"tf":1.0},"212":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"263":{"tf":1.0},"268":{"tf":1.7320508075688772}}}},"v":{"df":2,"docs":{"110":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"2":{"tf":1.0},"209":{"tf":1.0},"260":{"tf":1.0},"62":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"245":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"133":{"tf":1.0},"170":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"81":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"49":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"222":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"204":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"255":{"tf":1.0},"264":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"265":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":23,"docs":{"10":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"227":{"tf":1.0},"245":{"tf":2.0},"253":{"tf":1.0},"258":{"tf":2.23606797749979},"34":{"tf":2.23606797749979},"37":{"tf":1.0},"44":{"tf":2.449489742783178},"6":{"tf":1.0},"60":{"tf":2.8284271247461903},"62":{"tf":1.0},"65":{"tf":2.8284271247461903},"66":{"tf":3.4641016151377544},"68":{"tf":2.449489742783178},"70":{"tf":2.23606797749979},"75":{"tf":2.0},"85":{"tf":2.23606797749979},"87":{"tf":2.0}},"s":{".":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":18,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"116":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"241":{"tf":1.0},"255":{"tf":1.4142135623730951},"258":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"1":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"258":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"213":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"258":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"df":2,"docs":{"81":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"85":{"tf":2.8284271247461903}}}}}},"df":19,"docs":{"137":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"22":{"tf":1.0},"25":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":2.6457513110645907},"258":{"tf":3.0},"259":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":2.23606797749979}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"0":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}}}}},"x":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"1":{"df":1,"docs":{"247":{"tf":1.0}}},"2":{"df":1,"docs":{"247":{"tf":1.0}}},"3":{"df":1,"docs":{"247":{"tf":1.0}}},"=":{"1":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"138":{"tf":4.0},"209":{"tf":1.7320508075688772},"211":{"tf":2.449489742783178},"241":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"213":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"(":{"a":{",":{"b":{")":{"=":{"a":{"+":{"b":{"df":0,"docs":{},"−":{"2":{"df":0,"docs":{},"⋅":{"a":{"df":0,"docs":{},"⋅":{"b":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"180":{"tf":1.7320508075688772},"220":{"tf":1.0},"246":{"tf":2.0},"52":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"x":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"′":{"df":0,"docs":{},"−":{"(":{"df":0,"docs":{},"x":{"+":{"df":0,"docs":{},"y":{")":{"=":{"0":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"1":{"df":1,"docs":{"247":{"tf":1.0}}},"2":{"df":1,"docs":{"247":{"tf":1.0}}},"3":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"z":{"=":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{")":{"4":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"":{"+":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{")":{"2":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"":{"+":{"(":{"df":0,"docs":{},"α":{"0":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"v":{")":{"df":0,"docs":{},"⋅":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"":{"+":{"df":0,"docs":{},"f":{"0":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"219":{"tf":1.0},"246":{"tf":1.7320508075688772},"247":{"tf":2.449489742783178},"251":{"tf":1.0},"252":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":20,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"111":{"tf":1.0},"124":{"tf":1.0},"170":{"tf":1.7320508075688772},"2":{"tf":1.0},"221":{"tf":1.0},"233":{"tf":2.23606797749979},"246":{"tf":1.4142135623730951},"259":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"49":{"tf":1.0},"66":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}},"k":{"df":2,"docs":{"274":{"tf":1.0},"3":{"tf":1.0}}},"p":{"df":3,"docs":{"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"251":{"tf":1.0}}}}}},"title":{"root":{"1":{"6":{"df":1,"docs":{"213":{"tf":1.0}}},"df":1,"docs":{"237":{"tf":1.0}}},"2":{"df":2,"docs":{"237":{"tf":1.0},"77":{"tf":1.0}}},"4":{"df":1,"docs":{"77":{"tf":1.0}}},"6":{"4":{"df":2,"docs":{"75":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"211":{"tf":1.0}}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"199":{"tf":1.0},"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"156":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"197":{"tf":1.0}},"w":{"df":1,"docs":{"198":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"113":{"tf":1.0},"132":{"tf":1.0},"241":{"tf":1.0},"259":{"tf":1.0}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"214":{"tf":1.0},"258":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"52":{"tf":1.0},"57":{"tf":1.0},"82":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"25":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"151":{"tf":1.0},"51":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"211":{"tf":1.0},"213":{"tf":1.0},"81":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"246":{"tf":1.0},"58":{"tf":1.0},"84":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"3":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":17,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":7,"docs":{"116":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"252":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"270":{"tf":1.0},"273":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"169":{"tf":1.0},"170":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"245":{"tf":1.0},"265":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":18,"docs":{"116":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"12":{"tf":1.0}}},"k":{"df":1,"docs":{"154":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"36":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":4,"docs":{"120":{"tf":1.0},"242":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"219":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"53":{"tf":1.0},"59":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"115":{"tf":1.0},"235":{"tf":1.0},"268":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"47":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":36,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"257":{"tf":1.0},"41":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"256":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"14":{"tf":1.0},"148":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":3,"docs":{"205":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"192":{"tf":1.0}},"w":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":11,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"123":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"134":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"254":{"tf":1.0},"35":{"tf":1.0},"87":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"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":{"32":{"tf":1.0},"4":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"183":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"170":{"tf":1.0},"238":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}}}}},"q":{"df":1,"docs":{"164":{"tf":1.0}},"z":{"df":1,"docs":{"165":{"tf":1.0}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"112":{"tf":1.0},"18":{"tf":1.0},"235":{"tf":1.0},"247":{"tf":1.0},"45":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"101":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"c":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"2":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"54":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"155":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"125":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"148":{"tf":1.0},"46":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"a":{"d":{"d":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"76":{"tf":1.0},"77":{"tf":1.0}},"e":{"2":{"df":0,"docs":{},"f":{"4":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"15":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":9,"docs":{"104":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"244":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"26":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"271":{"tf":1.0}}}}}}}}}},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"124":{"tf":1.0},"243":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"194":{"tf":1.0},"250":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"234":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"12":{"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":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"159":{"tf":1.0}},"o":{"c":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"92":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":3,"docs":{"131":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"110":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"94":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"181":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"[":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"29":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"199":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":5,"docs":{"239":{"tf":1.0},"240":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":15,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"258":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"33":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"201":{"tf":1.0}},"w":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"221":{"tf":1.0},"225":{"tf":1.0},"38":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}}}},"v":{"d":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"203":{"tf":1.0}},"w":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"245":{"tf":1.0},"265":{"tf":1.0}}}}}}}}}},"n":{"df":1,"docs":{"238":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"157":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"243":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"65":{"tf":1.0}}}}}}}}}}}}},"df":1,"docs":{"256":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"150":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}},"df":30,"docs":{"106":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"224":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"36":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"194":{"tf":1.0},"251":{"tf":1.0},"62":{"tf":1.0},"8":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"129":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}}},"p":{"a":{"d":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"264":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":10,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"27":{"tf":1.0},"7":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":5,"docs":{"169":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"215":{"tf":1.0},"223":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"130":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"260":{"tf":1.0},"261":{"tf":1.0}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"16":{"tf":1.0},"266":{"tf":1.0}}}}},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"227":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":7,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"237":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.0},"236":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"111":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"75":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"93":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":14,"docs":{"117":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"181":{"tf":1.0},"223":{"tf":1.0},"28":{"tf":1.0},"60":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"244":{"tf":1.0}}},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"102":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"w":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":1,"docs":{"185":{"tf":1.0}},"w":{"2":{"df":1,"docs":{"187":{"tf":1.0}}},"3":{"df":1,"docs":{"188":{"tf":1.0}}},"df":1,"docs":{"186":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"149":{"tf":1.0},"86":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"105":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"135":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"34":{"tf":1.0},"70":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":1.0},"56":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":9,"docs":{"103":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"233":{"tf":1.0},"261":{"tf":1.0},"268":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"68":{"tf":1.0},"75":{"tf":1.0}}}}}},"u":{"3":{"2":{"a":{"d":{"d":{"3":{"df":1,"docs":{"174":{"tf":1.0}}},"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":3,"docs":{"142":{"tf":1.0},"168":{"tf":1.0},"55":{"tf":1.0}},"m":{"a":{"d":{"d":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"u":{"b":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"11":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}},"f":{"df":1,"docs":{"76":{"tf":1.0}},"i":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0}}}},"df":0,"docs":{}}}}},"m":{"df":10,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"6":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"255":{"tf":1.0},"7":{"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":["intro/main.html#introduction","intro/main.html#status-and-features","intro/main.html#feature-highlights","intro/main.html#planned-features","intro/main.html#structure-of-this-document","intro/main.html#license","intro/overview.html#miden-vm-overview","intro/overview.html#writing-programs","intro/overview.html#inputs-and-outputs","intro/overview.html#stack-depth-restrictions","intro/overview.html#nondeterministic-inputs","intro/usage.html#usage","intro/usage.html#cli-interface","intro/usage.html#compiling-miden-vm","intro/usage.html#controlling-parallelism","intro/usage.html#gpu-acceleration","intro/usage.html#running-miden-vm","intro/usage.html#inputs","intro/usage.html#fibonacci-example","intro/performance.html#performance","intro/performance.html#single-core-prover-performance","intro/performance.html#multi-core-prover-performance","tools/main.html#development-tools-and-resources","tools/debugger.html#miden-debugger","tools/repl.html#miden-repl","tools/repl.html#miden-assembly-instruction","tools/repl.html#help","tools/repl.html#program","tools/repl.html#stack","tools/repl.html#mem","tools/repl.html#memaddr","tools/repl.html#undo","user_docs/main.html#user-documentation","user_docs/assembly/main.html#miden-assembly","user_docs/assembly/main.html#terms-and-notations","user_docs/assembly/main.html#design-goals","user_docs/assembly/code_organization.html#code-organization","user_docs/assembly/code_organization.html#procedures","user_docs/assembly/code_organization.html#modules","user_docs/assembly/code_organization.html#constants","user_docs/assembly/code_organization.html#comments","user_docs/assembly/execution_contexts.html#execution-contexts","user_docs/assembly/execution_contexts.html#procedure-invocation-semantics","user_docs/assembly/execution_contexts.html#kernels","user_docs/assembly/execution_contexts.html#memory-layout","user_docs/assembly/execution_contexts.html#example","user_docs/assembly/flow_control.html#flow-control","user_docs/assembly/flow_control.html#conditional-execution","user_docs/assembly/flow_control.html#counter-controlled-loops","user_docs/assembly/flow_control.html#condition-controlled-loops","user_docs/assembly/field_operations.html#field-operations","user_docs/assembly/field_operations.html#assertions-and-tests","user_docs/assembly/field_operations.html#arithmetic-and-boolean-operations","user_docs/assembly/field_operations.html#comparison-operations","user_docs/assembly/field_operations.html#extension-field-operations","user_docs/assembly/u32_operations.html#u32-operations","user_docs/assembly/u32_operations.html#conversions-and-tests","user_docs/assembly/u32_operations.html#arithmetic-operations","user_docs/assembly/u32_operations.html#bitwise-operations","user_docs/assembly/u32_operations.html#comparison-operations","user_docs/assembly/stack_manipulation.html#stack-manipulation","user_docs/assembly/stack_manipulation.html#conditional-manipulation","user_docs/assembly/io_operations.html#input--output-operations","user_docs/assembly/io_operations.html#constant-inputs","user_docs/assembly/io_operations.html#environment-inputs","user_docs/assembly/io_operations.html#nondeterministic-inputs","user_docs/assembly/io_operations.html#random-access-memory","user_docs/assembly/cryptographic_operations.html#cryptographic-operations","user_docs/assembly/cryptographic_operations.html#hashing-and-merkle-trees","user_docs/stdlib/main.html#miden-standard-library","user_docs/stdlib/main.html#terms-and-notations","user_docs/stdlib/main.html#organization-and-usage","user_docs/stdlib/main.html#available-modules","user_docs/stdlib/collections.html#collections","user_docs/stdlib/collections.html#merkle-mountain-range","user_docs/stdlib/collections.html#sparse-merkle-tree-64","user_docs/stdlib/crypto/fri.html#fri-verification-procedures","user_docs/stdlib/crypto/fri.html#fri-extension-2-fold-4","user_docs/stdlib/crypto/hashes.html#cryptographic-hashes","user_docs/stdlib/crypto/hashes.html#blake3","user_docs/stdlib/crypto/hashes.html#sha256","user_docs/stdlib/math/u64.html#unsigned-64-bit-integer-operations","user_docs/stdlib/math/u64.html#arithmetic-operations","user_docs/stdlib/math/u64.html#comparison-operations","user_docs/stdlib/math/u64.html#bitwise-operations","user_docs/stdlib/mem.html#memory-procedures","user_docs/stdlib/sys.html#system-procedures","design/main.html#design","design/main.html#vm-components","design/main.html#vm-execution-trace","design/programs.html#programs-in-miden-vm","design/programs.html#code-blocks","design/programs.html#join-block","design/programs.html#split-block","design/programs.html#loop-block","design/programs.html#call-block","design/programs.html#syscall-block","design/programs.html#span-block","design/programs.html#program-example","design/programs.html#program-hash-computation","design/decoder/main.html#miden-vm-program-decoder","design/decoder/main.html#program-execution","design/decoder/main.html#decoder-structure","design/decoder/main.html#decoder-trace","design/decoder/main.html#program-block-hashing","design/decoder/main.html#control-flow-tables","design/decoder/main.html#control-flow-operation-semantics","design/decoder/main.html#program-decoding","design/decoder/main.html#join-block-decoding","design/decoder/main.html#split-block-decoding","design/decoder/main.html#loop-block-decoding","design/decoder/main.html#span-block-decoding","design/decoder/main.html#program-decoding-example","design/decoder/constraints.html#miden-vm-decoder-air-constraints","design/decoder/constraints.html#general-constraints","design/decoder/constraints.html#block-hash-computation-constraints","design/decoder/constraints.html#chiplets-bus-constraints","design/decoder/constraints.html#block-stack-table-constraints","design/decoder/constraints.html#block-hash-table-constraints","design/decoder/constraints.html#span-block","design/decoder/constraints.html#in-span-column-constraints","design/decoder/constraints.html#block-address-constraints","design/decoder/constraints.html#group-count-constraints","design/decoder/constraints.html#op-group-decoding-constraints","design/decoder/constraints.html#op-index-constraints","design/decoder/constraints.html#op-batch-flags-constraints","design/decoder/constraints.html#op-group-table-constraints","design/stack/main.html#operand-stack","design/stack/main.html#stack-representation","design/stack/main.html#overflow-table","design/stack/main.html#right-shift","design/stack/main.html#left-shift","design/stack/main.html#air-constraints","design/stack/main.html#stack-overflow-flag","design/stack/main.html#stack-depth-constraints","design/stack/main.html#overflow-table-constraints","design/stack/main.html#boundary-constraints","design/stack/op_constraints.html#stack-operation-constraints","design/stack/op_constraints.html#operation-flags","design/stack/op_constraints.html#no-stack-shift-operations","design/stack/op_constraints.html#left-stack-shift-operations","design/stack/op_constraints.html#right-stack-shift-operations","design/stack/op_constraints.html#u32-operations","design/stack/op_constraints.html#high-degree-operations","design/stack/op_constraints.html#very-high-degree-operations","design/stack/op_constraints.html#composite-flags","design/stack/op_constraints.html#shift-right-flag","design/stack/op_constraints.html#shift-left-flag","design/stack/op_constraints.html#control-flow-flag","design/stack/system_ops.html#system-operations","design/stack/system_ops.html#noop","design/stack/system_ops.html#assert","design/stack/system_ops.html#fmpadd","design/stack/system_ops.html#fmpupdate","design/stack/system_ops.html#clk","design/stack/field_ops.html#field-operations","design/stack/field_ops.html#add","design/stack/field_ops.html#neg","design/stack/field_ops.html#mul","design/stack/field_ops.html#inv","design/stack/field_ops.html#incr","design/stack/field_ops.html#not","design/stack/field_ops.html#and","design/stack/field_ops.html#or","design/stack/field_ops.html#eq","design/stack/field_ops.html#eqz","design/stack/field_ops.html#expacc","design/stack/field_ops.html#ext2mul","design/stack/u32_ops.html#u32-operations","design/stack/u32_ops.html#range-checks","design/stack/u32_ops.html#checking-element-validity","design/stack/u32_ops.html#u32split","design/stack/u32_ops.html#u32assert2","design/stack/u32_ops.html#u32add","design/stack/u32_ops.html#u32add3","design/stack/u32_ops.html#u32sub","design/stack/u32_ops.html#u32mul","design/stack/u32_ops.html#u32madd","design/stack/u32_ops.html#u32div","design/stack/u32_ops.html#u32and","design/stack/u32_ops.html#u32xor","design/stack/stack_ops.html#stack-manipulation","design/stack/stack_ops.html#pad","design/stack/stack_ops.html#drop","design/stack/stack_ops.html#dupn","design/stack/stack_ops.html#swap","design/stack/stack_ops.html#swapw","design/stack/stack_ops.html#swapw2","design/stack/stack_ops.html#swapw3","design/stack/stack_ops.html#swapdw","design/stack/stack_ops.html#movupn","design/stack/stack_ops.html#movdnn","design/stack/stack_ops.html#cswap","design/stack/stack_ops.html#cswapw","design/stack/io_ops.html#input--output-operations","design/stack/io_ops.html#push","design/stack/io_ops.html#sdepth","design/stack/io_ops.html#advpop","design/stack/io_ops.html#advpopw","design/stack/io_ops.html#memory-access-operations","design/stack/io_ops.html#mloadw","design/stack/io_ops.html#mload","design/stack/io_ops.html#mstorew","design/stack/io_ops.html#mstore","design/stack/io_ops.html#mstream","design/stack/crypto_ops.html#cryptographic-operations","design/stack/crypto_ops.html#hperm","design/stack/crypto_ops.html#mpverify","design/stack/crypto_ops.html#mrupdate","design/stack/crypto_ops.html#frie2f4","design/range.html#range-checker","design/range.html#8-bit-range-checks","design/range.html#a-better-construction","design/range.html#16-bit-range-checks","design/range.html#miden-approach","design/range.html#requirements","design/range.html#capabilities","design/range.html#execution-trace","design/range.html#execution-trace-constraints","design/range.html#communication-bus","design/chiplets/main.html#chiplets","design/chiplets/main.html#chiplets-module-trace","design/chiplets/main.html#chiplets-order","design/chiplets/main.html#additional-requirements-for-stacking-execution-traces","design/chiplets/main.html#operation-labels","design/chiplets/main.html#chiplets-module-constraints","design/chiplets/main.html#chiplet-constraints","design/chiplets/main.html#chiplet-selector-constraints","design/chiplets/main.html#chiplets-bus","design/chiplets/main.html#chiplets-bus-constraints","design/chiplets/main.html#chiplets-virtual-table","design/chiplets/main.html#chiplets-virtual-table-constraints","design/chiplets/hasher.html#hash-chiplet","design/chiplets/hasher.html#chiplet-trace","design/chiplets/hasher.html#instruction-flags","design/chiplets/hasher.html#computation-examples","design/chiplets/hasher.html#single-permutation","design/chiplets/hasher.html#simple-2-to-1-hash","design/chiplets/hasher.html#linear-hash-of-n-elements","design/chiplets/hasher.html#verify-merkle-path","design/chiplets/hasher.html#update-merkle-root","design/chiplets/hasher.html#air-constraints","design/chiplets/hasher.html#selector-columns-constraints","design/chiplets/hasher.html#node-index-constraints","design/chiplets/hasher.html#hasher-state-constraints","design/chiplets/hasher.html#multiset-check-constraints","design/chiplets/bitwise.html#bitwise-chiplet","design/chiplets/bitwise.html#example","design/chiplets/bitwise.html#constraints","design/chiplets/bitwise.html#selectors","design/chiplets/bitwise.html#input-decomposition","design/chiplets/bitwise.html#output-aggregation","design/chiplets/bitwise.html#chiplets-bus-constraints","design/chiplets/memory.html#memory-chiplet","design/chiplets/memory.html#alternative-designs","design/chiplets/memory.html#read-write-memory","design/chiplets/memory.html#non-contiguous-memory","design/chiplets/memory.html#context-separation","design/chiplets/memory.html#miden-approach","design/chiplets/memory.html#air-constraints","design/chiplets/kernel_rom.html#kernel-rom-chiplet","design/chiplets/kernel_rom.html#kernel-rom-trace","design/chiplets/kernel_rom.html#constraints","design/chiplets/kernel_rom.html#chiplets-bus-constraints","design/chiplets/kernel_rom.html#kernel-procedure-table-constraints","design/multiset.html#multiset-checks","design/multiset.html#running-product-columns","design/multiset.html#virtual-tables","design/multiset.html#computing-a-virtual-tables-trace-column","design/multiset.html#virtual-tables-in-miden-vm","design/multiset.html#communication-buses","design/multiset.html#implementation","design/multiset.html#communication-bus-constraints","design/multiset.html#communication-buses-in-miden-vm","background.html#background-material"],"index":{"documentStore":{"docInfo":{"0":{"body":34,"breadcrumbs":2,"title":1},"1":{"body":53,"breadcrumbs":3,"title":2},"10":{"body":115,"breadcrumbs":4,"title":2},"100":{"body":131,"breadcrumbs":7,"title":4},"101":{"body":209,"breadcrumbs":5,"title":2},"102":{"body":45,"breadcrumbs":5,"title":2},"103":{"body":183,"breadcrumbs":5,"title":2},"104":{"body":298,"breadcrumbs":6,"title":3},"105":{"body":516,"breadcrumbs":6,"title":3},"106":{"body":814,"breadcrumbs":7,"title":4},"107":{"body":91,"breadcrumbs":5,"title":2},"108":{"body":59,"breadcrumbs":6,"title":3},"109":{"body":54,"breadcrumbs":6,"title":3},"11":{"body":72,"breadcrumbs":3,"title":1},"110":{"body":227,"breadcrumbs":6,"title":3},"111":{"body":1070,"breadcrumbs":6,"title":3},"112":{"body":292,"breadcrumbs":6,"title":3},"113":{"body":302,"breadcrumbs":10,"title":5},"114":{"body":137,"breadcrumbs":7,"title":2},"115":{"body":144,"breadcrumbs":9,"title":4},"116":{"body":447,"breadcrumbs":8,"title":3},"117":{"body":306,"breadcrumbs":9,"title":4},"118":{"body":403,"breadcrumbs":9,"title":4},"119":{"body":26,"breadcrumbs":7,"title":2},"12":{"body":0,"breadcrumbs":4,"title":2},"120":{"body":135,"breadcrumbs":8,"title":3},"121":{"body":70,"breadcrumbs":8,"title":3},"122":{"body":184,"breadcrumbs":8,"title":3},"123":{"body":225,"breadcrumbs":9,"title":4},"124":{"body":132,"breadcrumbs":8,"title":3},"125":{"body":141,"breadcrumbs":9,"title":4},"126":{"body":349,"breadcrumbs":9,"title":4},"127":{"body":120,"breadcrumbs":5,"title":2},"128":{"body":80,"breadcrumbs":5,"title":2},"129":{"body":172,"breadcrumbs":5,"title":2},"13":{"body":62,"breadcrumbs":5,"title":3},"130":{"body":172,"breadcrumbs":5,"title":2},"131":{"body":114,"breadcrumbs":5,"title":2},"132":{"body":59,"breadcrumbs":5,"title":2},"133":{"body":58,"breadcrumbs":6,"title":3},"134":{"body":51,"breadcrumbs":6,"title":3},"135":{"body":132,"breadcrumbs":6,"title":3},"136":{"body":27,"breadcrumbs":5,"title":2},"137":{"body":181,"breadcrumbs":8,"title":3},"138":{"body":312,"breadcrumbs":7,"title":2},"139":{"body":216,"breadcrumbs":8,"title":3},"14":{"body":18,"breadcrumbs":4,"title":2},"140":{"body":129,"breadcrumbs":9,"title":4},"141":{"body":133,"breadcrumbs":9,"title":4},"142":{"body":167,"breadcrumbs":7,"title":2},"143":{"body":159,"breadcrumbs":8,"title":3},"144":{"body":113,"breadcrumbs":9,"title":4},"145":{"body":13,"breadcrumbs":7,"title":2},"146":{"body":41,"breadcrumbs":8,"title":3},"147":{"body":93,"breadcrumbs":8,"title":3},"148":{"body":37,"breadcrumbs":8,"title":3},"149":{"body":8,"breadcrumbs":7,"title":2},"15":{"body":48,"breadcrumbs":4,"title":2},"150":{"body":34,"breadcrumbs":6,"title":1},"151":{"body":33,"breadcrumbs":6,"title":1},"152":{"body":35,"breadcrumbs":6,"title":1},"153":{"body":31,"breadcrumbs":6,"title":1},"154":{"body":30,"breadcrumbs":6,"title":1},"155":{"body":14,"breadcrumbs":7,"title":2},"156":{"body":30,"breadcrumbs":6,"title":1},"157":{"body":28,"breadcrumbs":6,"title":1},"158":{"body":30,"breadcrumbs":6,"title":1},"159":{"body":34,"breadcrumbs":6,"title":1},"16":{"body":118,"breadcrumbs":5,"title":3},"160":{"body":28,"breadcrumbs":6,"title":1},"161":{"body":41,"breadcrumbs":5,"title":0},"162":{"body":46,"breadcrumbs":5,"title":0},"163":{"body":46,"breadcrumbs":5,"title":0},"164":{"body":56,"breadcrumbs":6,"title":1},"165":{"body":54,"breadcrumbs":6,"title":1},"166":{"body":85,"breadcrumbs":6,"title":1},"167":{"body":71,"breadcrumbs":6,"title":1},"168":{"body":17,"breadcrumbs":7,"title":2},"169":{"body":86,"breadcrumbs":7,"title":2},"17":{"body":151,"breadcrumbs":3,"title":1},"170":{"body":113,"breadcrumbs":8,"title":3},"171":{"body":95,"breadcrumbs":6,"title":1},"172":{"body":76,"breadcrumbs":6,"title":1},"173":{"body":83,"breadcrumbs":6,"title":1},"174":{"body":85,"breadcrumbs":6,"title":1},"175":{"body":83,"breadcrumbs":6,"title":1},"176":{"body":98,"breadcrumbs":6,"title":1},"177":{"body":114,"breadcrumbs":6,"title":1},"178":{"body":70,"breadcrumbs":6,"title":1},"179":{"body":74,"breadcrumbs":6,"title":1},"18":{"body":63,"breadcrumbs":4,"title":2},"180":{"body":77,"breadcrumbs":6,"title":1},"181":{"body":9,"breadcrumbs":7,"title":2},"182":{"body":28,"breadcrumbs":6,"title":1},"183":{"body":35,"breadcrumbs":6,"title":1},"184":{"body":62,"breadcrumbs":6,"title":1},"185":{"body":30,"breadcrumbs":6,"title":1},"186":{"body":33,"breadcrumbs":6,"title":1},"187":{"body":36,"breadcrumbs":6,"title":1},"188":{"body":36,"breadcrumbs":6,"title":1},"189":{"body":33,"breadcrumbs":6,"title":1},"19":{"body":124,"breadcrumbs":3,"title":1},"190":{"body":71,"breadcrumbs":6,"title":1},"191":{"body":70,"breadcrumbs":6,"title":1},"192":{"body":60,"breadcrumbs":6,"title":1},"193":{"body":62,"breadcrumbs":6,"title":1},"194":{"body":24,"breadcrumbs":9,"title":3},"195":{"body":34,"breadcrumbs":7,"title":1},"196":{"body":37,"breadcrumbs":7,"title":1},"197":{"body":38,"breadcrumbs":7,"title":1},"198":{"body":49,"breadcrumbs":7,"title":1},"199":{"body":73,"breadcrumbs":9,"title":3},"2":{"body":253,"breadcrumbs":3,"title":2},"20":{"body":207,"breadcrumbs":6,"title":4},"200":{"body":90,"breadcrumbs":7,"title":1},"201":{"body":95,"breadcrumbs":7,"title":1},"202":{"body":90,"breadcrumbs":7,"title":1},"203":{"body":102,"breadcrumbs":7,"title":1},"204":{"body":100,"breadcrumbs":7,"title":1},"205":{"body":54,"breadcrumbs":7,"title":2},"206":{"body":118,"breadcrumbs":6,"title":1},"207":{"body":169,"breadcrumbs":6,"title":1},"208":{"body":204,"breadcrumbs":6,"title":1},"209":{"body":281,"breadcrumbs":6,"title":1},"21":{"body":106,"breadcrumbs":6,"title":4},"210":{"body":64,"breadcrumbs":5,"title":2},"211":{"body":201,"breadcrumbs":7,"title":4},"212":{"body":183,"breadcrumbs":5,"title":2},"213":{"body":130,"breadcrumbs":7,"title":4},"214":{"body":7,"breadcrumbs":5,"title":2},"215":{"body":22,"breadcrumbs":4,"title":1},"216":{"body":31,"breadcrumbs":4,"title":1},"217":{"body":90,"breadcrumbs":5,"title":2},"218":{"body":49,"breadcrumbs":6,"title":3},"219":{"body":117,"breadcrumbs":5,"title":2},"22":{"body":59,"breadcrumbs":5,"title":3},"220":{"body":98,"breadcrumbs":3,"title":1},"221":{"body":121,"breadcrumbs":5,"title":3},"222":{"body":101,"breadcrumbs":4,"title":2},"223":{"body":137,"breadcrumbs":7,"title":5},"224":{"body":121,"breadcrumbs":4,"title":2},"225":{"body":0,"breadcrumbs":5,"title":3},"226":{"body":75,"breadcrumbs":4,"title":2},"227":{"body":116,"breadcrumbs":5,"title":3},"228":{"body":123,"breadcrumbs":4,"title":2},"229":{"body":52,"breadcrumbs":5,"title":3},"23":{"body":212,"breadcrumbs":5,"title":2},"230":{"body":65,"breadcrumbs":5,"title":3},"231":{"body":86,"breadcrumbs":6,"title":4},"232":{"body":313,"breadcrumbs":6,"title":2},"233":{"body":331,"breadcrumbs":6,"title":2},"234":{"body":266,"breadcrumbs":6,"title":2},"235":{"body":0,"breadcrumbs":6,"title":2},"236":{"body":73,"breadcrumbs":6,"title":2},"237":{"body":84,"breadcrumbs":8,"title":4},"238":{"body":143,"breadcrumbs":8,"title":4},"239":{"body":197,"breadcrumbs":7,"title":3},"24":{"body":55,"breadcrumbs":5,"title":2},"240":{"body":215,"breadcrumbs":7,"title":3},"241":{"body":30,"breadcrumbs":6,"title":2},"242":{"body":98,"breadcrumbs":7,"title":3},"243":{"body":148,"breadcrumbs":7,"title":3},"244":{"body":105,"breadcrumbs":7,"title":3},"245":{"body":559,"breadcrumbs":7,"title":3},"246":{"body":227,"breadcrumbs":6,"title":2},"247":{"body":180,"breadcrumbs":5,"title":1},"248":{"body":24,"breadcrumbs":5,"title":1},"249":{"body":24,"breadcrumbs":5,"title":1},"25":{"body":55,"breadcrumbs":6,"title":3},"250":{"body":117,"breadcrumbs":6,"title":2},"251":{"body":86,"breadcrumbs":6,"title":2},"252":{"body":114,"breadcrumbs":7,"title":3},"253":{"body":66,"breadcrumbs":6,"title":2},"254":{"body":155,"breadcrumbs":6,"title":2},"255":{"body":228,"breadcrumbs":7,"title":3},"256":{"body":147,"breadcrumbs":7,"title":3},"257":{"body":230,"breadcrumbs":6,"title":2},"258":{"body":418,"breadcrumbs":6,"title":2},"259":{"body":255,"breadcrumbs":6,"title":2},"26":{"body":8,"breadcrumbs":4,"title":1},"260":{"body":38,"breadcrumbs":8,"title":3},"261":{"body":54,"breadcrumbs":8,"title":3},"262":{"body":103,"breadcrumbs":6,"title":1},"263":{"body":85,"breadcrumbs":8,"title":3},"264":{"body":101,"breadcrumbs":9,"title":4},"265":{"body":123,"breadcrumbs":5,"title":2},"266":{"body":173,"breadcrumbs":6,"title":3},"267":{"body":105,"breadcrumbs":5,"title":2},"268":{"body":58,"breadcrumbs":8,"title":5},"269":{"body":41,"breadcrumbs":7,"title":4},"27":{"body":25,"breadcrumbs":4,"title":1},"270":{"body":81,"breadcrumbs":5,"title":2},"271":{"body":111,"breadcrumbs":4,"title":1},"272":{"body":105,"breadcrumbs":6,"title":3},"273":{"body":42,"breadcrumbs":7,"title":4},"274":{"body":117,"breadcrumbs":4,"title":2},"28":{"body":57,"breadcrumbs":4,"title":1},"29":{"body":48,"breadcrumbs":4,"title":1},"3":{"body":69,"breadcrumbs":3,"title":2},"30":{"body":24,"breadcrumbs":4,"title":1},"31":{"body":110,"breadcrumbs":4,"title":1},"32":{"body":57,"breadcrumbs":4,"title":2},"33":{"body":165,"breadcrumbs":6,"title":2},"34":{"body":79,"breadcrumbs":6,"title":2},"35":{"body":160,"breadcrumbs":6,"title":2},"36":{"body":53,"breadcrumbs":8,"title":2},"37":{"body":128,"breadcrumbs":7,"title":1},"38":{"body":225,"breadcrumbs":7,"title":1},"39":{"body":98,"breadcrumbs":7,"title":1},"4":{"body":78,"breadcrumbs":3,"title":2},"40":{"body":37,"breadcrumbs":7,"title":1},"41":{"body":96,"breadcrumbs":8,"title":2},"42":{"body":205,"breadcrumbs":9,"title":3},"43":{"body":90,"breadcrumbs":7,"title":1},"44":{"body":138,"breadcrumbs":8,"title":2},"45":{"body":274,"breadcrumbs":7,"title":1},"46":{"body":26,"breadcrumbs":8,"title":2},"47":{"body":69,"breadcrumbs":8,"title":2},"48":{"body":49,"breadcrumbs":9,"title":3},"49":{"body":93,"breadcrumbs":9,"title":3},"5":{"body":4,"breadcrumbs":2,"title":1},"50":{"body":53,"breadcrumbs":8,"title":2},"51":{"body":38,"breadcrumbs":8,"title":2},"52":{"body":118,"breadcrumbs":9,"title":3},"53":{"body":70,"breadcrumbs":8,"title":2},"54":{"body":75,"breadcrumbs":9,"title":3},"55":{"body":112,"breadcrumbs":8,"title":2},"56":{"body":50,"breadcrumbs":8,"title":2},"57":{"body":263,"breadcrumbs":8,"title":2},"58":{"body":221,"breadcrumbs":8,"title":2},"59":{"body":156,"breadcrumbs":8,"title":2},"6":{"body":148,"breadcrumbs":5,"title":3},"60":{"body":235,"breadcrumbs":8,"title":2},"61":{"body":56,"breadcrumbs":8,"title":2},"62":{"body":120,"breadcrumbs":10,"title":3},"63":{"body":68,"breadcrumbs":9,"title":2},"64":{"body":64,"breadcrumbs":9,"title":2},"65":{"body":391,"breadcrumbs":9,"title":2},"66":{"body":348,"breadcrumbs":10,"title":3},"67":{"body":13,"breadcrumbs":8,"title":2},"68":{"body":243,"breadcrumbs":9,"title":3},"69":{"body":59,"breadcrumbs":8,"title":3},"7":{"body":58,"breadcrumbs":4,"title":2},"70":{"body":79,"breadcrumbs":7,"title":2},"71":{"body":47,"breadcrumbs":7,"title":2},"72":{"body":100,"breadcrumbs":7,"title":2},"73":{"body":8,"breadcrumbs":7,"title":1},"74":{"body":148,"breadcrumbs":9,"title":3},"75":{"body":188,"breadcrumbs":10,"title":4},"76":{"body":7,"breadcrumbs":9,"title":3},"77":{"body":210,"breadcrumbs":11,"title":5},"78":{"body":9,"breadcrumbs":8,"title":2},"79":{"body":83,"breadcrumbs":7,"title":1},"8":{"body":150,"breadcrumbs":4,"title":2},"80":{"body":83,"breadcrumbs":7,"title":1},"81":{"body":125,"breadcrumbs":11,"title":5},"82":{"body":493,"breadcrumbs":8,"title":2},"83":{"body":595,"breadcrumbs":8,"title":2},"84":{"body":373,"breadcrumbs":8,"title":2},"85":{"body":124,"breadcrumbs":8,"title":2},"86":{"body":58,"breadcrumbs":8,"title":2},"87":{"body":187,"breadcrumbs":2,"title":1},"88":{"body":150,"breadcrumbs":3,"title":2},"89":{"body":103,"breadcrumbs":4,"title":3},"9":{"body":44,"breadcrumbs":5,"title":3},"90":{"body":48,"breadcrumbs":5,"title":3},"91":{"body":0,"breadcrumbs":4,"title":2},"92":{"body":27,"breadcrumbs":4,"title":2},"93":{"body":41,"breadcrumbs":4,"title":2},"94":{"body":67,"breadcrumbs":4,"title":2},"95":{"body":82,"breadcrumbs":4,"title":2},"96":{"body":85,"breadcrumbs":4,"title":2},"97":{"body":196,"breadcrumbs":4,"title":2},"98":{"body":200,"breadcrumbs":4,"title":2},"99":{"body":207,"breadcrumbs":5,"title":3}},"docs":{"0":{"body":"Miden VM is a zero-knowledge virtual machine written in Rust. For any program executed on Miden VM, a STARK-based proof of execution is automatically generated. This proof can then be used by anyone to verify that the program was executed correctly without the need for re-executing the program or even knowing the contents of the program.","breadcrumbs":"Introduction » Introduction","id":"0","title":"Introduction"},"1":{"body":"Miden VM is currently on release v0.7. In this release, most of the core features of the VM have been stabilized, and most of the STARK proof generation has been implemented. While we expect to keep making changes to the VM internals, the external interfaces should remain relatively stable, and we will do our best to minimize the amount of breaking changes going forward. At this point, Miden VM is good enough for experimentation, and even for real-world applications, but it is not yet ready for production use. The codebase has not been audited and contains known and unknown bugs and security flaws.","breadcrumbs":"Introduction » Status and features","id":"1","title":"Status and features"},"10":{"body":"The advice provider component is responsible for supplying nondeterministic inputs to the VM. These inputs only need to be known to the prover (i.e., they do not need to be shared with the verifier). The advice provider consists of three components: Advice stack which is a one-dimensional array of field elements. Being a stack, the VM can either push new elements onto the advice stack, or pop the elements from its top. Advice map which is a key-value map where keys are words and values are vectors of field elements. The VM can copy values from the advice map onto the advice stack as well as insert new values into the advice map (e.g., from a region of memory). Merkle store which contain structured data reducible to Merkle paths. Some examples of such structures are: Merkle tree, Sparse Merkle Tree, and a collection of Merkle paths. The VM can request Merkle paths from the Merkle store, as well as mutate it by updating or merging nodes contained in the store. The prover initializes the advice provider prior to executing a program, and from that point on the advice provider is manipulated solely by executing operations on the VM.","breadcrumbs":"Introduction » Overview » Nondeterministic inputs","id":"10","title":"Nondeterministic inputs"},"100":{"body":"Miden VM program decoder is responsible for ensuring that a program with a given MAST root is executed by the VM. As the VM executes a program, the decoder does the following: Decodes a sequence of field elements supplied by the prover into individual operation codes (or opcodes for short). Organizes the sequence of field elements into code blocks, and computes the hash of the program according to the methodology described here . At the end of program execution, the decoder outputs the computed program hash. This hash binds the sequence of opcodes executed by the VM to a program the prover claims to have executed. The verifier uses this hash during the STARK proof verification process to verify that the proof attests to a correct execution of a specific program (i.e., the prover didn't claim to execute program A while in fact executing a different program B). The sections below describe how Miden VM decoder works. Throughout these sections we make the following assumptions: An opcode requires 7 bits to represent. An immediate value requires one full field element to represent. A NOOP operation has a numeric value of 0, and thus, can be encoded as seven zeros. Executing a NOOP operation does not change the state of the VM, but it does advance operation counter, and may affect program hash.","breadcrumbs":"Design » Program decoder » Miden VM Program decoder","id":"100","title":"Miden VM Program decoder"},"101":{"body":"Miden VM programs consist of a set of code blocks organized into a binary tree. The leaves of the tree contain linear sequences of instructions, and control flow is defined by the internal nodes of the tree. Managing control flow in the VM is accomplished by executing control flow operations listed in the table below. Each of these operations require exactly one VM cycle to execute. Operation Description JOIN Initiates processing of a new Join block . SPLIT Initiates processing of a new Split block . LOOP Initiates processing of a new Loop block . REPEAT Initiates a new iteration of an executing loop. SPAN Initiates processing of a new Span block . RESPAN Initiates processing of a new operation batch within a span block. CALL Initiates processing of a new Call block . SYSCALL Initiates processing ofa new Syscall block . END Marks the end of a program block. HALT Marks the end of the entire program. Let's consider a simple program below: begin if.true else end\nend Block structure of this program is shown below. JOIN SPAN END SPLIT SPAN END SPAN END END\nEND Executing this program on the VM can result in one of two possible instruction sequences. First, if after operations in are executed the top of the stack is 1, the VM will execute the following: JOIN\nSPAN\n\nEND\nSPLIT\nSPAN\n\nEND\nEND\nEND\nHALT However, if after are executed, the top of the stack is 0, the VM will execute the following: JOIN\nSPAN\n\nEND\nSPLIT\nSPAN\n\nEND\nEND\nEND\nHALT The main task of the decoder is to output exactly the same program hash, regardless of which one of the two possible execution paths was taken. However, before we can describe how this is achieved, we need to give an overview of the overall decoder structure.","breadcrumbs":"Design » Program decoder » Program execution","id":"101","title":"Program execution"},"102":{"body":"The decoder is one of the more complex parts of the VM. It consists of the following components: Main execution trace consisting of 24 trace columns which contain the state of the decoder at a given cycle of a computation. Connection to the hash chiplet, which is used to offload hash computations from the decoder. 3 virtual tables (implemented via multi-set checks), which keep track of code blocks and operations executing on the VM.","breadcrumbs":"Design » Program decoder » Decoder structure","id":"102","title":"Decoder structure"},"103":{"body":"Decoder trace columns can be grouped into several logical sets of registers as illustrated below. decoder_trace.png These registers have the following meanings: Block address register a. This register contains address of the hasher for the current block (row index from the auxiliary hashing table). It also serves the role of unique block identifiers. This is convenient, because hasher addresses are guaranteed to be unique. Registers b0,...,b6, which encode opcodes for operation to be executed by the VM. Each of these registers can contain a single binary value (either 1 or 0). And together these values describe a single opcode. Hasher registers h0,...,h7. When control flow operations are executed, these registers are used to provide inputs for the current block's hash computation (e.g., for JOIN, SPLIT, LOOP, SPAN, CALL, SYSCALL operations) or to record the result of the hash computation (i.e., for END operation). However, when regular operations are executed, 2 of these registers are used to help with op group decoding, and the remaining 6 can be used to hold operation-specific helper variables. Register sp which contains a binary flag indicating whether the VM is currently executing instructions inside a span block. The flag is set to 1 when the VM executes non-control flow instructions, and is set to 0 otherwise. Register gc which keep track of the number of unprocessed operation groups in a given span block. Register ox which keeps track of a currently executing operation's index within its operation group. Operation batch flags c0,c1,c2 which indicate how many operation groups a given operation batch contains. These flags are set only for SPAN and RESPAN operations, and are set to 0's otherwise. Two additional registers (not shown) used primarily for constraint degree reduction.","breadcrumbs":"Design » Program decoder » Decoder trace","id":"103","title":"Decoder trace"},"104":{"body":"To compute hashes of program blocks, the decoder relies on the hash chiplet . Specifically, the decoder needs to perform two types of hashing operations: A simple 2-to-1 hash, where we provide a sequence of 8 field elements, and get back 4 field elements representing the result. Computing such a hash requires 8 rows in the hash chiplet. A sequential hash of n elements. Computing such a hash requires multiple absorption steps, and at each step 8 field elements are absorbed into the hasher. Thus, computing a sequential hash of n elements requires ⌈n/8⌉ rows in the hash chiplet. At the end, we also get 4 field elements representing the result. To make hashing requests to the hash chiplet and to read the results from it, we will need to divide out relevant values from the chiplets bus column bchip as described below. Simple 2-to-1 hash To initiate a 2-to-1 hash of 8 elements (v0,...,v7) we need to divide bchip by the following value: α0+α1⋅mbp+α2⋅r+i=0∑7(αi+8⋅vi) where: mbp is a label indicating beginning of a new permutation. Value of this label is computed based on hash chiplet selector flags according to the methodology described here . r is the address of the row at which the hashing begins. Some α values are skipped in the above (e.g., α3) because of the specifics of how auxiliary hasher table rows are reduced to field elements (described here ). For example, α3 is used as a coefficient for node index values during Merkle path computations in the hasher, and thus, is not relevant in this case. The α4 term is omitted when the number of items being hashed is a multiple of the rate width (8) because it is multiplied by 0 - the value of the first capacity register as determined by the hasher chiplet logic . To read the 4-element result (u0,...,u3), we need to divide bchip by the following value: α0+α1⋅mhout+α2⋅(r+7)+i=0∑3(αi+8⋅ui) where: mhout is a label indicating return of the hash value. Value of this label is computed based on hash chiplet selector flags according to the methodology described here . r is the address of the row at which the hashing began. Sequential hash To initiate a sequential hash of n elements (v0,...,vn−1), we need to divide bchip by the following value: α0+α1⋅mbp+α2⋅r+α4⋅n+i=0∑7(αi+8⋅vi) This also absorbs the first 8 elements of the sequence into the hasher state. Then, to absorb the next sequence of 8 elements (e.g., v8,...,v15), we need to divide bchip by the following value: α0+α1⋅mabp+α2⋅(r+7)+i=0∑7(αi+8⋅vi+8) Where mabp is a label indicating absorption of more elements into the hasher state. Value of this label is computed based on hash chiplet selector flags according to the methodology described here . We can keep absorbing elements into the hasher in the similar manner until all elements have been absorbed. Then, to read the result (e.g., u0,...,u3), we need to divide bchip by the following value: α0+α1⋅mhout+α2⋅(r+⌈n/8⌉⋅8−1)+i=0∑3(αi+8⋅ui) Thus, for example, if n=14, the result will of the hash will be available at hasher row r+15.","breadcrumbs":"Design » Program decoder » Program block hashing","id":"104","title":"Program block hashing"},"105":{"body":"In addition to the hash chiplet, control flow operations rely on 3 virtual tables: block stack table, block hash table, and op group table. These tables are virtual in that they don't require separate trace columns. Their state is described solely by running product columns: p1, p2, and p3. The tables are described in the following sections. Block stack table When the VM starts executing a new program block, it adds its block ID together with the ID of its parent block (and some additional info) to the block stack table. When a program block is fully executed, it is removed from the table. In this way, the table represents a stack of blocks which are currently executing on the VM. By the time program execution completes, block stack table must be empty. The table can be thought of as consisting of 3 columns as shown below: decoder_block_stack_table where: The first column (t0) contains the ID of the block. The second column (t1) contains the ID of the parent block. If the block has no parent (i.e., it is a root block of the program), parent ID is 0. The third column (t2) contains a binary value which is set to 1 is the block is a loop block, and to 0 otherwise. Running product column p1 is used to keep track of the state of the table. At any step of the computation, the current value of p1 defines which rows are present in the table. To reduce a row in the block stack table to a single value, we compute the following. row=α0+i=0∑3(αi+1⋅ti) Where α0,...,α3 are the random values provided by the verifier. Block hash table When the VM starts executing a new program block, it adds hashes of the block's children to the block hash table. And when the VM finishes executing a block, it removes its hash from the block hash table. Thus, by the time program execution completes, block hash table must be empty. The table can be thought of as consisting of 7 columns as shown below: block_hash_table where: The first column (t0) contains the ID of the block's parent. For program root, parent ID is 0. The next 4 columns (t1,...,t4) contain the hash of the block. The next column (t5) contains a binary value which is set to 1 if the block is the first child of a join block, and to 0 otherwise. The last column (t6) contains a binary value which is set to 1 if the block is a body of a loop, and to 0 otherwise. Running product column p2 is used to keep track of the state of the table. At any step of the computation, the current value of p2 defines which rows are present in the table. To reduce a row in the block hash table to a single value, we compute the following. row=α0+i=0∑6(αi+1⋅ti) Where α0,...,α7 are the random values provided by the verifier. Unlike other virtual tables, block hash table does not start out in an empty state. Specifically, it is initialized with a single row containing the hash of the program's root block. This needs to be done because the root block does not have a parent and, thus, otherwise it would never be added to the block hash table. Initialization of the block hash table is done by setting the initial value of p2 to the value of the row containing the hash of a program's root block. Op group table Op group table is used in decoding of span blocks, which are leaves in a program's MAST. As described here , a span block can contain one or more operation batches, each batch containing up to 8 operation groups. When the VM starts executing a new batch of operations, it adds all operation groups within a batch, except for the first one, to the op group table. Then, as the VM starts executing an operation group, it removes the group from the table. Thus, by the time all operation groups in a batch have been executed, the op group table must be empty. The table can be thought of as consisting of 3 columns as shown below: decoder_op_group_table The meaning of the columns is as follows: The first column (t0) contains operation batch ID. During the execution of the program, each operation batch is assigned a unique ID. The second column (t1) contains the position of the group in the span block (not just in the current batch). The position is 1-based and is counted from the end. Thus, for example, if a span block consists of a single batch with 4 groups, the position of the first group would be 4, the position of the second group would be 3 etc. (the reason for this is explained in this section). Note that the group with position 4 is not added to the table, because it is the first group in the batch, so the first row of the table will be for the group with position 3. The third column (t2) contains the actual values of operation groups (this could include up to 9 opcodes or a single immediate value). Permutation column p3 is used to keep track of the state of the table. At any step of the computation, the current value of p3 defines which rows are present in the table. To reduce a row in the op group table to a single value, we compute the following. row=α0+i=0∑2(αi+1⋅ti) Where α0,...,α3 are the random values provided by the verifier.","breadcrumbs":"Design » Program decoder » Control flow tables","id":"105","title":"Control flow tables"},"106":{"body":"In this section we describe high-level semantics of executing all control flow operations. The descriptions are not meant to be complete and omit some low-level details. However, they provide good intuition on how these operations work. JOIN operation Before a JOIN operation is executed by the VM, the prover populates h0,...,h7 registers with hashes of left and right children of the join program block as shown in the diagram below. decoder_join_operation In the above diagram, blk is the ID of the join block which is about to be executed. blk is also the address of the hasher row in the auxiliary hasher table. prnt is the ID of the block's parent. When the VM executes a JOIN operation, it does the following: Adds a tuple (blk, prnt, 0) to the block stack table. Adds tuples (blk, left_child_hash, 1, 0) and (blk, right_child_hash, 0, 0) to the block hash table. Initiates a 2-to-1 hash computation in the hash chiplet (as described here ) using blk as row address in the auxiliary hashing table and h0,...,h7 as input values. SPLIT operation Before a SPLIT operation is executed by the VM, the prover populates h0,...,h7 registers with hashes of true and false branches of the split program block as shown in the diagram below. decoder_split_operation In the above diagram, blk is the ID of the split block which is about to be executed. blk is also the address of the hasher row in the auxiliary hasher table. prnt is the ID of the block's parent. When the VM executes a SPLIT operation, it does the following: Adds a tuple (blk, prnt, 0) to the block stack table. Pops the stack and: a. If the popped value is 1, adds a tuple (blk, true_branch_hash, 0, 0) to the block hash table. b. If the popped value is 0, adds a tuple (blk, false_branch_hash, 0, 0) to the block hash table. c. If the popped value is neither 1 nor 0, the execution fails. Initiates a 2-to-1 hash computation in the hash chiplet (as described here ) using blk as row address in the auxiliary hashing table and h0,...,h7 as input values. LOOP operation Before a LOOP operation is executed by the VM, the prover populates h0,...,h3 registers with hash of the loop's body as shown in the diagram below. decoder_loop_operation In the above diagram, blk is the ID of the loop block which is about to be executed. blk is also the address of the hasher row in the auxiliary hasher table. prnt is the ID of the block's parent. When the VM executes a LOOP operation, it does the following: Pops the stack and: a. If the popped value is 1 adds a tuple (blk, prnt, 1) to the block stack table (the 1 indicates that the loop's body is expected to be executed). Then, adds a tuple (blk, loop_body_hash, 0, 1) to the block hash table. b. If the popped value is 0, adds (blk, prnt, 0) to the block stack table. In this case, nothing is added to the block hash table. c. If the popped value is neither 1 nor 0, the execution fails. Initiates a 2-to-1 hash computation in the hash chiplet (as described here ) using blk as row address in the auxiliary hashing table and h0,...,h3 as input values. SPAN operation Before a SPAN operation is executed by the VM, the prover populates h0,...,h7 registers with contents of the first operation batch of the span block as shown in the diagram below. The prover also sets the group count register gc to the total number of operation groups in the span block. decoder_span_block In the above diagram, blk is the ID of the span block which is about to be executed. blk is also the address of the hasher row in the auxiliary hasher table. prnt is the ID of the block's parent. g0_op0 is the first operation of the batch, and g_0' is the first operation group of the batch with the first operation removed. When the VM executes a SPAN operation, it does the following: Adds a tuple (blk, prnt, 0) to the block stack table. Adds groups of the operation batch, as specified by op batch flags (see here ) to the op group table. Initiates a sequential hash computation in the hash chiplet (as described here ) using blk as row address in the auxiliary hashing table and h0,...,h7 as input values. Sets the in_span register to 1. Decrements group_count register by 1. Sets the op_index register to 0. END operation Before an END operation is executed by the VM, the prover populates h0,...,h3 registers with the hash of the block which is about to end. The prover also sets values in h4 and h5 registers as follows: h4 is set to 1 if the block is a body of a loop block. We denote this value as f0. h5 is set to 1 if the block is a loop block. We denote this value as f1. decoder_end_operation In the above diagram, blk is the ID of the block which is about to finish executing. prnt is the ID of the block's parent. When the VM executes an END operation, it does the following: Removes a tuple (blk, prnt, f1) from the block stack table. Removes a tuple (prnt, current_block_hash, nxt, f0) from the block hash table, where nxt=0 if the next operation is either END or REPEAT, and 1 otherwise. Reads the hash result from the hash chiplet (as described here ) using blk + 7 as row address in the auxiliary hashing table. If h5=1 (i.e., we are exiting a loop block), pops the value off the top of the stack and verifies that the value is 0. Verifies that group_count register is set to 0. HALT operation Before a HALT operation is executed by the VM, the VM copies values in h0,...,h3 registers to the next row as illustrated in the diagram below: decoder_halt_operation In the above diagram, blk is the ID of the block which is about to finish executing. When the VM executes a HALT operation, it does the following: Verifies that block address register is set to 0. If we are not at the last row of the trace, verifies that the next operation is HALT. Copies values of h0,...,h3 registers to the next row. Populates all other decoder registers with 0's in the next row. REPEAT operation Before a REPEAT operation is executed by the VM, the VM copies values in registers h0,...,h4 to the next row as shown in the diagram below. decoder_repeat_operation In the above diagram, blk is the ID of the loop's body and prnt is the ID of the loop. When the VM executes a REPEAT operation, it does the following: Checks whether register h4 is set to 1. If it isn't (i.e., we are not in a loop), the execution fails. Pops the stack and if the popped value is 1, adds a tuple (prnt, loop_body_loop 0, 1) to the block hash table. If the popped value is not 1, the execution fails. The effect of the above is that the VM needs to execute the loop's body again to clear the block hash table. RESPAN operation Before a RESPAN operation is executed by the VM, the VM copies the ID of the current block blk and the number of remaining operation groups in the span to the next row, and sets the value of in_span column to 0. The prover also sets the value of h1 register for the next row to the ID of the current block's parent prnt as shown in the diagram below: decoder_respan_operation In the above diagram, g0_op0 is the first operation of the new operation batch, and g0' is the first operation group of the batch with g0_op0 operation removed. When the VM executes a RESPAN operation, it does the following: Increments block address by 8. Removes the tuple (blk, prnt, 0) from the block stack table. Adds the tuple (blk+8, prnt, 0) to the block stack table. Absorbs values in registers h0,...,h7 into the hasher state of the hash chiplet (as described here ). Sets the in_span register to 1. Adds groups of the operation batch, as specified by op batch flags (see here ) to the op group table using blk+8 as batch ID. The net result of the above is that we incremented the ID of the current block by 8 and added the next set of operation groups to the op group table.","breadcrumbs":"Design » Program decoder » Control flow operation semantics","id":"106","title":"Control flow operation semantics"},"107":{"body":"When decoding a program, we start at the root block of the program. We can compute the hash of the root block directly from hashes of its children. The prover provides hashes of the child blocks non-deterministically, and we use them to compute the program's hash (here we rely on the hash chiplet). We then verify the program hash via boundary constraints. Thus, if the prover provided valid hashes for the child blocks, we will get the expected program hash. Now, we need to verify that the VM executed the child blocks correctly. We do this recursively similar to what is described above: for each of the blocks, the prover provides hashes of its children non-deterministically and we verify that the hash has been computed correctly. We do this until we get to the leaf nodes (i.e., span blocks). Hashes of span blocks are computed sequentially from the instructions executed by the VM. The sections below illustrate how different types of code blocks are decoded by the VM.","breadcrumbs":"Design » Program decoder » Program decoding","id":"107","title":"Program decoding"},"108":{"body":"When decoding a join bock, the VM first executes a JOIN operation, then executes the first child block, followed by the second child block. Once the children of the join block are executed, the VM executes an END operation. This is illustrated in the diagram below. decoder_join_block_decoding As described previously, when the VM executes a JOIN operation, hashes of both children are added to the block hash table. These hashes are removed only when the END operations for the child blocks are executed. Thus, until both child blocks are executed, the block hash table is not cleared.","breadcrumbs":"Design » Program decoder » JOIN block decoding","id":"108","title":"JOIN block decoding"},"109":{"body":"When decoding a split block, the decoder pops an element off the top of the stack, and if the popped element is 1, executes the block corresponding to the true branch. If the popped element is 0, the decoder executes the block corresponding to the false branch. This is illustrated on the diagram below. decoder_split_block_decoding As described previously, when the VM executes a SPLIT operation, only the hash of the branch to be executed is added to the block hash table. Thus, until the child block corresponding to the required branch is executed, the block hash table is not cleared.","breadcrumbs":"Design » Program decoder » SPLIT block decoding","id":"109","title":"SPLIT block decoding"},"11":{"body":"Before you can use Miden VM, you'll need to make sure you have Rust installed . Miden VM v0.7 requires Rust version 1.67 or later. Miden VM consists of several crates, each of which exposes a small set of functionality. The most notable of these crates are: miden-processor , which can be used to execute Miden VM programs. miden-prover , which can be used to execute Miden VM programs and generate proofs of their execution. miden-verifier , which can be used to verify proofs of program execution generated by Miden VM prover. The above functionality is also exposed via the single miden-vm crate, which also provides a CLI interface for interacting with Miden VM.","breadcrumbs":"Introduction » Usage » Usage","id":"11","title":"Usage"},"110":{"body":"When decoding a loop bock, we need to consider two possible scenarios: When the top of the stack is 1, we need to enter the loop and execute loop body at least once. When the top of the stack is, 0 we need to skip the loop. In both cases, we need to pop an element off the top of the stack. Executing the loop If the top of the stack is 1, the VM executes a LOOP operation. This removes the top element from the stack and adds the hash of the loop's body to the block hash table. It also adds a row to the block stack table setting the is_loop value to 1. To clear the block hash table, the VM needs to execute the loop body (executing the END operation for the loop body block will remove the corresponding row from the block hash table). After loop body is executed, if the top of the stack is 1, the VM executes a REPEAT operation (executing REPEAT operation when the top of the stack is 0 will result in an error). This operation again adds the hash of the loop's body to the block hash table. Thus, the VM needs to execute the loop body again to clear the block hash table. This process is illustrated on the diagram below. decoder_loop_execution The above steps are repeated until the top of the stack becomes 0, at which point the VM executes the END operation. Since in the beginning we set is_loop column in the block stack table to 1, h6 column will be set to 1 when the END operation is executed. Thus, executing the END operation will also remove the top value from the stack. If the removed value is not 0, the operation will fail. Thus, the VM can exit the loop block only when the top of the stack is 0. Skipping the loop If the top of the stack is 0, the VM still executes the LOOP operation. But unlike in the case when we need to enter the loop, the VM sets is_loop flag to 0 in the block stack table, and does not add any rows to the block hash table. The last point means that the only possible operation to be executed after the LOOP operation is the END operation. This is illustrated in the diagram below. decoder_loop_skipping Moreover, since we've set the is_loop flag to 0, executing the END operation does not remove any items from the stack.","breadcrumbs":"Design » Program decoder » LOOP block decoding","id":"110","title":"LOOP block decoding"},"111":{"body":"As described here , a span block can contain one or more operation batches, each batch containing up to 8 operation groups. At the high level, decoding of a span block is done as follows: At the beginning of the block, we make a request to the hash chiplet which initiates the hasher, absorbs the first operation batch (8 field elements) into the hasher, and returns the row address of the hasher, which we use as the unique ID for the span block (see here ). We then add groups of the operation batch, as specified by op batch flags (but always skipping the first one) to the op group table. We then remove operation groups from the op group table in the FIFO order one by one, and decode them in the manner similar to the one described here . Once all operation groups in a batch have been decoded, we absorb the next batch into the hasher and repeat the process described above. Once all batches have been decoded, we return the hash of the span block from the hasher. Overall, three control flow operations are used when decoding a span block: SPAN operation is used to initialize a hasher and absorbs the first operation batch into it. RESPAN operation is used to absorb any additional batches in the span block. END operation is used to end the decoding of a span block and retrieve its hash from the hash chiplet. Operation group decoding As described here , an operation group is a sequence of operations which can be encoded into a single field element. For a field element of 64 bits, we can fit up to 9 operations into a group. We do this by concatenating binary representations of opcodes together with the first operation located in the least significant position. We can read opcodes from the group by simply subtracting them from the op group value and then dividing the result by 27. Once the value of the op group reaches 0, we know that all opcodes have been read. Graphically, this can be illustrated like so: decoder_operation_group_decoding Notice that despite their appearance, op bits is actually 7 separate registers, while op group is just a single register. We also need to make sure that at most 9 operations are executed as a part of a single group. For this purpose we use the op_index column. Values in this column start out at 0 for each operation group, and are incremented by 1 for each executed operation. To make sure that at most 9 operations can be executed in a group, the value of the op_index column is not allowed to exceed 8. Operation batch flags Operation batch flags are used to specify how many operation groups comprise in a given operation batch. For most batches, the number of groups will be equal to 8. However, for the last batch in a block (or for the first batch, if the block consists of only a single batch), the number of groups may be less than 8. Since processing of new batches starts only on SPAN and RESPAN operations, only for these operations the flags can be set to non-zero values. To simplify the constraint system, number of groups in a batch can be only one of the following values: 1, 2, 4, and 8. If number of groups in a batch does not match one of these values, the batch is simply padded with NOOP's (one NOOP per added group). Consider the diagram below. decoder_OPERATION_batch_flags In the above, the batch contains 3 operation groups. To bring the count up to 4, we consider the 4-th group (i.e., 0) to be a part of the batch. Since a numeric value for NOOP operation is 0, op group value of 0 can be interpreted as a single NOOP. Operation batch flags (denoted as c0,c1,c2), encode the number of groups and define how many groups are added to the op group table as follows: (1, 0, 0) - 8 groups. Groups in h1,...h7 are added to the op group table. (0, 1, 0) - 4 groups. Groups in h1,...h3 are added to the op group table (0, 0, 1) - 2 groups. Groups in h1 is added to the op group table. (0, 1, 1) - 1 group. Nothing is added to the op group table (0, 0, 0) - not a SPAN or RESPAN operation. Single-batch span The simplest example of a span block is a block with a single batch. This batch may contain up to 8 operation groups (e.g., g0,...,g7). Decoding of such a block is illustrated in the diagram below. decoder_single_batch_span Before the VM starts processing this span block, the prover populates registers h0,...,h7 with operation groups g0,...,g7. The prover also puts the total number of groups into the group count register gc. In this case, the total number of groups is 8. When the VM executes a SPAN operation, it does the following: Initiates hashing of elements g0,...,g7 using hash chiplet. The hasher address is used as the block ID blk, and it is inserted into addr register in the next row. Adds a tuple (blk, prnt, 0) to the block stack table. Sets the is_span register to 1 in the next row. Sets the op_index register to 0 in the next row. Decrements group_count register by 1. Sets op bits registers at the next step to the first operation of g0, and also copies g0 with the first operation removed (denoted as g0′) to the next row. Adds groups g1,...,g7 to the op group table. Thus, after the SPAN operation is executed, op group table looks as shown below. decoder_op_group_table_after_span_op Then, with every step the next operation is removed from g0, and by step 9, value of g0 is 0. Once this happens, the VM does the following: Decrements group_count register by 1. Sets op bits registers at the next step to the first operation of g1. Sets hasher register h0 to the value of g1 with the first operation removed (denoted as g1′). Removes row (blk, 7, g1) from the op group table. This row can be obtained by taking values from registers: addr, group_count, and h0′+i=0∑6(2i⋅bi′) for i∈[0,7), where h0′ and bi′ refer to values in the next row for the first hasher column and op_bits columns respectively. Note that we rely on the group_count column to construct the row to be removed from the op group table. Since group count is decremented from the total number of groups to 0, to remove groups from the op group table in correct order, we need to assign group position to groups in the op group table in the reverse order. For example, the first group to be removed should have position 7, the second group to be removed should have position 6 etc. Decoding of g1 is performed in the same manner as decoding of g0: with every subsequent step the next operation is removed from g1 until its value reaches 0, at which point, decoding of group g2 begins. The above steps are executed until value of group_count reaches 0. Once group_count reaches 0 and the last operation group g7 is executed, the VM executed the END operation. Semantics of the END operation are described here . Notice that by the time we get to the END operation, all rows are removed from the op group table. Multi-batch span A span block may contain an unlimited number of operation batches. As mentioned previously, to absorb a new batch into the hasher, the VM executes a RESPAN operation. The diagram below illustrates decoding of a span block consisting of two operation batches. decoder_multi_batch_span Decoding of such a block will look very similar to decoding of the single-span block described previously, but there also will be some differences. First, after the SPAN operation is executed, the op group table will look as follows: decoder_op_group_table_multi_span Notice that while the same groups (g1,...,g7) are added to the table, their positions now reflect the total number of groups in the span block. Second, executing a RESPAN operation increments hasher address by 8. This is done because absorbing additional 8 elements into the hasher state requires 8 more rows in the auxiliary hasher table. Incrementing value of addr register actually changes the ID of the span block (though, for a span block, it may be more appropriate to view values in this column as IDs of individual operation batches). This means that we also need to update the block stack table. Specifically, we need to remove row (blk, prnt, 0) from it, and replace it with row (blk + 8, prnt, 0). To perform this operation, the prover sets the value of h1 in the next row to prnt. Executing a RESPAN operation also adds groups g9,g10,g11 to the op group table, which now would look as follows: decoder_op_group_table_post_respan Then, the execution of the second batch proceeds in the manner similar to the first batch: we remove operations from the current op group, execute them, and when the value of the op group reaches 0, we start executing the next group in the batch. Thus, by the time we get to the END operation, the op group table should be empty. When executing the END operation, the hash of the span block will be read from hasher row at address addr + 7, which, in our example, will be equal to blk + 15. Handling immediate values Miden VM operations can carry immediate values. Currently, the only such operation is a PUSH operation. Since immediate values can be thought of as constants embedded into program code, we need to make sure that changing immediate values affects program hash. To achieve this, we treat immediate values in a manner similar to how we treat operation groups. Specifically, when computing hash of a span block, immediate values are absorbed into the hasher state in the same way as operation groups are. As mentioned previously, an immediate value is represented by a single field element, and thus, an immediate value takes place of a single operation group. The diagram below illustrates decoding of a span block with 9 operations one of which is a PUSH operation. decoder_decoding_span_block_with_push In the above, when the SPAN operation is executed, immediate value imm0 will be added to the op group table, which will look as follows: decoder_imm_vale_op_group_table Then, when the PUSH operation is executed, the VM will do the following: Decrement group_count by 1. Remove a row from the op group table equal to (addr, group_count, s0'), where s0′ is the value of the top of the stack at the next row (i.e., it is the value that is pushed onto the stack). Thus, after the PUSH operation is executed, the op group table is cleared, and group count decreases to 0 (which means that there are no more op groups to execute). Decoding of the rest of the op group proceeds as described in the previous sections.","breadcrumbs":"Design » Program decoder » SPAN block decoding","id":"111","title":"SPAN block decoding"},"112":{"body":"Let's run through an example of decoding a simple program shown previously: begin if.true else end\nend Translating this into code blocks with IDs assigned, we get the following: b0: JOIN b1: SPAN b1: END b2: SPLIT b3: SPAN b3: END b4: SPAN b4: END b2: END\nb0: END The root of the program is a join block b0. This block contains two children: a span bock b1 and a split block b2. In turn, the split block b2 contains two children: a span block b3 and a span block b4. When this program is executed on the VM, the following happens: Before the program starts executing, block hash table is initialized with a single row containing the hash of b0. Then, JOIN operation for b0 is executed. It adds hashes of b1 and b2 to the block hash table. It also adds an entry for b0 to the block stack table. States of both tables after this step are illustrated below. Then, span b1 is executed and a sequential hash of its operations is computed. Also, when SPAN operation for b1 is executed, an entry for b1 is added to the block stack table. At the end of b1 (when END is executed), entries for b1 are removed from both the block hash and block stack tables. Then, SPLIT operation for b2 is executed. It adds an entry for b2 to the block stack table. Also, depending on whether the top of the stack is 1 or 0, either hash of b3 or hash of b4 is added to the block hash table. Let's say the top of the stack is 1. Then, at this point, the block hash and block stack tables will look like in the second picture below. Then, span b3 is executed and a sequential hash of its instructions is computed. Also, when SPAN operation for b3 is executed, an entry for b3 is added to the block stack table. At the end of b3 (when END is executed), entries for b3 are removed from both the block hash and block stack tables. Then, END operation for b2 is executed. It removes the hash of b2 from the block hash table, and also removes the entry for b2 from the block stack table. The third picture below illustrates the states of block stack and block hash tables after this step. Then, END for b0 is executed, which removes entries for b0 from the block stack and block hash tables. At this point both tables are empty. Finally, a sequence of HALT operations is executed until the length of the trace reaches a power of two. States of block hash and block stack tables after step 2: decoder_state_block_hash_2 States of block hash and block stack tables after step 4: decoder_state_block_hash_4 States of block hash and block stack tables after step 6: decoder_state_block_hash_6","breadcrumbs":"Design » Program decoder » Program decoding example","id":"112","title":"Program decoding example"},"113":{"body":"In this section we describe AIR constraint for Miden VM program decoder. These constraints enforce that the execution trace generated by the prover when executing a particular program complies with the rules described in the previous section . To refer to decoder execution trace columns, we use the names shown on the diagram below (these are the same names as in the previous section). Additionally, we denote the register containing the value at the top of the stack as s0. air_decoder_columns We assume that the VM exposes a flag per operation which is set to 1 when the operation is executed, and to 0 otherwise. The notation for such flags is fopname. For example, when the VM executes a PUSH operation, flag fpush=1. All flags are mutually exclusive - i.e., when one flag is set to 1 all other flags are set to 0. The flags are computed based on values in op_bits columns. AIR constraints for the decoder involve operations listed in the table below. For each operation we also provide the degree of the corresponding flag and the effect that the operation has on the operand stack (however, in this section we do not cover the constraints needed to enforce the correct transition of the operand stack). Operation Flag Degree Effect on stack JOIN fjoin 5 Stack remains unchanged. SPLIT fsplit 5 Top stack element is dropped. LOOP floop 5 Top stack element is dropped. REPEAT frepeat 4 Top stack element is dropped. SPAN fspan 5 Stack remains unchanged. RESPAN frespan 4 Stack remains unchanged. CALL fcall 4 Top stack element is dropped. SYSCALL fsyscall 4 Top stack element is dropped. END fend 4 When exiting a loop block, top stack element is dropped; otherwise, the stack remains unchanged. HALT fhalt 4 Stack remains unchanged. PUSH fpush 4 An immediate value is pushed onto the stack. We also use the control flow flag fctrl exposed by the VM, which is set when any one of the above control flow operations is being executed. It has degree 3. As described previously , the general idea of the decoder is that the prove provides the program to the VM by populating some of cells in the trace non-deterministically. Values in these are then used to update virtual tables (represented via multiset checks) such as block hash table, block stack table etc. Transition constraints are used to enforce that the tables are updates correctly, and we also apply boundary constraints to enforce the correct initial and final states of these tables. One of these boundary constraints binds the execution trace to the hash of the program being executed. Thus, if the virtual tables were updated correctly and boundary constraints hold, we can be convinced that the prover executed the claimed program on the VM. In the sections below, we describe constraints according to their logical grouping. However, we start out with a set of general constraints which are applicable to multiple parts of the decoder.","breadcrumbs":"Design » Program decoder » Decoder constraints » Miden VM decoder AIR constraints","id":"113","title":"Miden VM decoder AIR constraints"},"114":{"body":"When SPLIT or LOOP operation is executed, the top of the operand stack must contain a binary value: (fsplit+floop)⋅(s02−s0)=0 | degree=7 When REPEAT operation is executed, the value at the top of the operand stack must be 1: frepeat⋅(1−s0)=0 | degree=5 Also, when REPEAT operation is executed, the value in h4 column (the is_loop_body flag), must be set to 1. This ensures that REPEAT operation can be executed only inside a loop: frepeat⋅(1−h4)=0 | degree=5 When RESPAN operation is executed, we need to make sure that the block ID is incremented by 8: frespan⋅(a′−a−8)=0 | degree=5 When END operation is executed and we are exiting a loop block (i.e., is_loop, value which is stored in h5, is 1), the value at the top of the operand stack must be 0: fend⋅h5⋅s0=0 | degree=6 Also, when END operation is executed and the next operation is REPEAT, values in h0,...,h4 (the hash of the current block and the is_loop_body flag) must be copied to the next row: fend⋅frepeat′⋅(hi′−hi)=0 for i∈[0,5) | degree=9 A HALT instruction can be followed only by another HALT instruction: fhalt⋅(1−fhalt′)=0 | degree=8 When a HALT operation is executed, block address column must be 0: fhalt⋅a=0 | degree=5 Values in op_bits columns must be binary (i.e., either 1 or 0): bi2−bi=0 for i∈[0,7) | degree=2 When the value in in_span column is set to 1, control flow operations cannot be executed on the VM, but when in_span flag is 0, only control flow operations can be executed on the VM: 1−sp−fctrl=0 | degree=3","breadcrumbs":"Design » Program decoder » Decoder constraints » General constraints","id":"114","title":"General constraints"},"115":{"body":"As described previously , when the VM starts executing a new block, it also initiates computation of the block's hash. There are two separate methodologies for computing block hashes. For join , split , and loop blocks, the hash is computed directly from the hashes of the block's children. The prover provides these child hashes non-deterministically by populating registers h0,...,h7. The hasher is initialized using the hash chiplet, and we use the address of the hasher as the block's ID. The result of the hash is available 7 rows down in the hasher table (i.e., at row with index equal to block ID plus 7). We read the result from the hasher table at the time the END operation is executed for a given block. For span blocks, the hash is computed by absorbing a linear sequence of instructions (organized into operation groups and batches) into the hasher and then returning the result. The prover provides operation batches non-deterministically by populating registers h0,...,h7. Similarly to other blocks, the hasher is initialized using the hash chiplet at the start of the block, and we use the address of the hasher as the ID of the first operation batch in the block. As we absorb additional operation batches into the hasher (by executing RESPAN operation), the batch address is incremented by 8. This moves the \"pointer\" into the hasher table 8 rows down with every new batch. We read the result from the hasher table at the time the END operation is executed for a given block.","breadcrumbs":"Design » Program decoder » Decoder constraints » Block hash computation constraints","id":"115","title":"Block hash computation constraints"},"116":{"body":"The decoder communicates with the hash chiplet via the chiplets bus . This works by dividing values of the multiset check column bchip by the values of operations providing inputs to or reading outputs from the hash chiplet. A constraint to enforce this would look as bchip′⋅u=bchip, where u is the value which defines the operation. In constructing value of u for decoder AIR constraints, we will use the following labels (see here for an explanation of how values for these labels are computed): mbp this label specifies that we are starting a new hash computation. mabp this label specifies that we are absorbing the next sequence of 8 elements into an ongoing hash computation. mhout this label specifies that we are reading the result of a hash computation. To simplify constraint description, we define the following variables: hinit=α0+α1⋅mbp+α2⋅a′+i=0∑7(αi+8⋅hi) In the above, hinit can be thought of as initiating a hasher with address a′ and absorbing 8 elements from the hasher state (h0,...,h7) into it. Control blocks are always padded to fill the hasher rate and as such the α4 (first capacity register) term is set to 0. habp=α0+α1⋅mabp+α2⋅a′+i=0∑7(αi+8⋅hi) It should be noted that a refers to a column in the decoder, as depicted. The addresses in this column are set using the address from the hasher chiplet for the corresponding hash initialization / absorption / return. In the case of habp the value of the address in column a in the current row of the decoder is set to equal the value of the address of the row in the hasher chiplet where the previous absorption (or initialization) occurred. a′ is the address of the next row of the decoder, which is set to equal the address in the hasher chiplet where the absorption referred to by the habp label is happening. hres=α0+α1⋅mhout+α2⋅(a+7)+i=0∑3(αi+8⋅hi) In the above, a represents the address value in the decoder which corresponds to the hasher chiplet address at which the hasher was initialized (or the last absorption took place). As such, a+7 corresponds to the hasher chiplet address at which the result is returned. fctrli=fjoin+fsplit+floop+fcall | degree=5 In the above, fctrli is set to 1 when a control flow operation that signifies the initialization of a control block is being executed on the VM. Otherwise, it is set to 0. An exception is made for the SYSCALL operation. Although it also signifies the initialization of a control block, it must additionally send a procedure access request to the kernel ROM chiplet via the chiplets bus. Therefore, it is excluded from this flag and its communication with the chiplets bus is handled separately. d=b=0∑6(bi⋅2i) In the above, d represents the opcode value of the opcode being executed on the virtual machine. It is calculated via a bitwise combination of the op bits. We leverage the opcode value to achieve domain separation when hashing control blocks. This is done by populating the second capacity register of the hasher with the value d via the α5 term when initializing the hasher. Using the above variables, we define operation values as described below. When a control block initializer operation (JOIN, SPLIT, LOOP, CALL, SYSCALL) is executed, a new hasher is initialized and the contents of h0,...,h7 are absorbed into the hasher. As mentioned above, the opcode value d is populated in the second capacity resister via the α5 term. uctrli=fctrli⋅(hinit+α5⋅d) | degree=6 As mentioned previously, the value sent by the SYSCALL operation is defined separately, since in addition to communicating with the hash chiplet it must also send a kernel procedure access request to the kernel ROM chiplet. This value of this kernel procedure request is described by kproc. kproc=α6+α7⋅opkrom+i=0∑3(αi+8⋅hi) In the above, opkrom is the unique operation label of the kernel procedure call operation. The values h0,h1,h2,h3 contain the root hash of the procedure being called, which is the procedure that must be requested from the kernel ROM chiplet. usyscall=fsyscall⋅(hinit+α5⋅d)⋅kproc | degree=7 The above value sends both the hash initialization request and the kernel procedure access request to the chiplets bus when the SYSCALL operation is executed. When SPAN operation is executed, a new hasher is initialized and contents of h0,...,h7 are absorbed into the hasher. The number of operation groups to be hashed is padded to a multiple of the rate width (8) and so the α4 is set to 0: uspan=fspan⋅hinit | degree=6 When RESPAN operation is executed, contents of h0,...,h7 (which contain the new operation batch) are absorbed into the hasher: urespan=frespan⋅habp | degree=5 When END operation is executed, the hash result is copied into registers h0,..,h3: uend=fend⋅hres | degree=5 Using the above definitions, we can describe the constraint for computing block hashes as follows: bchip′⋅(uctrli+usyscall+uspan+urespan+uend+1−(fctrli+fsyscall+fspan+frespan+fend))=bchip We need to add 1 and subtract the sum of the relevant operation flags to ensure that when none of the flags is set to 1, the above constraint reduces to bchip′=bchip. The degree of this constraint is 8.","breadcrumbs":"Design » Program decoder » Decoder constraints » Chiplets bus constraints","id":"116","title":"Chiplets bus constraints"},"117":{"body":"As described previously , block stack table keeps track of program blocks currently executing on the VM. Thus, whenever the VM starts executing a new block, an entry for this block is added to the block stack table. And when execution of a block completes, it is removed from the block stack table. Adding and removing entries to/from the block stack table is accomplished as follows: To add an entry, we multiply the value in column p1 by a value representing a tuple (blk_id, prnt_id, is_loop). A constraint to enforce this would look as p1′=p1⋅v, where v is the value representing the row to be added. To remove an entry, we divide the value in column p1 by a value representing a tuple (blk_id, prnt_id, is_loop). A constraint to enforce this would look as p1′⋅u=p1, where u is the value representing the row to be removed. Before describing the constraints for the block stack table, we first describe how we compute the values to be added and removed from the table for each operation. In the below, for block start operations (JOIN, SPLIT, LOOP, SPAN) a refers to the ID of the parent block, and a′ refers to the ID of the starting block. For END operation, the situation is reversed: a is the ID of the ending block, and a′ is the ID of the parent block. For RESPAN operation, a refers to the ID of the current operation batch, a′ refers to the ID of the next batch, and the parent ID for both batches is set by the prover non-deterministically in register h1. When JOIN operation is executed, row (a′,a,0) is added to the block stack table: vjoin=fjoin⋅(α0+α1⋅a′+α2⋅a) | degree=6 When SPLIT operation is executed, row (a′,a,0) added to the block stack table: vsplit=fsplit⋅(α0+α1⋅a′+α2⋅a) | degree=6 When LOOP operation is executed, row (a′,a,1) is added to the block stack table if the value at the top of the operand stack is 1, and row (a′,a,0) is added to the block stack table if the value at the top of the operand stack is 0: vloop=floop⋅(α0+α1⋅a′+α2⋅a+α3⋅s0) | degree=6 When SPAN operation is executed, row (a′,a,0) is added to the block stack table: vspan=fspan⋅(α0+α1⋅a′+α2⋅a) | degree=6 When RESPAN operation is executed, row (a,h1′,0) is removed from the block stack table, and row (a′,h1′,0) is added to the table. The prover sets the value of register h1 at the next row to the ID of the parent block: urespan=frespan⋅(α0+α1⋅a+α2⋅h1′) | degree=5vrespan=frespan⋅(α0+α1⋅a′+α2⋅h1′) | degree=5 When END operation is executed, row (a,a′,h5) is removed from the block span table. Register h5 contains the is_loop flag: uend=fend⋅(α0+α1⋅a+α2⋅a′+α3⋅h5) | degree=5 Using the above definitions, we can describe the constraint for updating the block stack table as follows: p1′⋅(uend+urespan+1−(fend+frespan))=p1⋅(vjoin+vsplit+vloop+vspan+vrespan+1−(fjoin+fsplit+floop+fspan+frespan)) We need to add 1 and subtract the sum of the relevant operation flags from each side to ensure that when none of the flags is set to 1, the above constraint reduces to p1′=p1. The degree of this constraint is 7. In addition to the above transition constraint, we also need to impose boundary constraints against the p1 column to make sure the first and the last value in the column is set to 1. This enforces that the block stack table starts and ends in an empty state.","breadcrumbs":"Design » Program decoder » Decoder constraints » Block stack table constraints","id":"117","title":"Block stack table constraints"},"118":{"body":"As described previously , when the VM starts executing a new program block, it adds hashes of the block's children to the block hash table. And when the VM finishes executing a block, it removes the block's hash from the block hash table. This means that the block hash tables gets updated when we execute JOIN, SPLIT, LOOP, REPEAT, and END operations (executing SPAN operation does not affect the block hash table because a span block has no children). Adding and removing entries to/from the block hash table is accomplished as follows: To add an entry, we multiply the value in column p2 by a value representing a tuple (prnt_id, block_hash, is_first_child, is_loop_body). A constraint to enforce this would look as p2′=p2⋅v, where v is the value representing the row to be added. To remove an entry, we divide the value in column p2 by a value representing a tuple (prnt_id, block_hash, is_first_child, is_loop_body). A constraint to enforce this would look as p2′⋅u=p2, where u is the value representing the row to be removed. To simplify constraint descriptions, we define values representing left and right children of a block as follows: ch1=α0+α1⋅a′+i=0∑3(αi+2⋅hi) | degree=1ch2=α0+α1⋅a′+i=0∑3(αi+2⋅hi+4) | degree=1 Graphically, this looks like so: air_decoder_left_right_child In a similar manner, we define a value representing the result of hash computation as follows: bh=α0+α1⋅a+i=0∑3(αi+2⋅hi)+α7⋅h4 | degree=1 Note that in the above we use a (block address from the current row) rather than a′ (block address from the next row) as we did for for values of ch1 and ch2. Also, note that we are not adding a flag indicating whether the block is the first child of a join block (i.e., α6 term is missing). It will be added later on. Using the above variables, we define row values to be added to and removed from the block hash table as follows. When JOIN operation is executed, hashes of both child nodes are added to the block hash table. We add α6 term to the first child value to differentiate it from the second child (i.e., this sets is_first_child to 1): vjoin=fjoin⋅(ch1+α6)⋅ch2 | degree=7 When SPLIT operation is executed and the top of the stack is 1, hash of the true branch is added to the block hash table, but when the top of the stack is 0, hash of the false branch is added to the block hash table: vsplit=fsplit⋅(s0⋅ch1+(1−s0)⋅ch2) | degree=7 When LOOP operation is executed and the top of the stack is 1, hash of loop body is added to the block hash table. We add α7 term to indicate that the child is a body of a loop. The below also means that if the top of the stack is 0, nothing is added to the block hash table as the expression evaluates to 0: vloop=floop⋅s0⋅(ch1+α7) | degree=7 When REPEAT operation is executed, hash of loop body is added to the block hash table. We add α7 term to indicate that the child is a body of a loop: vrepeat=frepeat⋅(ch1+α7) | degree=5 When END operation is executed, hash of the completed block is removed from the block hash table. However, we also need to differentiate between removing the first and the second child of a join block. We do this by looking at the next operation. Specifically, if the next operation is neither END nor REPEAT we know that another block is about to be executed, and thus, we have just finished executing the first child of a join block. Thus, if the next operation is neither END nor REPEAT we need to set the term for α6 coefficient to 1 as shown below: uend=fend⋅(bh+α6⋅(1−(fend′+frepeat′))) | degree=8 Using the above definitions, we can describe the constraint for updating the block hash table as follows: p2′⋅(uend+1−fend)=p2⋅(vjoin+vsplit+vloop+vrepeat+1−(fjoin+fsplit+floop+frepeat)) We need to add 1 and subtract the sum of the relevant operation flags from each side to ensure that when none of the flags is set to 1, the above constraint reduces to p2′=p2. The degree of this constraint is 9. In addition to the above transition constraint, we also need to set the following boundary constraints against the p2 column: The first value in the column represents a row for the entire program. Specifically, the row tuple would be (0, program_hash, 0, 0). This row should be removed from the table when the last END operation is executed. The last value in the column is 1 - i.e., the block hash table is empty.","breadcrumbs":"Design » Program decoder » Decoder constraints » Block hash table constraints","id":"118","title":"Block hash table constraints"},"119":{"body":"Span block constraints ensure proper decoding of span blocks. In addition to the block stack table constraints and block hash table constraints described previously, decoding of span blocks requires constraints described below.","breadcrumbs":"Design » Program decoder » Decoder constraints » Span block","id":"119","title":"Span block"},"12":{"body":"","breadcrumbs":"Introduction » Usage » CLI interface","id":"12","title":"CLI interface"},"120":{"body":"The in_span column (denoted as sp) is used to identify rows which execute non-control flow operations. The values in this column are set as follows: Executing a SPAN operation sets the value of in_span column to 1. The value remains 1 until the END operation is executed. If RESPAN operation is executed between SPAN and END operations, in the row at which RESPAN operation is executed in_span is set to 0. It is then reset to 1 in the following row. In all other cases, value in the in_span column should be 0. The picture below illustrates the above rules. air_decoder_in_spans_column_constraint To enforce the above rules we need the following constraints. When executing SPAN or RESPAN operation, the next value in sp column must be set to 1: (fspan+frespan)⋅(1−sp′)=0 | degree=6 When the next operation is END or RESPAN, the next value in sp column must be set 0. (fend′+frespan′)⋅sp′=0 | degree=5 In all other cases, the value in sp column must be copied over to the next row: (1−fspan−frespan−fend′−frespan′)⋅(sp′−sp)=0 | degree=6 Additionally, we will need to impose a boundary constraint which specifies that the first value in sp=0. Note, however, that we do not need to impose a constraint ensuring that values in sp are binary - this will follow naturally from the above constraints. Also, note that the combination of the above constraints makes it impossible to execute END or RESPAN operations right after SPAN or RESPAN operations.","breadcrumbs":"Design » Program decoder » Decoder constraints » In-span column constraints","id":"120","title":"In-span column constraints"},"121":{"body":"When we are inside a span block, values in block address columns (denoted as a) must remain the same. This can be enforced with the following constraint: sp⋅(a′−a)=0 | degree=2 Notice that this constraint does not apply when we execute any of the control flow operations. For such operations, the prover sets the value of the a column non-deterministically, except for the RESPAN operation. For the RESPAN operation the value in the a column is incremented by 8, which is enforced by a constraint described previously. Notice also that this constraint implies that when the next operation is the END operation, the value in the a column must also be copied over to the next row. This is exactly the behavior we want to enforce so that when the END operation is executed, the block address is set to the address of the current span batch.","breadcrumbs":"Design » Program decoder » Decoder constraints » Block address constraints","id":"121","title":"Block address constraints"},"122":{"body":"The group_count column (denoted as gc) is used to keep track of the number of operation groups which remains to be executed in a span block. In the beginning of a span block (i.e., when SPAN operation is executed), the prover sets the value of gc non-deterministically. This value is subsequently decremented according to the rules described below. By the time we exit the span block (i.e., when END operation is executed), the value in gc must be 0. The rules for decrementing values in the gc column are as follows: The count cannot be decremented by more than 1 in a single row. When an operation group is fully executed (which happens when h0=0 inside a span block), the count is decremented by 1. When SPAN, RESPAN, or PUSH operations are executed, the count is decremented by 1. Note that these rules imply that PUSH operation cannot be the last operation in an operation group (otherwise the count would have to be decremented by 2). To simplify the description of the constraints, we will define the following variable: Δgc=gc−gc′ Using this variable, we can describe the constraints against the gc column as follows: Inside a span block, group count can either stay the same or decrease by one: sp⋅Δgc⋅(Δgc−1)=0 | degree=3 When group count is decremented inside a span block, either h0 must be 0 (we consumed all operations in a group) or we must be executing PUSH operation: sp⋅Δgc⋅(1−fpush)⋅h0=0 | degree=7 Notice that the above constraint does not preclude fpush=1 and h0=0 from being true at the same time. If this happens, op group decoding constraints (described here ) will force that the operation following the PUSH operation is a NOOP. When executing a SPAN, a RESPAN, or a PUSH operation, group count must be decremented by 1: (fspan+frespan+fpush)⋅(Δgc−1)=0 | degree=6 If the next operation is either an END or a RESPAN, group count must remain the same: Δgc⋅(fend′+frespan′)=0 | degree=5 When an END operation is executed, group count must be 0: fend⋅gc=0 | degree=5","breadcrumbs":"Design » Program decoder » Decoder constraints » Group count constraints","id":"122","title":"Group count constraints"},"123":{"body":"Inside a span block, register h0 is used to keep track of operations to be executed in the current operation group. The value of this register is set by the prover non-deterministically at the time when the prover executes a SPAN or a RESPAN operation, or when processing of a new operation group within a batch starts. The picture below illustrates this. air_decoder_op_group_constraint In the above: The prover sets the value of h0 non-deterministically at row 0. The value is set to an operation group containing operations op0 through op8. As we start executing the group, at every row we \"remove\" the least significant operation from the group. This can be done by subtracting opcode of the operation from the group, and then dividing the result by 27. By row 9 the group is fully executed. This decrements the group count and set op_index to 0 (constraints against op_index column are described in the next section). At row 10 we start executing the next group with operations op9 through op11. In this case, the prover populates h0 with the group having its first operation (op9) already removed, and sets the op_bits registers to the value encoding op9. By row 12 this group is also fully executed. To simplify the description of the constraints, we define the following variables: op=i=0∑6(bi⋅2i)fsgc=sp⋅sp′⋅(1−Δgc) op is just an opcode value implied by the values in op_bits registers. fsgc is a flag which is set to 1 when the group count within a span block does not change. We multiply it by sp′ to make sure the flag is 0 when we are about to end decoding of an operation batch. Note that fsgc flag is mutually exclusive with fspan, frespan, and fpush flags as these three operations decrement the group count. Using these variables, we can describe operation group decoding constraints as follows: When a SPAN, a RESPAN, or a PUSH operation is executed or when the group count does not change, the value in h0 should be decremented by the value of the opcode in the next row. (fspan+frespan+fpush+fsgc)⋅(h0−h0′⋅27−op′)=0 | degree=6 Notice that when the group count does change, and we are not executing fspan, frespan, or fpush operations, no constraints are placed against h0, and thus, the prover can populate this register non-deterministically. When we are in a span block and the next operation is END or RESPAN, the current value in h0 column must be 0. sp⋅(fend′+frespan′)⋅h0=0 | degree=6","breadcrumbs":"Design » Program decoder » Decoder constraints » Op group decoding constraints","id":"123","title":"Op group decoding constraints"},"124":{"body":"The op_index column (denoted as ox) tracks index of an operation within its operation group. It is used to ensure that the number of operations executed per group never exceeds 9. The index is zero-based, and thus, the possible set of values for ox is between 0 and 8 (both inclusive). To simplify the description of the constraints, we will define the following variables: ng=Δgc−fpushΔox=ox′−ox The value of ng is set to 1 when we are about to start executing a new operation group (i.e., group count is decremented but we did not execute a PUSH operation). Using these variables, we can describe the constraints against the ox column as follows. When executing SPAN or RESPAN operations the next value of op_index must be set to 0: (fspan+frespan)⋅ox′=0 | degree=6 When starting a new operation group inside a span block, the next value of op_index must be set to 0. Note that we multiply by sp to exclude the cases when the group count is decremented because of SPAN or RESPAN operations: sp⋅ng⋅ox′=0 | degree=6 When inside a span block but not starting a new operation group, op_index must be incremented by 1. Note that we multiply by sp′ to exclude the cases when we are about to exit processing of an operation batch (i.e., the next operation is either END or RESPAN): sp⋅sp′⋅(1−ng)⋅(Δox−1)=0 | degree=7 Values of op_index must be in the range [0,8]. i=0∏8(ox−i)=0 | degree=9","breadcrumbs":"Design » Program decoder » Decoder constraints » Op index constraints","id":"124","title":"Op index constraints"},"125":{"body":"Operation batch flag columns (denoted bc0, bc1, and bc2) are used to specify how many operation groups are present in an operation batch. This is relevant for the last batch in a span block (or the first batch if there is only one batch in a block) as all other batches should be completely full (i.e., contain 8 operation groups). These columns are used to define the following 4 flags: fg8=bc0: there are 8 operation groups in the batch. fg4=(1−bc0)⋅bc1⋅bc2: there are 4 operation groups in the batch. fg2=(1−bc0)⋅(1−bc1)⋅bc2: there are 2 operation groups in the batch. fg1=(1−bc0)⋅bc1⋅(1−bc2): there is only 1 operation groups in the batch. Notice that the degree of fg8 is 1, while the degree of the remaining flags is 3. These flags can be set to 1 only when we are executing SPAN or RESPAN operations as this is when the VM starts processing new operation batches. Also, for a given flag we need to ensure that only the specified number of operations groups are present in a batch. This can be done with the following constraints. All batch flags must be binary: bci2−bci=0 for i∈[0,3) | degree=2 When SPAN or RESPAN operations is executed, one of the batch flags must be set to 1. (fspan+frespan)−(fg1+fg2+fg4+fg8)=0 | degree=5 When we have at most 4 groups in a batch, registers h4,...,h7 should be set to 0's. (fg1+fg2+fg4)⋅hi=0 for i∈[4,8) | degree=4 When we have at most 2 groups in a batch, registers h2 and h3 should also be set to 0's. (fg1+fg2)⋅hi=0 for i∈2,3 | degree=4 When we have at most 1 groups in a batch, register h1 should also be set to 0. fg1⋅h1=0 | degree=4","breadcrumbs":"Design » Program decoder » Decoder constraints » Op batch flags constraints","id":"125","title":"Op batch flags constraints"},"126":{"body":"Op group table is used to ensure that all operation groups in a given batch are consumed before a new batch is started (i.e., via a RESPAN operation) or the execution of a span block is complete (i.e., via an END operation). The op group table is updated according to the following rules: When a new operation batch is started, we add groups from this batch to the table. To add a group to the table, we multiply the value in column p3 by a value representing a tuple (batch_id, group_pos, group). A constraint to enforce this would look as p3′=p3⋅v, where v is the value representing the row to be added. Depending on the batch, we may need to add multiple groups to the table (i.e., p3′=p3⋅v1⋅v2⋅v3...). Flags fg1, fg2, fg4, and fg8 are used to define how many groups to add. When a new operation group starts executing or when an immediate value is consumed, we remove the corresponding group from the table. To do this, we divide the value in column p3 by a value representing a tuple (batch_id, group_pos, group). A constraint to enforce this would look as p3′⋅u=p3, where u is the value representing the row to be removed. To simplify constraint descriptions, we first define variables representing the rows to be added to and removed from the op group table. When a SPAN or a RESPAN operation is executed, we compute the values of the rows to be added to the op group table as follows: vi=α0+α1⋅a′+α2⋅(gc−i)+α3⋅hi | degree=1 Where i∈[1,8). Thus, v1 defines row value for group in h1, v2 defines row value for group h2 etc. Note that batch address column comes from the next row of the block address column (a′). We compute the value of the row to be removed from the op group table as follows: u=α0+α1⋅a+α2⋅gc+α3⋅((h0′⋅27+op′)⋅(1−fpush)+s0′⋅fpush) | degree=5 In the above, the value of the group is computed as (h0′⋅27+op′)⋅(1−fpush)+s0′⋅fpush. This basically says that when we execute a PUSH operation we need to remove the immediate value from the table. This value is at the top of the stack (column s0) in the next row. However, when we are not executing a PUSH operation, the value to be removed is an op group value which is a combination of values in h0 and op_bits columns (also in the next row). Note also that value for batch address comes from the current value in the block address column (a), and the group position comes from the current value of the group count column (gc). We also define a flag which is set to 1 when a group needs to be removed from the op group table. fdg=sp⋅Δgc The above says that we remove groups from the op group table whenever group count is decremented. We multiply by sp to exclude the cases when the group count is decremented due to SPAN or RESPAN operations. Using the above variables together with flags fg2, fg4, fg8 defined in the previous section, we describe the constraint for updating op group table as follows (note that we do not use fg1 flag as when a batch consists of a single group, nothing is added to the op group table): p3′⋅(fdg⋅u+1−fdg)=p3⋅(fg2⋅v1+fg4⋅i=1∏3vi+fg8⋅i=1∏7vi−1+(fspan+frespan)) The above constraint specifies that: When SPAN or RESPAN operations are executed, we add between 1 and 7 groups to the op group table. When group count is decremented inside a span block, we remove a group from the op group table. The degree of this constraint is 9. In addition to the above transition constraint, we also need to impose boundary constraints against the p3 column to make sure the first and the last value in the column is set to 1. This enforces that the op group table table starts and ends in an empty state.","breadcrumbs":"Design » Program decoder » Decoder constraints » Op group table constraints","id":"126","title":"Op group table constraints"},"127":{"body":"Miden VM is a stack machine. The stack is a push-down stack of practically unlimited depth (in practical terms, the depth will never exceed 232), but only the top 16 items are directly accessible to the VM. Items on the stack are elements in a prime field with modulus 264−232+1. To keep the constraint system for the stack manageable, we impose the following rules: All operations executed on the VM can shift the stack by at most one item. That is, the end result of an operation must be that the stack shrinks by one item, grows by one item, or the number of items on the stack stays the same. Stack depth must always be greater than or equal to 16. At the start of program execution, the stack is initialized with exactly 16 input values, all of which could be 0's. By the end of program execution, exactly 16 items must remain on the stack (again, all of them could be 0's). These items comprise the output of the program. To ensure that managing stack depth does not impose significant burden, we adopt the following rule: When the stack depth is 16, removing additional items from the stack does not change its depth. To keep the depth at 16, 0's are inserted into the deep end of the stack for each removed item.","breadcrumbs":"Design » Operand stack » Operand stack","id":"127","title":"Operand stack"},"128":{"body":"The VM allocates 19 trace columns for the stack. The layout of the columns is illustrated below. The meaning of the above columns is as follows: s0...s15 are the columns representing the top 16 slots of the stack. Column b0 contains the number of items on the stack (i.e., the stack depth). In the above picture, there are 16 items on the stacks, so b0=16. Column b1 contains an address of a row in the \"overflow table\" in which we'll store the data that doesn't fit into the top 16 slots. When b1=0, it means that all stack data fits into the top 16 slots of the stack. Helper column h0 is used to ensure that stack depth does not drop below 16. Values in this column are set by the prover non-deterministically to b0−161 when b0=16, and to any other value otherwise.","breadcrumbs":"Design » Operand stack » Stack representation","id":"128","title":"Stack representation"},"129":{"body":"To keep track of the data which doesn't fit into the top 16 stack slots, we'll use an overflow table. This will be a virtual table . To represent this table, we'll use a single auxiliary column p1. The table itself can be thought of as having 3 columns as illustrated below. The meaning of the columns is as follows: Column t0 contains row address. Every address in the table must be unique. Column t1 contains the value that overflowed the stack. Column t2 contains the address of the row containing the value that overflowed the stack right before the value in the current row. For example, in the picture above, first value a overflowed the stack, then b overflowed the stack, and then value c overflowed the stack. Thus, row with value b points back to the row with value a, and row with value c points back to the row with value b. To reduce a table row to a single value, we'll compute a randomized product of column values as follows: ri=α0+α1⋅t0,i+α2⋅t1,i+α3⋅t2,i Then, when row i is added to the table, we'll update the value in the p1 column like so: p1′=p1⋅ri Analogously, when row i is removed from the table, we'll update the value in column p1 like so: p1′=rip1 The initial value of p1 is set to 1. Thus, if by the time Miden VM finishes executing a program the table is empty (we added and then removed exactly the same set of rows), p1 will also be equal to 1. There are a couple of other rules we'll need to enforce: We can delete a row only after the row has been inserted into the table. We can't insert a row with the same address twice into the table (even if the row was inserted and then deleted). How these are enforced will be described a bit later.","breadcrumbs":"Design » Operand stack » Overflow table","id":"129","title":"Overflow table"},"13":{"body":"To compile Miden VM into a binary, we have a Makefile with the following tasks: make exec This will place an optimized, multi-threaded miden executable into the ./target/optimized directory. It is equivalent to executing: cargo build --profile optimized --features concurrent,executable If you would like to enable single-threaded mode, you can compile Miden VM using the following command: cargo build --profile optimized --features executable For a faster build, you can compile with less optimizations, replacing --profile optimized by --release. Example: cargo build --release --features concurrent,executable In this case, the miden executable will be placed in the ./target/release directory.","breadcrumbs":"Introduction » Usage » Compiling Miden VM","id":"13","title":"Compiling Miden VM"},"130":{"body":"If an operation adds data to the stack, we say that the operation caused a right shift. For example, PUSH and DUP operations cause a right shift. Graphically, this looks like so: Here, we pushed value v17 onto the stack. All other values on the stack are shifted by one slot to the right and the stack depth increases by 1. There is not enough space at the top of the stack for all 17 values, thus, v1 needs to be moved to the overflow table. To do this, we need to rely on another column: k0. This is a system column which keeps track of the current VM cycle. The value in this column is simply incremented by 1 with every step. The row we want to add to the overflow table is defined by tuple (clk,v1,0), and after it is added, the table would look like so: The reason we use VM clock cycle as row address is that the clock cycle is guaranteed to be unique, and thus, the same row can not be added to the table twice. Let's push another item onto the stack: Again, as we push v18 onto the stack, all items on the stack are shifted to the right, and now v2 needs to be moved to the overflow table. The tuple we want to insert into the table now is (clk+1,v2,clk). After the operation, the overflow table will look like so: Notice that t2 for row which contains value v2 points back to the row with address clk. Overall, during a right shift we do the following: Increment stack depth by 1. Shift stack columns s0,...,s14 right by 1 slot. Add a row to the overflow table described by tuple (k0,s15,b0). Set the next value of b1 to the current value of k0. Also, as mentioned previously, the prover sets values in h0 non-deterministically to b0−161.","breadcrumbs":"Design » Operand stack » Right shift","id":"130","title":"Right shift"},"131":{"body":"If an operation removes an item from the stack, we say that the operation caused a left shift. For example, a DROP operation causes a left shift. Assuming the stack is in the state we left it at the end of the previous section, graphically, this looks like so: Overall, during the left shift we do the following: When stack depth is greater than 16: Decrement stack depth by 1. Shift stack columns s1,...,s15 left by 1 slot. Remove a row from the overflow table with t0 equal to the current value of b1. Set the next value of s15 to the value in t1 of the removed overflow table row. Set the next value of b1 to the value in t2 of the removed overflow table row. When the stack depth is equal to 16: Keep the stack depth the same. Shift stack columns s1,...,s15 left by 1 slot. Set the value of s15 to 0. Set the value to h0 to 0 (or any other value). If the stack depth becomes (or remains) 16, the prover can set h0 to any value (e.g., 0). But if the depth is greater than 16 the prover sets h0 to b0−161.","breadcrumbs":"Design » Operand stack » Left shift","id":"131","title":"Left shift"},"132":{"body":"To simplify constraint descriptions, we'll assume that the VM exposes two binary flag values described below. Flag Degree Description fshr 6 When this flag is set to 1, the instruction executing on the VM is performing a \"right shift\". fshl 5 When this flag is set to 1, the instruction executing on the VM is performing a \"left shift\". These flags are mutually exclusive. That is, if fshl=1, then fshr=0 and vice versa. However, both flags can be set to 0 simultaneously. This happens when the executed instruction does not shift the stack. How these flags are computed is described here .","breadcrumbs":"Design » Operand stack » AIR Constraints","id":"132","title":"AIR Constraints"},"133":{"body":"Additionally, we'll define a flag to indicate whether the overflow table contains values. This flag will be set to 0 when the overflow table is empty, and to 1 otherwise (i.e., when stack depth >16). This flag can be computed as follows: fov=(b0−16)⋅h0 | degree=2 To ensure that this flag is set correctly, we need to impose the following constraint: (1−fov)⋅(b0−16)=0 | degree=3 The above constraint can be satisfied only when either of the following holds: b0=16, in which case fov evaluates to 0, regardless of the value of h0. fov=1, in which case b0 cannot be equal to 16 (and h0 must be set to b0−161).","breadcrumbs":"Design » Operand stack » Stack overflow flag","id":"133","title":"Stack overflow flag"},"134":{"body":"To make sure stack depth column b0 is updated correctly, we need to impose the following constraints: Condition Constraint__ Description fshr=1 b0′=b0+1 When the stack is shifted to the right, stack depth should be incremented by 1. fshl=1 fov=1 b0′=b0−1 When the stack is shifted to the left and the overflow table is not empty, stack depth should be decremented by 1. otherwise b0′=b0 In all other cases, stack depth should not change. We can combine the above constraints into a single expression as follows: b0′−b0+fshl⋅fov−fshr=0 | degree=7","breadcrumbs":"Design » Operand stack » Stack depth constraints","id":"134","title":"Stack depth constraints"},"135":{"body":"When the stack is shifted to the right, a tuple (k0,s15,b1) should be added to the overflow table. We will denote value of the row to be added to the table as follows: v=α0+α1⋅k0+α2⋅s15+α3⋅b1 When the stack is shifted to the left, a tuple (b1,s15′,b1′) should be removed from the overflow table. We will denote value of the row to be removed from the table as follows. u=α0+α1⋅b1+α2⋅s15′+α3⋅b1′ Using the above variables, we can ensure that right and left shifts update the overflow table correctly by enforcing the following constraint: p1′⋅(u⋅fshl⋅fov+1−fshl⋅fov)=p1⋅(v⋅fshr+1−fshr) | degree=9 The above constraint reduces to the following under various flag conditions: Condition Applied constraint fshl=1, fshr=0, fov=0 p1′=p1 fshl=1, fshr=0, fov=1 p1′⋅u=p1 fshl=0, fshr=1, fov=1 or 0 p1′=p1⋅v fshl=0, fshr=0, fov=1 or 0 p1′=p1 Notice that in the case of the left shift, the constraint forces the prover to set the next values of s15 and b1 to values t1 and t2 of the row removed from the overflow table. In case of a right shift, we also need to make sure that the next value of b1 is set to the current value of k0. This can be done with the following constraint: fshr⋅(b1′−k0)=0 | degree=7 In case of a left shift, when the overflow table is empty, we need to make sure that a 0 is \"shifted in\" from the right (i.e., s15 is set to 0). This can be done with the following constraint: fshl⋅(1−fov)⋅s15′=0 | degree=8","breadcrumbs":"Design » Operand stack » Overflow table constraints","id":"135","title":"Overflow table constraints"},"136":{"body":"In addition to the constraints described above, we also need to enforce the following boundary constraints: b0=16 at the first and at the last row of execution trace. b1=0 at the first and at the last row of execution trace. p1=1 at the first and at the last row of execution trace.","breadcrumbs":"Design » Operand stack » Boundary constraints","id":"136","title":"Boundary constraints"},"137":{"body":"In addition to the constraints described in the previous section, we need to impose constraints to check that each VM operation is executed correctly. For this purpose the VM exposes a set of operation-specific flags. These flags are set to 1 when a given operation is executed, and to 0 otherwise. The naming convention for these flags is fopname. For example, fdup would be set to 1 when DUP operation is executed, and to 0 otherwise. Operation flags are discussed in detail in the section below . To describe how operation-specific constraints work, let's use an example with DUP operation. This operation pushes a copy of the top stack item onto the stack. The constraints we need to impose for this operation are as follows: fdup⋅(s0′−s0)=0fdup⋅(si+1′−si)=0 for i∈[0,15) The first constraint enforces that the top stack item in the next row is the same as the top stack item in the current row. The second constraint enforces that all stack items (starting from item 0) are shifted to the right by 1. We also need to impose all the constraints discussed in the previous section, be we omit them here. Let's write similar constraints for DUP1 operation, which pushes a copy of the second stack item onto the stack: fdup1⋅(s0′−s1)=0fdup1⋅(si+1′−si)=0 for i∈[0,15) It is easy to notice that while the first constraint changed, the second constraint remained the same - i.e., we are still just shifting the stack to the right. In fact, for most operations it makes sense to make a distinction between constraints unique to the operation vs. more general constraints which enforce correct behavior for the stack items not affected by the operation. In the subsequent sections we describe in detail only the former constraints, and provide high-level descriptions of the more general constraints. Specifically, we indicate how the operation affects the rest of the stack (e.g., shifts right starting from position 0).","breadcrumbs":"Design » Operand stack » Operation constraints » Stack operation constraints","id":"137","title":"Stack operation constraints"},"138":{"body":"As mentioned above, operation flags are used as selectors to enforce operation-specific constraints. That is, they turn on relevant constraints for a given operation. In total, the VM provides 88 unique operations, and thus, there are 88 operation flags (not all of them currently used). Operation flags are mutually exclusive. That is, if one flag is set to 1, all other flags are set to 0. Also, one of the flags is always guaranteed to be set to 1. To compute values of operation flags we use op bits registers located in the decoder . These registers contain binary representations of operation codes (opcodes). Each opcode consists of 7 bits, and thus, there are 7 op bits registers. We denote these registers as b0,...,b6. The values are computed by multiplying the op bit registers in various combinations. Notice that binary encoding down below is showed in big-endian order, so the flag bits correspond to the reverse order of the op bits registers, from b6 to b0. For example, the value of the flag for NOOP, which is encoded as 0000000, is computed as follows: fnoop=(1−b6)⋅(1−b5)⋅(1−b4)⋅(1−b3)⋅(1−b2)⋅(1−b1)⋅(1−b0) While the value of the DROP operation, which is encoded as 0101001 is computed as follows: fdrop=(1−b6)⋅b5⋅(1−b4)⋅b3⋅(1−b2)⋅(1−b1)⋅b0 As can be seen from above, the degree for both of these flags is 7. Since degree of constraints in Miden VM can go up to 9, this means that operation-specific constraints cannot exceed degree 2. However, there are some operations which require constraints of higher degree (e.g., 3 or even 5). To support such constraints, we adopt the following scheme. We organize the operations into 4 groups as shown below and also introduce two extra registers e0 and e1 for degree reduction: b6 b5 b4 b3 b2 b1 b0 e0 e1 # of ops degree 0 x x x x x x 0 0 64 7 1 0 0 x x x - 0 0 8 6 1 0 1 x x x x 1 0 16 5 1 1 x x x - - 0 1 8 4 In the above: Operation flags for operations in the first group (with prefix 0), are computed using all 7 op bits, and thus their degree is 7. Operation flags for operations in the second group (with prefix 100), are computed using only the first 6 op bits, and thus their degree is 6. Operation flags for operations in the third group (with prefix 101), are computed using all 7 op bits. We use the extra register e0 (which is set to b6⋅(1−b5)⋅b4) to reduce the degree by 2. Thus, the degree of op flags in this group is 5. Operation flags for operations in the fourth group (with prefix 11), are computed using only the first 5 op bits. We use the extra register e1 (which is set to b6⋅b5) to reduce the degree by 1. Thus, the degree of op flags in this group is 4. How operations are distributed between these 4 groups is described in the sections below.","breadcrumbs":"Design » Operand stack » Operation constraints » Operation flags","id":"138","title":"Operation flags"},"139":{"body":"This group contains 32 operations which do not shift the stack (this is almost all such operations). Since the op flag degree for these operations is 7, constraints for these operations cannot exceed degree 2. Operation Opcode value Binary encoding Operation group Flag degree NOOP 0 000_0000 System ops 7 EQZ 1 000_0001 Field ops 7 NEG 2 000_0010 Field ops 7 INV 3 000_0011 Field ops 7 INCR 4 000_0100 Field ops 7 NOT 5 000_0101 Field ops 7 FMPADD 6 000_0110 System ops 7 MLOAD 7 000_0111 I/O ops 7 SWAP 8 000_1000 Stack ops 7 CALLER 9 000_1001 System ops 7 MOVUP2 10 000_1010 Stack ops 7 MOVDN2 11 000_1011 Stack ops 7 MOVUP3 12 000_1100 Stack ops 7 MOVDN3 13 000_1101 Stack ops 7 ADVPOPW 14 000_1110 I/O ops 7 EXPACC 15 000_1111 Field ops 7 MOVUP4 16 001_0000 Stack ops 7 MOVDN4 17 001_0001 Stack ops 7 MOVUP5 18 001_0010 Stack ops 7 MOVDN5 19 001_0011 Stack ops 7 MOVUP6 20 001_0100 Stack ops 7 MOVDN6 21 001_0101 Stack ops 7 MOVUP7 22 001_0110 Stack ops 7 MOVDN7 23 001_0111 Stack ops 7 SWAPW 24 001_1000 Stack ops 7 EXT2MUL 25 001_1001 Field ops 7 MOVUP8 26 001_1010 Stack ops 7 MOVDN8 27 001_1011 Stack ops 7 SWAPW2 28 001_1100 Stack ops 7 SWAPW3 29 001_1101 Stack ops 7 SWAPDW 30 001_1110 Stack ops 7 31 001_1111 7","breadcrumbs":"Design » Operand stack » Operation constraints » No stack shift operations","id":"139","title":"No stack shift operations"},"14":{"body":"Internally, Miden VM uses rayon for parallel computations. To control the number of threads used to generate a STARK proof, you can use RAYON_NUM_THREADS environment variable.","breadcrumbs":"Introduction » Usage » Controlling parallelism","id":"14","title":"Controlling parallelism"},"140":{"body":"This group contains 16 operations which shift the stack to the left (i.e., remove an item from the stack). Most of left-shift operations are contained in this group. Since the op flag degree for these operations is 7, constraints for these operations cannot exceed degree 2. Operation Opcode value Binary encoding Operation group Flag degree ASSERT 32 010_0000 System ops 7 EQ 33 010_0001 Field ops 7 ADD 34 010_0010 Field ops 7 MUL 35 010_0011 Field ops 7 AND 36 010_0100 Field ops 7 OR 37 010_0101 Field ops 7 U32AND 38 010_0110 u32 ops 7 U32XOR 39 010_0111 u32 ops 7 FRIE2F4 40 010_1000 Crypto ops 7 DROP 41 010_1001 Stack ops 7 CSWAP 42 010_1010 Stack ops 7 CSWAPW 43 010_1011 Stack ops 7 MLOADW 44 010_1100 I/O ops 7 MSTORE 45 010_1101 I/O ops 7 MSTOREW 46 010_1110 I/O ops 7 FMPUPDATE 47 010_1111 System ops 7","breadcrumbs":"Design » Operand stack » Operation constraints » Left stack shift operations","id":"140","title":"Left stack shift operations"},"141":{"body":"This group contains 16 operations which shift the stack to the right (i.e., push a new item onto the stack). Most of right-shift operations are contained in this group. Since the op flag degree for these operations is 7, constraints for these operations cannot exceed degree 2. Operation Opcode value Binary encoding Operation group Flag degree PAD 48 011_0000 Stack ops 7 DUP 49 011_0001 Stack ops 7 DUP1 50 011_0010 Stack ops 7 DUP2 51 011_0011 Stack ops 7 DUP3 52 011_0100 Stack ops 7 DUP4 53 011_0101 Stack ops 7 DUP5 54 011_0110 Stack ops 7 DUP6 55 011_0111 Stack ops 7 DUP7 56 011_1000 Stack ops 7 DUP9 57 011_1001 Stack ops 7 DUP11 58 011_1010 Stack ops 7 DUP13 59 011_1011 Stack ops 7 DUP15 60 011_1100 Stack ops 7 ADVPOP 61 011_1101 I/O ops 7 SDEPTH 62 011_1110 I/O ops 7 CLK 63 011_1111 System ops 7","breadcrumbs":"Design » Operand stack » Operation constraints » Right stack shift operations","id":"141","title":"Right stack shift operations"},"142":{"body":"This group contains 8 u32 operations. These operations are grouped together because all of them require range checks. The constraints for range checks are of degree 5, however, since all these operations require them, we can define a flag with common prefix 100 to serve as a selector for the range check constraints. The value of this flag is computed as follows: fu32rc=b6⋅(1−b5)⋅(1−b4) The degree of this flag is 3, which is acceptable for a selector for degree 5 constraints. Operation Opcode value Binary encoding Operation group Flag degree U32ADD 64 100_0000 u32 ops 6 U32SUB 66 100_0010 u32 ops 6 U32MUL 68 100_0100 u32 ops 6 U32DIV 70 100_0110 u32 ops 6 U32SPLIT 72 100_1000 u32 ops 6 U32ASSERT2 74 100_1010 u32 ops 6 U32ADD3 76 100_1100 u32 ops 6 U32MADD 78 100_1110 u32 ops 6 As mentioned previously, the last bit of the opcode is not used in computation of the flag for these operations. We force this bit to always be set to 0 with the following constraint: b6⋅(1−b5)⋅(1−b4)⋅b0=0 | degree=4 Putting these operations into a group with flag degree 6 is important for two other reasons: Constraints for the U32SPLIT operation have degree 3. Thus, the degree of the op flag for this operation cannot exceed 6. Operations U32ADD3 and U32MADD shift the stack to the left. Thus, having these two operations in this group and putting them under the common prefix 10011 allows us to create a common flag for these operations of degree 5 (recall that the left-shift flag cannot exceed degree 5).","breadcrumbs":"Design » Operand stack » Operation constraints » u32 operations","id":"142","title":"u32 operations"},"143":{"body":"This group contains operations which require constraints with degree up to 3. All 7 operation bits are used for these flags. The extra e0 column is used for degree reduction of the three high-degree bits. Operation Opcode value Binary encoding Operation group Flag degree HPERM 80 101_0000 Crypto ops 5 MPVERIFY 81 101_0001 Crypto ops 5 PIPE 82 101_0010 I/O ops 5 MSTREAM 83 101_0011 I/O ops 5 SPLIT 84 101_0100 Flow control ops 5 LOOP 85 101_0101 Flow control ops 5 SPAN 86 101_0110 Flow control ops 5 JOIN 87 101_0111 Flow control ops 5 88 101_1000 5 89 101_1001 5 90 101_1010 5 91 101_1011 5 92 101_1100 5 93 101_1101 5 94 101_1110 5 95 101_1111 5 Note that the SPLIT and LOOP operations are grouped together under the common prefix 101010, and thus can have a common flag of degree 4 (using e0 for degree reduction). This is important because both of these operations shift the stack to the left. Also, we need to make sure that extra register e0, which is used to reduce the flag degree by 2, is set to 1 when b6=1, b5=0, and b4=1: e0−b6⋅(1−b5)⋅b4=0 | degree=3","breadcrumbs":"Design » Operand stack » Operation constraints » High-degree operations","id":"143","title":"High-degree operations"},"144":{"body":"This group contains operations which require constraints with degree up to 5. Operation Opcode value Binary encoding Operation group Flag degree MRUPDATE 96 110_0000 Crypto ops 4 PUSH 100 110_0100 I/O ops 4 SYSCALL 104 110_1000 Flow control ops 4 CALL 108 110_1100 Flow control ops 4 END 112 111_0000 Flow control ops 4 REPEAT 116 111_0100 Flow control ops 4 RESPAN 120 111_1000 Flow control ops 4 HALT 124 111_1100 Flow control ops 4 As mentioned previously, the last two bits of the opcode are not used in computation of the flag for these operations. We force these bits to always be set to 0 with the following constraints: b6⋅b5⋅b0=0 | degree=3 b6⋅b5⋅b1=0 | degree=3 Also, we need to make sure that extra register e1, which is used to reduce the flag degree by 1, is set to 1 when both b6 and b5 columns are set to 1: e1−b6⋅b5=0 | degree=2","breadcrumbs":"Design » Operand stack » Operation constraints » Very high-degree operations","id":"144","title":"Very high-degree operations"},"145":{"body":"Using the operation flags defined above, we can compute several composite flags which are used by various constraints in the VM.","breadcrumbs":"Design » Operand stack » Operation constraints » Composite flags","id":"145","title":"Composite flags"},"146":{"body":"The right-shift flag indicates that an operation shifts the stack to the right. This flag is computed as follows: fshr=(1−b6)⋅b5⋅b4+fu32split+fpush | degree=6 In the above, (1−b6)⋅b5⋅b4 evaluates to 1 for all right stack shift operations described previously. This works because all these operations have a common prefix 011. We also need to add in flags for other operations which shift the stack to the right but are not a part of the above group (e.g., PUSH operation).","breadcrumbs":"Design » Operand stack » Operation constraints » Shift right flag","id":"146","title":"Shift right flag"},"147":{"body":"The left-shift flag indicates that a given operation shifts the stack to the left. To simplify the description of this flag, we will first compute the following intermediate variables: A flag which is set to 1 when fu32add3=1 or fu32madd=1: fadd3_madd=b6⋅(1−b5)⋅(1−b4)⋅b3⋅b2 | degree=5 A flag which is set to 1 when fsplit=1 or floop=1: fsplit_loop=e0⋅(1−b3)⋅b2⋅(1−b1) | degree=4 Using the above variables, we compute left-shift flag as follows: fshl=(1−b6)⋅b5⋅(1−b4)+fadd3_madd+fsplit_loop+frepeat+fend⋅h5 | degree=5 In the above: (1−b6)⋅b5⋅(1−b4) evaluates to 1 for all left stack shift operations described previously. This works because all these operations have a common prefix 010. h5 is the helper register in the decoder which is set to 1 when we are exiting a LOOP block, and to 0 otherwise. Thus, similarly to the right-shift flag, we compute the value of the left-shift flag based on the prefix of the operation group which contains most left shift operations, and add in flag values for other operations which shift the stack to the left but are not a part of this group.","breadcrumbs":"Design » Operand stack » Operation constraints » Shift left flag","id":"147","title":"Shift left flag"},"148":{"body":"The control flow flag fctrl is set to 1 when a control flow operation is being executed by the VM, and to 0 otherwise. Naively, this flag can be computed as follows: fctrl=fjoin+fsplit+floop+frepeat+fspan+frespan+fcall+fsyscall+fend+fhalt | degree=6 However, this can be computed more efficiently via the common operation prefixes for the two groups of control flow operations as follows. fspan,join,split,loop=e0⋅(1−b3)⋅b2 | degree=3 fend,repeat,respan,halt=e1⋅b4 | degree=2 fctrl=fspan,join,split,loop+fend,repeat,respan,halt+fcall+fsyscall | degree=3","breadcrumbs":"Design » Operand stack » Operation constraints » Control flow flag","id":"148","title":"Control flow flag"},"149":{"body":"In this section we describe the AIR constraints for Miden VM system operations.","breadcrumbs":"Design » Operand stack » System operations » System Operations","id":"149","title":"System Operations"},"15":{"body":"Miden VM proof generation can be accelerated via GPUs. Currently, GPU acceleration is enabled only on Apple silicon hardware (via Metal). To compile Miden VM with Metal acceleration enabled, you can run the following command: make exec-metal Similar to make exec command, this will place the resulting miden executable into the ./target/optimized directory. Currently, GPU acceleration is applicable only to recursive proofs which can be generated using -r flag.","breadcrumbs":"Introduction » Usage » GPU acceleration","id":"15","title":"GPU acceleration"},"150":{"body":"The NOOP operation advances the cycle counter but does not change the state of the operand stack (i.e., the depth of the stack and the values on the stack remain the same). The NOOP operation does not impose any constraints besides the ones needed to ensure that the entire state of the stack is copied over. This constraint looks like so: si′−si=0 for i∈[0,16) | degree=1","breadcrumbs":"Design » Operand stack » System operations » NOOP","id":"150","title":"NOOP"},"151":{"body":"The ASSERT operation pops an element off the stack and checks if the popped element is equal to 1. If the element is not equal to 1, program execution fails. assert Stack transition for this operation must satisfy the following constraints: s0−1=0 | degree=1 The effect on the rest of the stack is: Left shift starting from position 1.","breadcrumbs":"Design » Operand stack » System operations » ASSERT","id":"151","title":"ASSERT"},"152":{"body":"The FMPADD operation pops an element off the stack, adds the current value of the fmp register to it, and pushes the result back onto the stack. The diagram below illustrates this graphically. fmpadd Stack transition for this operation must satisfy the following constraints: s0′−(s0+fmp)=0 | degree=1 The effect on the rest of the stack is: No change starting from position 1.","breadcrumbs":"Design » Operand stack » System operations » FMPADD","id":"152","title":"FMPADD"},"153":{"body":"The FMPUPDATE operation pops an element off the stack and adds it to the current value of the fmp register. The diagram below illustrates this graphically. fmpupdate The stack transition for this operation must follow the following constraint: fmp′−(fmp+s0)=0 | degree=1 The effect on the rest of the stack is: Left shift starting from position 1.","breadcrumbs":"Design » Operand stack » System operations » FMPUPDATE","id":"153","title":"FMPUPDATE"},"154":{"body":"The CLK operation pushes the current value of the clock cycle onto the stack. The diagram below illustrates this graphically. clk The stack transition for this operation must follow the following constraint: s0′−clk=0 | degree=1 The effect on the rest of the stack is: Right shift starting from position 0.","breadcrumbs":"Design » Operand stack » System operations » CLK","id":"154","title":"CLK"},"155":{"body":"In this section we describe the AIR constraints for Miden VM field operations (i.e., arithmetic operations over field elements).","breadcrumbs":"Design » Operand stack » Field operations » Field Operations","id":"155","title":"Field Operations"},"156":{"body":"Assume a and b are the elements at the top of the stack. The ADD operation computes c←(a+b). The diagram below illustrates this graphically. add Stack transition for this operation must satisfy the following constraints: s0′−(s0+s1)=0 | degree=1 The effect on the rest of the stack is: Left shift starting from position 2.","breadcrumbs":"Design » Operand stack » Field operations » ADD","id":"156","title":"ADD"},"157":{"body":"Assume a is the element at the top of the stack. The NEG operation computes b←(−a). The diagram below illustrates this graphically. neg Stack transition for this operation must satisfy the following constraints: s0′+s0=0 | degree=1 The effect on the rest of the stack is: No change starting from position 1.","breadcrumbs":"Design » Operand stack » Field operations » NEG","id":"157","title":"NEG"},"158":{"body":"Assume a and b are the elements at the top of the stack. The MUL operation computes c←(a⋅b). The diagram below illustrates this graphically. mul Stack transition for this operation must satisfy the following constraints: s0′−s0⋅s1=0 | degree=2 The effect on the rest of the stack is: Left shift starting from position 2.","breadcrumbs":"Design » Operand stack » Field operations » MUL","id":"158","title":"MUL"},"159":{"body":"Assume a is the element at the top of the stack. The INV operation computes b←(a−1). The diagram below illustrates this graphically. inv Stack transition for this operation must satisfy the following constraints: 1−s0′⋅s0=0 | degree=2 Note that the above constraint can be satisfied only if the value in s0=0. The effect on the rest of the stack is: No change starting from position 1.","breadcrumbs":"Design » Operand stack » Field operations » INV","id":"159","title":"INV"},"16":{"body":"Once the executable has been compiled, you can run Miden VM like so: ./target/optimized/miden [subcommand] [parameters] Currently, Miden VM can be executed with the following subcommands: run - this will execute a Miden assembly program and output the result, but will not generate a proof of execution. prove - this will execute a Miden assembly program, and will also generate a STARK proof of execution. verify - this will verify a previously generated proof of execution for a given program. compile - this will compile a Miden assembly program (i.e., build a program MAST ) and outputs stats about the compilation process. debug - this will instantiate a Miden debugger against the specified Miden assembly program and inputs. analyze - this will run a Miden assembly program against specific inputs and will output stats about its execution. repl - this will initiate the Miden REPL tool. All of the above subcommands require various parameters to be provided. To get more detailed help on what is needed for a given subcommand, you can run the following: ./target/optimized/miden [subcommand] --help For example: ./target/optimized/miden prove --help To execute a program using the Miden VM there needs to be a .masm file containing the Miden Assembly code and a .inputs file containing the inputs.","breadcrumbs":"Introduction » Usage » Running Miden VM","id":"16","title":"Running Miden VM"},"160":{"body":"Assume a is the element at the top of the stack. The INCR operation computes b←(a+1). The diagram below illustrates this graphically. incr Stack transition for this operation must satisfy the following constraints: s0′−(s0+1)=0 | degree=1 The effect on the rest of the stack is: No change starting from position 1.","breadcrumbs":"Design » Operand stack » Field operations » INCR","id":"160","title":"INCR"},"161":{"body":"Assume a is a binary value at the top of the stack. The NOT operation computes b←(¬a). The diagram below illustrates this graphically. not Stack transition for this operation must satisfy the following constraints: s02−s0=0 | degree=2 s0′−(1−s0)=0 | degree=1 The first constraint ensures that the value in s0 is binary, and the second constraint ensures the correctness of the boolean NOT operation. The effect on the rest of the stack is: No change starting from position 1.","breadcrumbs":"Design » Operand stack » Field operations » NOT","id":"161","title":"NOT"},"162":{"body":"Assume a and b are binary values at the top of the stack. The AND operation computes c←(a∧b). The diagram below illustrates this graphically. and Stack transition for this operation must satisfy the following constraints: si2−si=0 for i∈{0,1} | degree=2 s0′−s0⋅s1=0 | degree=2 The first two constraints ensure that the value in s0 and s1 are binary, and the third constraint ensures the correctness of the boolean AND operation. The effect on the rest of the stack is: Left shift starting from position 2.","breadcrumbs":"Design » Operand stack » Field operations » AND","id":"162","title":"AND"},"163":{"body":"Assume a and b are binary values at the top of the stack. The OR operation computes c←(a∨b) The diagram below illustrates this graphically. or Stack transition for this operation must satisfy the following constraints: si2−si=0 for i∈{0,1} | degree=2 s0′−(s1+s0−s1⋅s0)=0 | degree=2 The first two constraints ensure that the value in s0 and s1 are binary, and the third constraint ensures the correctness of the boolean OR operation. The effect on the rest of the stack is: Left shift starting from position 2.","breadcrumbs":"Design » Operand stack » Field operations » OR","id":"163","title":"OR"},"164":{"body":"Assume a and b are the elements at the top of the stack. The EQ operation computes c such that c=1 if a=b, and 0 otherwise. The diagram below illustrates this graphically. eq Stack transition for this operation must satisfy the following constraints: s0′⋅(s0−s1)=0 | degree=2 s0′−(1−(s0−s1)⋅h0)=0 | degree=2 To satisfy the above constraints, the prover must populate the value of helper register h0 as follows: If s0=s1, set h0=s0−s11. Otherwise, set h0 to any value (e.g., 0). The effect on the rest of the stack is: Left shift starting from position 2.","breadcrumbs":"Design » Operand stack » Field operations » EQ","id":"164","title":"EQ"},"165":{"body":"Assume a is the element at the top of the stack. The EQZ operation computes b such that b=1 if a=0, and 0 otherwise. The diagram below illustrates this graphically. eqz Stack transition for this operation must satisfy the following constraints: s0′⋅s0=0 | degree=2 s0′−(1−s0⋅h0)=0 | degree=2 To satisfy the above constraints, the prover must populate the value of helper register h0 as follows: If s0=0, set h0=s01. Otherwise, set h0 to any value (e.g., 0). The effect on the rest of the stack is: No change starting from position 1.","breadcrumbs":"Design » Operand stack » Field operations » EQZ","id":"165","title":"EQZ"},"166":{"body":"The EXPACC operation pops top 4 elements from the top of the stack, performs a single round of exponent aggregation, and pushes the resulting 4 values onto the stack. The diagram below illustrates this graphically. expacc Stack transition for this operation must satisfy the following constraints: bit should be a binary. s0′2−s0′=0 | degree=2 The exp in the next frame should be the square of the exp in the current frame. s1′−s12=0 | degree=2 The value val in the helper register is computed correctly using the bit and exp in next and current frame respectively. h0−((s1−1)∗s0′+1)=0 | degree=2 The acc in the next frame is the product of val and acc in the current frame. s2′−s2∗h0=0 | degree=2 b in the next frame is the right shift of b in the current frame. s3′−(s3∗2+s0′)=0 | degree=1 The effect on the rest of the stack is: No change starting from position 4.","breadcrumbs":"Design » Operand stack » Field operations » EXPACC","id":"166","title":"EXPACC"},"167":{"body":"The EXT2MUL operation pops top 4 values from the top of the stack, performs mulitplication between the two extension field elements, and pushes the resulting 4 values onto the stack. The diagram below illustrates this graphically. ext2mul Stack transition for this operation must satisfy the following constraints: The first stack element should be unchanged in the next frame. s0′−s0=0 | degree=1 The second stack element should be unchanged in the next frame. s1′−s1=0 | degree=1 The third stack element should satisfy the following constraint. s2′−(s0+s1)⋅(s2+s3)+s0⋅s2=0 | degree=2 The fourth stack element should satisfy the following constraint. s3′−s1⋅s3+2⋅s0⋅s2=0 | degree=2 The effect on the rest of the stack is: No change starting from position 4.","breadcrumbs":"Design » Operand stack » Field operations » EXT2MUL","id":"167","title":"EXT2MUL"},"168":{"body":"In this section we describe semantics and AIR constraints of operations over u32 values (i.e., 32-bit unsigned integers) as they are implemented in Miden VM.","breadcrumbs":"Design » Operand stack » u32 operations » u32 Operations","id":"168","title":"u32 Operations"},"169":{"body":"Most operations described below require some number of 16-bit range checks (i.e., verifying that the value of a field element is smaller than 216). The number of required range checks varies between 2 and 4, depending on the operation. However, to simplify the constraint system, we force each relevant operation to consume exactly 4 range checks. To perform these range checks, the prover puts the values to be range-checked into helper registers h0,...,h3, and then divides the range checker bus column brange by a randomized product of these values. This operation is enforced via the following constraint: brange′⋅(α0+h0)⋅(α0+h1)⋅(α0+h2)⋅(α0+h3)=brange | degree=5 The above is just a partial constraint as it does not show the range checker's part of the constraint, which multiplies the required values into the bus column. It also omits the selector flag which is used to turn this constraint on only when executing relevant operations.","breadcrumbs":"Design » Operand stack » u32 operations » Range checks","id":"169","title":"Range checks"},"17":{"body":"As described here the Miden VM can consume public and secret inputs. Public inputs: operand_stack - can be supplied to the VM to initialize the stack with the desired values before a program starts executing. There is no limit on the number of stack inputs that can be initialized in this way, although increasing the number of public inputs increases the cost to the verifier. Secret (or nondeterministic) inputs: advice_stack - can be supplied to the VM. There is no limit on how much data the advice provider can hold. This is provided as a string array where each string entry represents a field element. advice_map - is supplied as a map of 64-character hex keys, each mapped to an array of numbers. The hex keys are interpreted as 4 field elements and the arrays of numbers are interpreted as arrays of field elements. merkle_store - the Merkle store is container that allows the user to define merkle_tree and sparse_merkle_tree data structures. merkle_tree - is supplied as an array of 64-character hex values where each value represents a leaf (4 elements) in the tree. sparse_merkle_tree - is supplied an an array of tuples of the form (number, 64-character hex string). The number represents the leaf index and the hex string represents the leaf value (4 elements). Check out the comparison example to see how secret inputs work. After a program finishes executing, the elements that remain on the stack become the outputs of the program, along with the overflow addresses (overflow_addrs) that are required to reconstruct the stack overflow table .","breadcrumbs":"Introduction » Usage » Inputs","id":"17","title":"Inputs"},"170":{"body":"Another primitive which is required by most of the operations described below is checking whether four 16-bit values form a valid field element. Assume t0, t1, t2, and t3 are known to be 16-bit values, and we want to verify that 248⋅t3+232⋅t2+216⋅t1+t0 is a valid field element. For simplicity, let's denote: vhi=216⋅t3+t2vlo=216⋅t1+t0 We can then impose the following constraint to verify element validity: (1−m⋅(232−1−vhi))⋅vlo=0 | degree=3 Where m is a value set non-deterministically by the prover. The above constraint should hold only if either of the following hold: vlo=0 vhi=232−1 To satisfy the latter equation, the prover needs to set m=(232−1−vhi)−1, which is possible only when vhi=232−1. This constraint is sufficient because modulus 264−232+1 in binary representation is 32 ones, followed by 31 zeros, followed by a single one: 1111111111111111111111111111111100000000000000000000000000000001 This implies that the largest possible 64-bit value encoding a valid field element would be 32 ones, followed by 32 zeros: 1111111111111111111111111111111100000000000000000000000000000000 Thus, for a 64-bit value to encode a valid field element, either the lower 32 bits must be all zeros, or the upper 32 bits must not be all ones (which is 232−1).","breadcrumbs":"Design » Operand stack » u32 operations » Checking element validity","id":"170","title":"Checking element validity"},"171":{"body":"Assume a is the element at the top of the stack. The U32SPLIT operation computes (b,c)←a, where b contains the lower 32 bits of a, and c contains the upper 32 bits of a. The diagram below illustrates this graphically. u32split To facilitate this operation, the prover sets values in h0,...,h3 to 16-bit limbs of a with h0 being the least significant limb. Thus, stack transition for this operation must satisfy the following constraints: s0=248⋅h3+232⋅h2+216⋅h1+h0 | degree=1 s1′=216⋅h1+h0 | degree=1 s0′=216⋅h3+h2 | degree=1 In addition to the above constraints, we also need to verify that values in h0,...,h3 are smaller than 216, which we can do using 16-bit range checks as described previously . Also, we need to make sure that values in h0,...,h3, when combined, form a valid field element, which we can do by putting a nondeterministic value m into helper register h4 and using the technique described here . The effect of this operation on the rest of the stack is: Right shift starting from position 1.","breadcrumbs":"Design » Operand stack » u32 operations » U32SPLIT","id":"171","title":"U32SPLIT"},"172":{"body":"Assume a and b are the elements at the top of the stack. The U32ASSERT2 verifies that both a and b are smaller than 232. The diagram below illustrates this graphically. u32assert2 To facilitate this operation, the prover sets values in h0 and h1 to low and high 16-bit limbs of a, and values in h2 and h3 to to low and high 16-bit limbs of b. Thus, stack transition for this operation must satisfy the following constraints: s0′=216⋅h3+h2 | degree=1 s1′=216⋅h1+h0 | degree=1 In addition to the above constraints, we also need to verify that values in h0,...,h3 are smaller than 216, which we can do using 16-bit range checks as described previously . The effect of this operation on the rest of the stack is: No change starting from position 0 - i.e., the state of the stack does not change.","breadcrumbs":"Design » Operand stack » u32 operations » U32ASSERT2","id":"172","title":"U32ASSERT2"},"173":{"body":"Assume a and b are the values at the top of the stack which are known to be smaller than 232. The U32ADD operation computes (c,d)←a+b, where c contains the low 32-bits of the result, and d is the carry bit. The diagram below illustrates this graphically. u32add To facilitate this operation, the prover sets values in h0, h1, and h2 to 16-bit limbs of a+b with h0 being the least significant limb. Value in h3 is set to 0. Thus, stack transition for this operation must satisfy the following constraints: s0+s1=232⋅h2+216⋅h1+h0 | degree=1 s0′=h2 | degree=1 s1′=216⋅h1+h0 | degree=1 In addition to the above constraints, we also need to verify that values in h0,...,h3 are smaller than 216, which we can do using 16-bit range checks as described previously . The effect of this operation on the rest of the stack is: No change starting from position 2.","breadcrumbs":"Design » Operand stack » u32 operations » U32ADD","id":"173","title":"U32ADD"},"174":{"body":"Assume a, b, c are the values at the top of the stack which are known to be smaller than 232. The U32ADD3 operation computes (d,e)←a+b+c, where c and d contains the low and the high 32-bits of the result respectively. The diagram below illustrates this graphically. u32add3 To facilitate this operation, the prover sets values in h0, h1, and h2 to 16-bit limbs of a+b+c with h0 being the least significant limb. Value in h3 is set to 0. Thus, stack transition for this operation must satisfy the following constraints: s0+s1+s2=232⋅h2+216⋅h1+h0 | degree=1 s0′=h2 | degree=1 s1′=216⋅h1+h0 | degree=1 In addition to the above constraints, we also need to verify that values in h0,...,h3 are smaller than 216, which we can do using 16-bit range checks as described previously . The effect of this operation on the rest of the stack is: Left shift starting from position 3.","breadcrumbs":"Design » Operand stack » u32 operations » U32ADD3","id":"174","title":"U32ADD3"},"175":{"body":"Assume a and b are the values at the top of the stack which are known to be smaller than 232. The U32SUB operation computes (c,d)←a−b, where c contains the 32-bit result in two's complement, and d is the borrow bit. The diagram below illustrates this graphically. u32sub To facilitate this operation, the prover sets values in h0 and h1 to the low and the high 16-bit limbs of a−b respectively. Values in h2 and h3 are set to 0. Thus, stack transition for this operation must satisfy the following constraints: s1=s0+s1′+232⋅s0′ | degree=1 s0′2−s0′=0 | degree=2 s1′=216⋅h1+h0 | degree=1 In addition to the above constraints, we also need to verify that values in h0,...,h3 are smaller than 216, which we can do using 16-bit range checks as described previously . The effect of this operation on the rest of the stack is: No change starting from position 2.","breadcrumbs":"Design » Operand stack » u32 operations » U32SUB","id":"175","title":"U32SUB"},"176":{"body":"Assume a and b are the values at the top of the stack which are known to be smaller than 232. The U32MUL operation computes (c,d)←a⋅b, where c and d contain the low and the high 32-bits of the result respectively. The diagram below illustrates this graphically. u32mul To facilitate this operation, the prover sets values in h0,...,h3 to 16-bit limbs of a⋅b with h0 being the least significant limb. Thus, stack transition for this operation must satisfy the following constraints: s0⋅s1=248⋅h3+232⋅h2+216⋅h1+h0 | degree=2 s1′=216⋅h1+h0 | degree=1 s0′=216⋅h3+h2 | degree=1 In addition to the above constraints, we also need to verify that values in h0,...,h3 are smaller than 216, which we can do using 16-bit range checks as described previously . Also, we need to make sure that values in h0,...,h3, when combined, form a valid field element, which we can do by putting a nondeterministic value m into helper register h4 and using the technique described here . The effect of this operation on the rest of the stack is: No change starting from position 2.","breadcrumbs":"Design » Operand stack » u32 operations » U32MUL","id":"176","title":"U32MUL"},"177":{"body":"Assume a, b, c are the values at the top of the stack which are known to be smaller than 232. The U32MADD operation computes (d,e)←a+b⋅c, where c and d contains the low and the high 32-bits of a+b⋅c. The diagram below illustrates this graphically. u32madd To facilitate this operation, the prover sets values in h0,...,h3 to 16-bit limbs of a+b⋅c with h0 being the least significant limb. Thus, stack transition for this operation must satisfy the following constraints: s0⋅s1+s2=248⋅h3+232⋅h2+216⋅h1+h0 | degree=2 s1′=216⋅h1+h0 | degree=1 s0′=216⋅h3+h2 | degree=1 In addition to the above constraints, we also need to verify that values in h0,...,h3 are smaller than 216, which we can do using 16-bit range checks as described previously . Also, we need to make sure that values in h0,...,h3, when combined, form a valid field element, which we can do by putting a nondeterministic value m into helper register h4 and using the technique described here . Note : that the above constraints guarantee the correctness of the operation iff a+b⋅c cannot overflow field modules (which is the case for the field with modulus 264−232+1). The effect of this operation on the rest of the stack is: Left shift starting from position 3.","breadcrumbs":"Design » Operand stack » u32 operations » U32MADD","id":"177","title":"U32MADD"},"178":{"body":"Assume a and b are the values at the top of the stack which are known to be smaller than 232. The U32DIV operation computes (c,d)←a/b, where c contains the quotient and d contains the remainder. The diagram below illustrates this graphically. u32div To facilitate this operation, the prover sets values in h0 and h1 to 16-bit limbs of a−c, and values in h2 and h3 to 16-bit limbs of b−d−1. Thus, stack transition for this operation must satisfy the following constraints: s1=s0⋅s1′+s0′ | degree=2 s1−s1′=216⋅h1+h0 | degree=1 s0−s0′−1=216⋅h2+h3 | degree=1 The second constraint enforces that s1′≤s1, while the third constraint enforces that s0′216), we can do over 4n arbitrary 16-bit range-checks. For short traces (25> In order to add a breakpoint, the user should insert a breakpoint instruction into the MASM file. This will generate a Noop operation that will be decorated with the debug break configuration. This is a provisory solution until the source mapping is implemented. The following example will halt on the third instruction of foo: proc.foo dup dup.2 breakpoint swap add.1\nend begin exec.foo\nend","breadcrumbs":"Development tooling » Debugger » Miden Debugger","id":"23","title":"Miden Debugger"},"230":{"body":"Some chiplets require the use of a virtual table to maintain and enforce the correctness of their internal state. Because the length of these virtual tables does not exceed the length of the chiplets themselves, a single virtual table called vtchip can be shared by all chiplets. Currently, the chiplets virtual table combines two virtual tables: the hash chiplet's sibling table the kernel ROM chiplet's kernel procedure table To combine these correctly, the running product column for this table must be constrained not only at the beginning and the end of the trace, but also where the hash chiplet ends and where the kernel ROM chiplet begins. These positions can be identified using the chiplet selector columns.","breadcrumbs":"Design » Chiplets » Chiplets virtual table","id":"230","title":"Chiplets virtual table"},"231":{"body":"The expected boundary values for each chiplet's portion of the virtual table must be enforced. This can be done as follows. For the sibling table to be properly constrained, the value of the running product column must be 1 when the sibling table starts and finishes. This can be achieved by: enforcing a boundary constraint for vtchip=1 at the first row using the the following transition constraint to enforce that the value is once again 1 at the last cycle of the hash chiplet. (s0′−s0)⋅(1−vtchip)=0 | degree=2 For the kernel procedure table to be properly constrained, the value must be 1 when it starts, and it must be equal to the product of all of the kernel ROM procedures when it finishes. This can be achieved by: enforcing a boundary constraint against the last row for the value of all of the kernel ROM procedures using the following transition constraint to enforce that when the active chiplet changes to the kernel ROM chiplet the value is 1. s0⋅s1⋅(s2′−s2)⋅(1−vtchip′)=0 | degree=4","breadcrumbs":"Design » Chiplets » Chiplets virtual table constraints","id":"231","title":"Chiplets virtual table constraints"},"232":{"body":"Miden VM \"offloads\" all hash-related computations to a separate hash processor . This chiplet supports executing the Rescue Prime Optimized hash function (or rather a specific instantiation of it) in the following settings: A single permutation of Rescue Prime Optimized. A simple 2-to-1 hash. A linear hash of n field elements. Merkle path verification. Merkle root update. The chiplet can be thought of as having a small instruction set of 11 instructions. These instructions are listed below, and examples of how these instructions are used by the chiplet are described in the following sections. Instruction Description HR Executes a single round of the VM's native hash function. All cycles which are not one less than a multiple of 8 execute this instruction. That is, the chiplet executes this instruction on cycles 0,1,2,3,4,5,6, but not 7, and then again, 8,9,10,11,12,13,14, but not 15 etc. BP Initiates computation of a single permutation, a 2-to-1 hash, or a linear hash of many elements. This instruction can be executed only on cycles which are multiples of 8, and it can also be executed concurrently with an HR instruction. MP Initiates Merkle path verification computation. This instruction can be executed only on cycles which are multiples of 8, and it can also be executed concurrently with an HR instruction. MV Initiates Merkle path verification for the \"old\" node value during Merkle root update computation. This instruction can be executed only on cycles which are multiples of 8, and it can also be executed concurrently with an HR instruction. MU Initiates Merkle path verification for the \"new\" node value during Merkle root update computation. This instruction can be executed only on cycles which are multiples of 8, and it can also be executed concurrently with an HR instruction. HOUT Returns the result of the currently running computation. This instruction can be executed only on cycles which are one less than a multiple of 8 (e.g. 7, 15 etc.). SOUT Returns the whole hasher state. This instruction can be executed only on cycles which are one less than a multiple of 8, and only if the computation was started using BP instruction. ABP Absorbs a new set of elements into the hasher state when computing a linear hash of many elements. This instruction can be executed only on cycles which are one less than a multiple of 8, and only if the computation was started using BP instruction. MPA Absorbs the next Merkle path node into the hasher state during Merkle path verification computation. This instruction can be executed only on cycles which are one less than a multiple of 8, and only if the computation was started using MP instruction. MVA Absorbs the next Merkle path node into the hasher state during Merkle path verification for the \"old\" node value during Merkle root update computation. This instruction can be executed only on cycles which are one less than a multiple of 8, and only if the computation was started using MV instruction. MUA Absorbs the next Merkle path node into the hasher state during Merkle path verification for the \"new\" node value during Merkle root update computation. This instruction can be executed only on cycles which are one less than a multiple of 8, and only if the computation was started using Mu instruction.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Hash chiplet","id":"232","title":"Hash chiplet"},"233":{"body":"Execution trace table of the chiplet consists of 16 trace columns and 3 periodic columns. The structure of the table is such that a single permutation of the hash function can be computed using 8 table rows. The layout of the table is illustrated below. hash_execution_trace The meaning of the columns is as follows: Three periodic columns k0, k1, and k2 are used to help select the instruction executed at a given row. All of these columns contain patterns which repeat every 8 rows. For k0 the pattern is 7 zeros followed by 1 one, helping us identify the last row in the cycle. For k1 the pattern is 6 zeros, 1 one, and 1 zero, which can be used to identify the second-to-last row in a cycle. For k2 the pattern is 1 one followed by 7 zeros, which can identify the first row in the cycle. Three selector columns s0, s1, and s2. These columns can contain only binary values (ones or zeros), and they are also used to help select the instruction to execute at a given row. Twelve hasher state columns h0,...,h11. These columns are used to hold the hasher state for each round of the hash function permutation. The state is laid out as follows: The first four columns (h0,...,h3) are reserved for capacity elements of the state. When the state is initialized for hash computations, h0 should be set to 0 if the number of elements to be hashed is a multiple of the rate width (8). Otherwise, h0 should be set to 1. h1 should be set to the domain value if a domain has been provided (as in the case of control block hashing ). All other capacity elements should be set to 0's. The next eight columns (h4,...,h11) are reserved for the rate elements of the state. These are used to absorb the values to be hashed. Once the permutation is complete, hash output is located in the first four rate columns (h4,...,h7). One index column i. This column is used to help with Merkle path verification and Merkle root update computations. In addition to the columns described above, the chiplet relies on two running product columns which are used to facilitate multiset checks (similar to the ones described here ). These columns are: bchip - which is used to tie the chiplet table with the main VM's stack and decoder. That is, values representing inputs consumed by the chiplet and outputs produced by the chiplet are multiplied into bchip, while the main VM stack (or decoder) divides them out of bchip. Thus, if the sets of inputs and outputs between the main VM stack and hash chiplet are the same, the value of bchip should be equal to 1 at the start and the end of the execution trace. p1 - which is used to keep track of the sibling table used for Merkle root update computations. Specifically, when a root for the old leaf value is computed, we add an entry for all sibling nodes to the table (i.e., we multiply p1 by the values representing these entries). When the root for the new leaf value is computed, we remove the entries for the nodes from the table (i.e., we divide p1 by the value representing these entries). Thus, if both computations used the same set of sibling nodes (in the same order), the sibling table should be empty by the time Merkle root update procedure completes (i.e., the value of p1 would be 1).","breadcrumbs":"Design » Chiplets » Hash Chiplet » Chiplet trace","id":"233","title":"Chiplet trace"},"234":{"body":"As mentioned above, chiplet instructions are encoded using a combination of periodic and selector columns. These columns can be used to compute a binary flag for each instruction. Thus, when a flag for a given instruction is set to 1, the chiplet executes this instruction. Formulas for computing instruction flags are listed below. Flag Value Notes frpr 1−k0 Set to 1 on the first 7 steps of every 8-step cycle. fbp k2⋅s0⋅(1−s1)⋅(1−s2) Set to 1 when selector flags are (1,0,0) on rows which are multiples of 8. fmp k2⋅s0⋅(1−s1)⋅s2 Set to 1 when selector flags are (1,0,1) on rows which are multiples of 8. fmv k2⋅s0⋅s1⋅(1−s2) Set to 1 when selector flags are (1,1,0) on rows which are multiples of 8. fmu k2⋅s0⋅s1⋅s2 Set to 1 when selector flags are (1,1,1) on rows which are multiples of 8. fhout k0⋅(1−s0)⋅(1−s1)⋅(1−s2) Set to 1 when selector flags are (0,0,0) on rows which are 1 less than a multiple of 8. fsout k0⋅(1−s0)⋅(1−s1)⋅s2 Set to 1 when selector flags are (0,0,1) on rows which are 1 less than a multiple of 8. fabp k0⋅s0⋅(1−s1)⋅(1−s2) Set to 1 when selector flags are (1,0,0) on rows which are 1 less than a multiple of 8. fmpa k0⋅s0⋅(1−s1)⋅s2 Set to 1 when selector flags are (1,0,1) on rows which are 1 less than a multiple of 8. fmva k0⋅s0⋅s1⋅(1−s2) Set to 1 when selector flags are (1,1,0) on rows which are 1 less than a multiple of 8. fmua k0⋅s0⋅s1⋅s2 Set to 1 when selector flags are (1,1,1) on rows which are 1 less than a multiple of 8. A few additional notes about flag values: With the exception of frpr, all flags are mutually exclusive. That is, if one flag is set to 1, all other flats are set to 0. With the exception of frpr, computing flag values involves 3 multiplications, and thus the degree of these flags is 4. We can also define a flag fout=k0⋅(1−s0)⋅(1−s1). This flag will be set to 1 when either fhout=1 or fsout=1 in the current row. We can define a flag fout′=k1⋅(1−s0′)⋅(1−s1′). This flag will be set to 1 when either fhout=1 or fsout=1 in the next row. We also impose the following restrictions on how values in selector columns can be updated: Values in columns s1 and s2 must be copied over from one row to the next, unless fout=1 or fout′=1 indicating the hout or sout flag is set for the current or the next row. Value in s0 must be set to 1 if fout=1 for the previous row, and to 0 if any of the flags fabp, fmpa, fmva, or fmua are set to 1 for the previous row. The above rules ensure that we must finish one computation before starting another, and we can't change the type of the computation before the computation is finished.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Instruction flags","id":"234","title":"Instruction flags"},"235":{"body":"","breadcrumbs":"Design » Chiplets » Hash Chiplet » Computation examples","id":"235","title":"Computation examples"},"236":{"body":"Computing a single permutation of Rescue Prime Optimized hash function involves the following steps: Initialize hasher state with 12 field elements. Apply Rescue Prime Optimized permutation. Return the entire hasher state as output. The chiplet accomplishes the above by executing the following instructions: [BP, HR] // init state and execute a hash round (concurrently)\nHR HR HR HR HR HR // execute 6 more hash rounds\nSOUT // return the entire state as output Execution trace for this computation would look as illustrated below. hash_1_permutation_trace In the above {a0,...,a11} is the input state of the hasher, and {b0,...,b11} is the output state of the hasher.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Single permutation","id":"236","title":"Single permutation"},"237":{"body":"Computing a 2-to-1 hash involves the following steps: Initialize hasher state with 8 field elements, setting the second capacity element to domain if the domain is provided (as in the case of control block hashing ) or else 0, and the remaining capacity elements to 0. Apply Rescue Prime Optimized permutation. Return elements [4,8) of the hasher state as output. The chiplet accomplishes the above by executing the following instructions: [BP, HR] // init state and execute a hash round (concurrently)\nHR HR HR HR HR HR // execute 6 more hash rounds\nHOUT // return elements 4, 5, 6, 7 of the state as output Execution trace for this computation would look as illustrated below. hash_2_to_1_hash In the above, we compute the following: {c0,c1,c2,c3}←hash({a0,a1,a2,a3},{b0,b1,b2,b3})","breadcrumbs":"Design » Chiplets » Hash Chiplet » Simple 2-to-1 hash","id":"237","title":"Simple 2-to-1 hash"},"238":{"body":"Computing a linear hash of n elements consists of the following steps: Initialize hasher state with the first 8 elements, setting the first capacity register to 0 if n is a multiple of the rate width (8) or else 1, and the remaining capacity elements to 0. Apply Rescue Prime Optimized permutation. Absorb the next set of elements into the state (up to 8 elements), while keeping capacity elements unchanged. Repeat steps 2 and 3 until all n elements have been absorbed. Return elements [4,8) of the hasher state as output. The chiplet accomplishes the above by executing the following instructions (for hashing 16 elements): [BP, HR] // init state and execute a hash round (concurrently)\nHR HR HR HR HR HR // execute 6 more hash rounds\nABP // absorb the next set of elements into the state\nHR HR HR HR HR HR HR // execute 7 hash rounds\nHOUT // return elements 4, 5, 6, 7 of the state as output Execution trace for this computation would look as illustrated below. hash_linear_hash_n In the above, the value absorbed into hasher state between rows 7 and 8 is the delta between values ti and si. Thus, if we define bi=ti−si for i∈[0,8), the above computes the following: {r0,r1,r2,r3}←hash(a0,...,a7,b0,...,b7)","breadcrumbs":"Design » Chiplets » Hash Chiplet » Linear hash of n elements","id":"238","title":"Linear hash of n elements"},"239":{"body":"Verifying a Merkle path involves the following steps: Initialize hasher state with the leaf and the first node of the path, setting all capacity elements to 0s. a. Also, initialize the index register to the leaf's index value. Apply Rescue Prime Optimized permutation. a. Make sure the index value doesn't change during this step. Copy the result of the hash to the next row, and absorb the next node of the Merkle path into the hasher state. a. Remove a single bit from the index, and use it to determine how to place the copied result and absorbed node in the state. Repeat steps 2 and 3 until all nodes of the Merkle path have been absorbed. Return elements [4,8) of the hasher state as output. a. Also, make sure the index value has been reduced to 0. The chiplet accomplishes the above by executing the following instructions (for Merkle tree of depth 3): [MP, HR] // init state and execute a hash round (concurrently)\nHR HR HR HR HR HR // execute 6 more hash rounds\nMPA // copy result & absorb the next node into the state\nHR HR HR HR HR HR HR // execute 7 hash rounds\nHOUT // return elements 4, 5, 6, 7 of the state as output Suppose we have a Merkle tree as illustrated below. This Merkle tree has 4 leaves, each of which consists of 4 field elements. For example, leaf a consists of elements a0,a1,a2,a3, leaf be consists of elements b0,b1,b2,b3 etc. hash_merkle_tree If we wanted to verify that leaf d is in fact in the tree, we'd need to compute the following hashes: r←hash(e,hash(c,d)) And if r=g, we can be convinced that d is in fact in the tree at position 3. Execution trace for this computation would look as illustrated below. hash_merkle_tree_trace In the above, the prover provides values for nodes c and e non-deterministically.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Verify Merkle path","id":"239","title":"Verify Merkle path"},"24":{"body":"The Miden Read–eval–print loop (REPL) is a Miden shell that allows for quick and easy debugging of Miden assembly. After the REPL gets initialized, you can execute any Miden instruction, undo executed instructions, check the state of the stack and memory at a given point, and do many other useful things! When the REPL is exited, a history.txt file is saved. One thing to note is that all the REPL native commands start with an ! to differentiate them from regular assembly instructions. Miden REPL can be started via the CLI repl command like so: ./target/optimized/miden repl","breadcrumbs":"Development tooling » REPL » Miden REPL","id":"24","title":"Miden REPL"},"240":{"body":"Updating a node in a Merkle tree (which also updates the root of the tree) can be simulated by verifying two Merkle paths: the path that starts with the old leaf and the path that starts with the new leaf. Suppose we have the same Merkle tree as in the previous example, and we want to replace node d with node d′. The computations we'd need to perform are: r←hash(e,hash(c,d))r′←hash(e,hash(c,d′)) Then, as long as r=g, and the same values were used for c and e in both computations, we can be convinced that the new root of the tree is r′. The chiplet accomplishes the above by executing the following instructions: // verify the old merkle path\n[MV, HR] // init state and execute a hash round (concurrently)\nHR HR HR HR HR HR // execute 6 more hash rounds\nMPV // copy result & absorb the next node into the state\nHR HR HR HR HR HR HR // execute 7 hash rounds\nHOUT // return elements 4, 5, 6, 7 of the state as output // verify the new merkle path\n[MU, HR] // init state and execute a hash round (concurrently)\nHR HR HR HR HR HR // execute 6 more hash rounds\nMPU // copy result & absorb the next node into the state\nHR HR HR HR HR HR HR // execute 7 hash rounds\nHOUT // return elements 4, 5, 6, 7 of the state as output The semantics of MV and MU instructions are similar to the semantics of MP instruction from the previous example (and MVA and MUA are similar to MPA) with one important difference: MV* instructions add the absorbed node (together with its index in the tree) to permutation column p1, while MU* instructions remove the absorbed node (together with its index in the tree) from p1. Thus, if the same nodes were used during both Merkle path verification, the state of p1 should not change. This mechanism is used to ensure that the same internal nodes were used in both computations.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Update Merkle root","id":"240","title":"Update Merkle root"},"241":{"body":"When describing AIR constraints, we adopt the following notation: for column x, we denote the value in the current row simply as x, and the value in the next row of the column as x′. Thus, all transition constraints described in this note work with two consecutive rows of the execution trace.","breadcrumbs":"Design » Chiplets » Hash Chiplet » AIR constraints","id":"241","title":"AIR constraints"},"242":{"body":"For selector columns, first we must ensure that only binary values are allowed in these columns. This can be done with the following constraints: s02−s0=0 | degree=2s12−s1=0 | degree=2s22−s2=0 | degree=2 Next, we need to make sure that unless fout=1 or fout′=1, the values in columns s1 and s2 are copied over to the next row. This can be done with the following constraints: (s1′−s1)⋅(1−fout′)⋅(1−fout)=0 | degree=7(s2′−s2)⋅(1−fout′)⋅(1−fout)=0 | degree=7 Next, we need to enforce that if any of fabp,fmpa,fmva,fmua flags is set to 1, the next value of s0 is 0. In all other cases, s0 should be unconstrained. These flags will only be set for rows that are 1 less than a multiple of 8 (the last row of each cycle). This can be done with the following constraint: s0′⋅(fabp+fmpa+fmva+fmua)=0 | degree=5 Lastly, we need to make sure that no invalid combinations of flags are allowed. This can be done with the following constraints: k0⋅(1−s0)⋅s1=0 | degree=3 The above constraints enforce that on every step which is one less than a multiple of 8, if s0=0, then s1 must also be set to 0. Basically, if we set s0=0, then we must make sure that either fhout=1 or fsout=1.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Selector columns constraints","id":"242","title":"Selector columns constraints"},"243":{"body":"Node index column i is relevant only for Merkle path verification and Merkle root update computations, but to simplify the overall constraint system, the same constraints will be imposed on this column for all computations. Overall, we want values in the index column to behave as follows: When we start a new computation, we should be able to set i to an arbitrary value. When a computation is finished, value in i must be 0. When we absorb a new node into the hasher state we must shift the value in i by one bit to the right. In all other cases value in i should not change. A shift by one bit to the right can be described with the following equation: i=2⋅i′+b, where b is the value of the bit which is discarded. Thus, as long as b is a binary value, the shift to the right is performed correctly, and this can be enforced with the following constraint: b2−b=0 Since we want to enforce this constraint only when a new node is absorbed into the hasher state, we'll define a flag for when this should happen as follows: fan=fmp+fmv+fmu+fmpa+fmva+fmua And then the full constraint would looks as follows: fan⋅(b2−b)=0 | degree=6 Next, to make sure when a computation is finished i=0, we can use the following constraint: fout⋅i=0 | degree=4 Finally, to make sure that the value in i is copied over to the next row unless we are absorbing a new row or the computation is finished, we impose the following constraint: (1−fan−fout)⋅(i′−i)=0 | degree=5 To satisfy these constraints for computations not related to Merkle paths (i.e., 2-to-1 hash and liner hash of elements), we can set i=0 at the start of the computation. This guarantees that i will remain 0 until the end of the computation.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Node index constraints","id":"243","title":"Node index constraints"},"244":{"body":"Hasher state columns h0,...,h11 should behave as follows: For the first 7 row of every 8-row cycle (i.e., when k0=0), we need to apply Rescue Prime Optimized round constraints to the hasher state. For brevity, we omit these constraints from this note. On the 8th row of every 8-row cycle, we apply the constraints based on which transition flag is set as described in the table below. Specifically, when absorbing the next set of elements into the state during linear hash computation (i.e., fabp=1), the first 4 elements (the capacity portion) are carried over to the next row. For j∈[0,4) this can be described as follows: fabp⋅(hj′−hj)=0 | degree=5 When absorbing the next node during Merkle path computation (i.e., fmp+fmv+fmu=1), the result of the previous hash (h4,...,h7) are copied over either to (h4′,...,h7′) or to (h8′,...,h11′) depending on the value of b, which is defined in the same way as in the previous section. For j∈[0,4) this can be described as follows: (fmp+fmv+fmu)⋅((1−b)⋅(hj+4′−hj+4)+b⋅(hj+8′−hj+4))=0 | degree=6 Note, that when a computation is completed (i.e., fout=1), the next hasher state is unconstrained.","breadcrumbs":"Design » Chiplets » Hash Chiplet » Hasher state constraints","id":"244","title":"Hasher state constraints"},"245":{"body":"In this sections we describe constraints which enforce updates for multiset check columns bchip and p1. These columns can be updated only on rows which are multiples of 8 or 1 less than a multiple of 8. On all other rows the values in the columns remain the same. To simplify description of the constraints, we define the following variables. Below, we denote random values sent by the verifier after the prover commits to the main execution trace as α0, α1, α2 etc. m=oplabel+24⋅k0+25⋅k2vh=α0+α1⋅m+α2⋅(clk+1)+α3⋅iva=j=0∑3(αj+4⋅hj)vb=j=4∑7(αj+4⋅hj)vc=j=8∑11(αj+4⋅hj)vd=j=8∑11(αj⋅hj) In the above: m is a transition label , composed of the operation label and the periodic columns that uniquely identify each transition function. The values in the k0 and k2 periodic columns are included to identify the row in the hash cycle where the operation occurs. They serve to differentiate between operations that share selectors but occur at different rows in the cycle, such as BP, which uses oplinhash at the first row in the cycle to initiatiate a linear hash, and ABP, which uses oplinhash at the last row in the cycle to absorb new elements. vh is a common header which is a combination of the transition label, a unique row address, and the node index. For the unique row address, the clk column from the system component is used, but we add 1, because the system's clk column starts at 0. va, vb, vc are the first, second, and third words (4 elements) of the hasher state. vd is the third word of the hasher state but computed using the same α values as used for the second word. This is needed for computing the value of vleaf below to ensure that the same α values are used for the leaf node regardless of which part of the state the node comes from. Chiplets bus constraints As described previously, the chiplets bus bchip, implemented as a running product column, is used to tie the hash chiplet with the main VM's stack and decoder. When receiving inputs from or returning results to the stack (or decoder), the hash chiplet multiplies bchip by their respective values. On the other side, when sending inputs to the hash chiplet or receiving results from the chiplet, the stack (or decoder) divides bchip by their values. In the section below we describe only the hash chiplet side of the constraints (i.e., multiplying bchip by relevant values). We define the values which are to be multiplied into bchip for each operation as follows: When starting a new simple or linear hash computation (i.e., fbp=1) or when returning the entire state of the hasher (fsout=1), the entire hasher state is included into bchip: vall=vh+va+vb+vc When starting a Merkle path computation (i.e., fmp+fmv+fmu=1), we include the leaf of the path into bchip. The leaf is selected from the state based on value of b (defined as in the previous section): vleaf=vh+(1−b)⋅vb+b⋅vd When absorbing a new set of elements into the state while computing a linear hash (i.e., fabp=1), we include deltas between the last 8 elements of the hasher state (the rate) into bchip: vabp=vh+vb′+vc′−(vb+vc) When a computation is complete (i.e., fhout=1), we include the second word of the hasher state (the result) into bchip: vres=vh+vb Using the above values, we can describe the constraints for updating column bchip as follows. bchip′=bchip⋅((fbp+fsout)⋅vall+(fmp+fmv+fmu)⋅vleaf+fabp⋅vabp+fhout⋅vres+1−(fbp+fmp+fmv+fmu+fabp+fout)) The above constraint reduces to the following under various flag conditions: Condition Applied constraint fbp=1 bchip′=bchip⋅vall fsout=1 bchip′=bchip⋅vall fmp=1 bchip′=bchip⋅vleaf fmv=1 bchip′=bchip⋅vleaf fmu=1 bchip′=bchip⋅vleaf fabp=1 bchip′=bchip⋅vabp fhout=1 bchip′=bchip⋅vres Otherwise bchip′=bchip Note that the degree of the above constraint is 7. Sibling table constraints Note: Although this table is described independently, it is implemented as part of the chiplets virtual table , which combines all virtual tables required by the any of the chiplets into a single master table. As mentioned previously, the sibling table (represented by running column p1) is used to keep track of sibling nodes used during Merkle root update computations. For this computation, we need to enforce the following rules: When computing the old Merkle root, whenever a new sibling node is absorbed into the hasher state (i.e., fmv+fmva=1), an entry for this sibling should be included into p1. When computing the new Merkle root, whenever a new sibling node is absorbed into the hasher state (i.e., fmu+fmua=1), the entry for this sibling should be removed from p1. To simplify the description of the constraints, we use variables vb and vc defined above and define the value representing an entry in the sibling table as follows: vsibling=α0+α3⋅i+b⋅vb+(1−b)⋅vc Using the above value, we can define the constraint for updating p1 as follows: p1′⋅((fmv+fmva)⋅vsibling+1−(fmv+fmva))=p1⋅((fmu+fmua)⋅vsibling+1−(fmu+fmua)) The above constraint reduces to the following under various flag conditions: Condition Applied constraint fmv=1 p1′⋅vsibling=p1 fmva=1 p1′⋅vsibling=p1 fmu=1 p1′=p1⋅vsibling fmua=1 p1′=p1⋅vsibling Otherwise p1′=p1 Note that the degree of the above constraint is 7. To make sure computation of the old Merkle root is immediately followed by the computation of the new Merkle root, we impose the following constraint: (fbp+fmp+fmv)⋅(1−p1)=0 | degree=5 The above means that whenever we start a new computation which is not the computation of the new Merkle root, the sibling table must be empty. Thus, after the hash chiplet computes the old Merkle root, the only way to clear the table is to compute the new Merkle root. Together with boundary constraints enforcing that p1=1 at the first and last rows of the running product column which implements the sibling table, the above constraints ensure that if a node was included into p1 as a part of computing the old Merkle root, the same node must be removed from p1 as a part of computing the new Merkle root. These two boundary constraints are described as part of the chiplets virtual table constraints .","breadcrumbs":"Design » Chiplets » Hash Chiplet » Multiset check constraints","id":"245","title":"Multiset check constraints"},"246":{"body":"In this note we describe how to compute bitwise AND and XOR operations on 32-bit values and the constraints required for proving correct execution. Assume that a and b are field elements in a 64-bit prime field. Assume also that a and b are known to contain values smaller than 232. We want to compute a⊕b→z, where ⊕ is either bitwise AND or XOR, and z is a field element containing the result of the corresponding bitwise operation. First, observe that we can compute AND and XOR relations for single bit values as follows: and(a,b)=a⋅b xor(a,b)=a+b−2⋅a⋅b To compute bitwise operations for multi-bit values, we will decompose the values into individual bits, apply the operations to single bits, and then aggregate the bitwsie results into the final result. To perform this operation we will use a table with 12 columns, and computing a single AND or XOR operation will require 8 table rows. We will also rely on two periodic columns as shown below. bitwise_execution_trace In the above, the columns have the following meanings: Periodic columns k0 and k1. These columns contain values needed to switch various constraint on or off. k0 contains a repeating sequence of a single one, followed by seven zeros. k1 contains a repeating sequence of seven ones, followed by a single zero. Input columns a and b. On the first row of each 8-row cycle, the prover will set values in these columns to the upper 4 bits of the values to which a bitwise operation is to be applied. For all subsequent rows, we will append the next-most-significant 4-bit limb to each value. Thus, by the final row columns a and b will contain the full input values for the bitwise operation. Columns a0, a1, a2, a3, b0, b1, b2, b3 will contain lower 4 bits of their corresponding values. Output column zp. This column represents the value of column z for the prior row. For the first row, it is set to 0. Output column z. This column will be used to aggregate the results of bitwise operations performed over columns a0, a1, a2, a3, b0, b1, b2, b3. By the time we get to the last row in each 8-row cycle, this column will contain the final result.","breadcrumbs":"Design » Chiplets » Bitwise Chiplet » Bitwise chiplet","id":"246","title":"Bitwise chiplet"},"247":{"body":"Let's illustrate the above table on a concrete example. For simplicity, we'll use 16-bit values, and thus, we'll only need 4 rows to complete the operation (rather than 8 for 32-bit values). Let's say a=41851 (b1010_0011_0111_1011) and b=40426 (b1001_1101_1110_1010), then and(a,b)=33130 (b1000_0001_0110_1010). The table for this computation looks like so: a b x0 x1 x2 x3 y0 y1 y2 y3 zp z 10 9 0 1 0 1 1 0 0 1 0 8 163 157 1 1 0 0 1 0 1 1 8 129 2615 2526 1 1 1 0 0 1 1 1 129 2070 41851 40426 1 1 0 1 0 1 0 1 2070 33130 Here, in the first row, we set each of the a and b columns to the value of their most-significant 4-bit limb. The bit columns (a0..a3 and b0..b3) in the first row contain the lower 4 bits of their corresponding values (b1010 and b1001). Column z contains the result of bitwise AND for the upper 4 bits (b1000), while column zp contains that result for the prior row. With every subsequent row, we inject the next-most-significant 4 bits of each value into the bit columns, increase the a and b columns accordingly, and aggregate the result of bitwise AND into the z column, adding it to 24 times the value of z in the previous row. We set column zp to be the value of z in the prior row. By the time we get to the last row, the z column contains the result of the bitwise AND, while columns a and b contain their original values.","breadcrumbs":"Design » Chiplets » Bitwise Chiplet » Example","id":"247","title":"Example"},"248":{"body":"AIR constraints needed to ensure the correctness of the above table are described below. We also add one more column s to the execution trace, to allow us to select between two bitwise operations (U32AND and U32XOR).","breadcrumbs":"Design » Chiplets » Bitwise Chiplet » Constraints","id":"248","title":"Constraints"},"249":{"body":"The Bitwise chiplet supports two operations with the following operation selectors: U32AND: s=0 U32XOR: s=1 The constraints must require that the selectors be binary and stay the same throughout the cycle: s2−s=0 | degree=2 k1⋅(s′−s)=0 | degree=2","breadcrumbs":"Design » Chiplets » Bitwise Chiplet » Selectors","id":"249","title":"Selectors"},"25":{"body":"All Miden instructions mentioned in the Miden Assembly sections are valid. One can either input instructions one by one or multiple instructions in one input. For example, the below two commands will result in the same output. >> push.1\n>> push.2\n>> push.3 push.1 push.2 push.3 To execute a control flow operation, one must write the entire statement in a single line with spaces between individual operations. repeat.20 pow2\nend The above example should be written as follows in the REPL tool: repeat.20 pow2 end","breadcrumbs":"Development tooling » REPL » Miden assembly instruction","id":"25","title":"Miden assembly instruction"},"250":{"body":"We need to make sure that inputs a and b are decomposed correctly into their individual bits. To do this, first, we need to make sure that columns a0, a1, a2, a3, b0, b1, b2, b3, can contain only binary values (0 or 1). This can be accomplished with the following constraints (for i ranging between 0 and 3): ai2−ai=0 | degree=2 bi2−bi=0 | degree=2 Then, we need to make sure that on the first row of every 8-row cycle, the values in the columns a and b are exactly equal to the aggregation of binary values contained in the individual bit columns ai, and bi. This can be enforced with the following constraints: k0⋅(a−i=0∑3(2i⋅ai))=0 | degree=2 k0⋅(b−i=0∑3(2i⋅bi))=0 | degree=2 The above constraints enforce that when k0=1, a=∑i=03(2i⋅ai) and b=∑i=03(2i⋅bi). Lastly, we need to make sure that for all rows in an 8-row cycle except for the last one, the values in a and b columns are increased by the values contained in the individual bit columns ai and bi. Denoting a as the value of column a in the current row, and a′ as the value of column a in the next row, we can enforce these conditions as follows: k1⋅(a′−(a⋅16+i=0∑3(2i⋅ai′)))=0 | degree=2 k1⋅(b′−(b⋅16+i=0∑3(2i⋅bi′)))=0 | degree=2 The above constraints enforce that when k1=1 , a′=16⋅a+∑i=03(2i⋅ai′) and b′=16⋅b+∑i=03(2i⋅bi′).","breadcrumbs":"Design » Chiplets » Bitwise Chiplet » Input decomposition","id":"250","title":"Input decomposition"},"251":{"body":"To ensure correct aggregation of operations over individual bits, first we need to ensure that in the first row, the aggregated output value of the previous row should be 0. k0⋅zp=0 | degree=2 Next, we need to ensure that for each row except the last, the aggregated output value must equal the previous aggregated output value in the next row. k1⋅(z−zp′)=0 | degree=2 Lastly, we need to ensure that for all rows the value in the z column is computed by multiplying the previous output value (from the zp column in the current row) by 16 and then adding it to the bitwise operation applied to the row's set of bits of a and b. The entire constraint must also be multiplied by the operation selector flag to ensure it is only applied for the appropriate operation. For U32AND, this is enforced with the following constraint: (1−s)⋅(z−(zp⋅16+i=0∑3(2i⋅ai⋅bi)))=0 | degree=3 For U32XOR, this is enforced with the following constraint: s⋅(z−(zp⋅16+i=0∑3(2i⋅(ai+bi−2⋅ai⋅bi))))=0 | degree=3","breadcrumbs":"Design » Chiplets » Bitwise Chiplet » Output aggregation","id":"251","title":"Output aggregation"},"252":{"body":"To simplify the notation for describing bitwise constraints on the chiplets bus, we'll first define variable u, which represents how a, b, and z in the execution trace are reduced to a single value. Denoting the random values received from the verifier as α0,α1, etc., this can be achieved as follows. u=α0+α1⋅opbit+α2⋅a+α3⋅b+α4⋅z Where, opbit is the unique operation label of the bitwise operation. The request side of the constraint for the bitwise operation is described in the stack bitwise operation section . To provide the results of bitwise operations to the chiplets bus, we want to include values of a, b and z at the last row of the cycle. First, we'll define another intermediate variable vi. It will include u into the product when k1=0. (ui represents the value of u for row i of the trace.) vi=(1−k1)⋅ui Then, setting m=1−k1, we can compute the permutation product from the bitwise chiplet as follows: i=0∏n(vi⋅mi+1−mi) The above ensures that when 1−k1=0 (which is true for all rows in the 8-row cycle except for the last one), the product does not change. Otherwise, vi gets included into the product. The response side of the bus communication can be enforced with the following constraint: bchip′=bchip⋅(vi⋅mi+1−mi) | degree=4","breadcrumbs":"Design » Chiplets » Bitwise Chiplet » Chiplets bus constraints","id":"252","title":"Chiplets bus constraints"},"253":{"body":"Miden VM supports linear read-write random access memory. This memory is word-addressable, meaning, four values are located at each address, and we can read and write values to/from memory in batches of four. Each value is a field element in a 64-bit prime field with modulus 264−232+1. Memory address can be any field element. In this note we describe the rational for selecting the above design and describe AIR constraints needed to support it. The design makes extensive use of 16-bit range checks. An efficient way of implementing such range checks is described here .","breadcrumbs":"Design » Chiplets » Memory Chiplet » Memory chiplet","id":"253","title":"Memory chiplet"},"254":{"body":"The simplest (and most efficient) alternative to the above design is contiguous write-once memory. To support such memory, we need to allocate just two trace columns as illustrated below. memory_alternative_design In the above, addr column holds memory address, and value column holds the field element representing the value stored at this address. Notice that some rows in this table are duplicated. This is because we need one row per memory access (either read or write operation). In the example above, value b was first stored at memory address 1, and then read from this address. The AIR constraints for this design are very simple. First, we need to ensure that values in the addr column either remain the same or are incremented by 1 as we move from one row to the next. This can be achieved with the following constraint: (a′−a)⋅(a′−a−1)=0 where a is the value in addr column in the current row, and a′ is the value in this column in the next row. Second, we need to make sure that if the value in the addr column didn't change, the value in the value column also remained the same (i.e., a value stored in a given address can only be set once). This can be achieved with the following constraint: (v′−v)⋅(a′−a−1)=0 where v is the value in value column at the current row, and v′ is the value in this column in the next row. In addition to the above constraints we would also need to impose constraints needed for permutation checks, but we omit these constraints here because they are needed for all designs described in this note. As mentioned above, this approach is very efficient: each memory access requires just 2 trace cells.","breadcrumbs":"Design » Chiplets » Memory Chiplet » Alternative designs","id":"254","title":"Alternative designs"},"255":{"body":"Write-once memory is tricky to work with, and many developers may need to climb a steep learning curve before they become comfortable working in this model. Thus, ideally, we'd want to support read-write memory. To do this, we need to introduce additional columns as illustrated below. memory_read_write In the above, we added clk column, which keeps track of the clock cycle at which memory access happened. We also need to differentiate between memory reads and writes. To do this, we now use two columns to keep track of the value: old val contains the value stored at the address before the operation, and new val contains the value after the operation. Thus, if old val and new val are the same, it was a read operation. If they are different, it was a write operation. The AIR constraints needed to support the above structure are as follows. We still need to make sure memory addresses are contiguous: (a′−a)⋅(a′−a−1)=0 Whenever memory address changes, we want to make sure that old val is set to 0 (i.e., our memory is always initialized to 0). This can be done with the following constraint: (a′−a)⋅vold′=0 On the other hand, if memory address doesn't change, we want to make sure that new val in the current row is the same as old val in the next row. This can be done with the following constraint: (1+a−a′)⋅(vnew−vold′)=0 Lastly, we need to make sure that for the same address values in clk column are always increasing. One way to do this is to perform a 16-bit range check on the value of (i′−i−1), where i is the reference to clk column. However, this would mean that memory operations involving the same address must happen within 65536 VM cycles from each other. This limitation would be difficult to enforce statically. To remove this limitation, we need to add two more columns as shown below: memory_limitation_diagram In the above column d0 contains the lower 16 bits of (i′−i−1) while d1 contains the upper 16 bits. The constraint needed to enforces this is as follows: (1+a−a′)⋅((i′−i−1)−(216⋅d1′+d0′))=0 Additionally, we need to apply 16-bit range checks to columns d0 and d1. Overall, the cost of reading or writing a single element is now 6 trace cells and 2 16-bit range-checks.","breadcrumbs":"Design » Chiplets » Memory Chiplet » Read-write memory","id":"255","title":"Read-write memory"},"256":{"body":"Requiring that memory addresses are contiguous may also be a difficult limitation to impose statically. To remove this limitation, we need to introduce one more column as shown below: memory_non_contiguous_memory In the above, the prover sets the value in the new column t to 0 when the address doesn't change, and to 1/(a′−a) otherwise. To simplify constraint description, we'll define variable n computed as follows: n=(a′−a)⋅t′ Then, to make sure the prover sets the value of t correctly, we'll impose the following constraints: n2−n=0(1−n)⋅(a′−a)=0 The above constraints ensure that n=1 whenever the address changes, and n=0 otherwise. We can then define the following constraints to make sure values in columns d0 and d1 contain either the delta between addresses or between clock cycles. Condition Constraint Comments n=1 (a′−a)−(216⋅d1′+d0′)=0 When the address changes, columns d0 and d1 at the next row should contain the delta between the old and the new address. n=0 (i′−i−1)−(216⋅d1′+d0′)=0 When the address remains the same, columns d0 and d1 at the next row should contain the delta between the old and the new clock cycle. We can combine the above constraints as follows: (n⋅(a′−a)+(1−n)⋅(i′−i−1))−(216⋅d1′+d0′)=0 The above constraint, in combination with 16-bit range checks against columns d0 and d1 ensure that values in addr and clk columns always increase monotonically, and also that column addr may contain duplicates, while values in clk column must be unique for a given address.","breadcrumbs":"Design » Chiplets » Memory Chiplet » Non-contiguous memory","id":"256","title":"Non-contiguous memory"},"257":{"body":"In many situations it may be desirable to assign memories to different context. For example, when making a cross-contract calls, memories of the caller and the callee should be separate. That is, caller should not be able to access the memory of the callee and vice-versa. To accommodate this feature, we need to add one more column as illustrated below. memory_context_separation This new column ctx should behave similarly to the address column: values in it should increase monotonically, and there could be breaks between them. We also need to change how the prover populates column t: If the context changes, t should be set to the inverse (c′−c), where c is a reference to column ctx. If the context remains the same but the address changes, column t should be set to the inverse of (a′−a). Otherwise, column t should be set to 0. To simplify description of constraints, we'll define two variables n0 and n1 as follows: n0=(c′−c)⋅t′n1=(a′−a)⋅t′ Thus, n0=1 when the context changes, and 0 otherwise. Also, (1−n0)⋅n1=1 when context remains the same and address changes, and 0 otherwise. To make sure the prover sets the value of column t correctly, we'll need to impose the following constraints: n02−n0=0(1−n0)⋅(c′−c)=0(1−n0)⋅(n12−n1)=0(1−n0)⋅(1−n1)⋅(a′−a)=0 We can then define the following constraints to make sure values in columns d0 and d1 contain the delta between contexts, between addresses, or between clock cycles. Condition Constraint Comments n0=1 (c′−c)−(216⋅d1′+d0′)=0 When the context changes, columns d0 and d1 at the next row should contain the delta between the old and the new contexts. n0=0 n1=1 (a′−a)−(216⋅d1′+d0′)=0 When the context remains the same but the address changes, columns d0 and d1 at the next row should contain the delta between the old and the new addresses. n0=0 n1=0 (i′−i−1)−(216⋅d1′+d0′)=0 When both the context and the address remain the same, columns d0 and d1 at the next row should contain the delta between the old and the new clock cycle. We can combine the above constraints as follows: (n0⋅(c′−c)+(1−n0)⋅(n1⋅(a−a′)+(1−n1)⋅(i′−i−1)))−(216⋅d1′+d0′)=0 The above constraint, in combination with 16-bit range checks against columns d0 and d1 ensure that values in ctx, addr, and clk columns always increase monotonically, and also that columns ctx and addr may contain duplicates, while the values in column clk must be unique for a given combination of ctx and addr. Notice that the above constraint has degree 5.","breadcrumbs":"Design » Chiplets » Memory Chiplet » Context separation","id":"257","title":"Context separation"},"258":{"body":"While the approach described above works, it comes at significant cost. Reading or writing a single value requires 8 trace cells and 2 16-bit range checks. Assuming a single range check requires roughly 2 trace cells, the total number of trace cells needed grows to 12. This is about 6x worse the simple contiguous write-once memory described earlier. Miden VM frequently needs to deal with batches of 4 field elements, which we call words . For example, the output of Rescue Prime Optimized hash function is a single word. A single 256-bit integer value can be stored as two words (where each element contains one 32-bit value). Thus, we can optimize for this common use case by making the memory word-addressable . That is 4 field elements are located at each memory address, and we can read and write elements to/from memory in batches of four. The layout of Miden VM memory table is shown below: memory_miden_vm_layout where: s0 is a selector column which is set to 1 for read operations and 0 for write operations. s1 is a selector oclumn which is set to 1 when previously accessed memory is being read and 0 otherwise. In other words, it is set to 1 only when the context and address are the same as they were in the previous row and the s0 operation selector is set to 1 (indicating a read). ctx contains context ID. Values in this column must increase monotonically but there can be gaps between two consecutive values of up to 232. Also, two consecutive values can be the same. In AIR constraint description below, we refer to this column as c. addr contains memory address. Values in this column must increase monotonically for a given context but there can be gaps between two consecutive values of up to 232. Also, two consecutive values can be the same. In AIR constraint description below, we refer to this column as a. clk contains clock cycle at which the memory operation happened. Values in this column must increase monotonically for a given context and memory address but there can be gaps between two consecutive values of up to 232. In AIR constraint description below, we refer to this column as i. v0, v1, v2, v3 columns contain field elements stored at a given context/address/clock cycle after the memory operation. Columns d0 and d1 contain lower and upper 16 bits of the delta between two consecutive context IDs, addresses, or clock cycles. Specifically: When the context changes, these columns contain (c′−c). When the context remains the same but the address changes, these columns contain (a′−a). When both the context and the address remain the same, these columns contain (i′−i−1). Column t contains the inverse of the delta between two consecutive context IDs, addresses, or clock cycles. Specifically: When the context changes, this column contains the inverse of (c′−c). When the context remains the same but the address changes, this column contains the inverse of (a′−a). When both the context and the address remain the same, this column contains the inverse of (i′−i−1). For every memory access operation (i.e., read or write), a new row is added to the memory table. For read operations, s0 is set to 1. If neither ctx nor addr have changed, then s1 is set to 1 and the v columns are set to equal the values from the previous row. If ctx or addr have changed, then s1 is set to 0 and the v columns are initialized to 0. For write operations, the values may be different, and both selector columns s0 and s1 are set to 0. The amortized cost of reading or writing a single value is between 4 and 5 trace cells (this accounts for the trace cells needed for 16-bit range checks). Thus, from performance standpoint, this approach is roughly 2.5x worse than the simple contiguous write-once memory described earlier. However, our view is that this trade-off is worth it given that this approach provides read-write memory, context separation, and eliminates the contiguous memory requirement.","breadcrumbs":"Design » Chiplets » Memory Chiplet » Miden approach","id":"258","title":"Miden approach"},"259":{"body":"To simplify description of constraints, we'll define two variables n0 and n1 as follows: n0=Δc⋅t′n1=Δa⋅t′ Where Δc=c′−c and Δa=a′−a. To make sure the prover sets the value of column t correctly, we'll need to impose the following constraints: n02−n0=0 | degree=4 (1−n0)⋅Δc=0 | degree=3 (1−n0)⋅(n12−n1)=0 | degree=6 (1−n0)⋅(1−n1)⋅Δa=0 | degree=5 The above constraints guarantee that when context changes, n0=1. When context remains the same but address changes, (1−n0)⋅n1=1. And when neither the context nor the address change, (1−n0)⋅(1−n1)=1. To enforce the values of the selector columns, we first require that they both contain only binary values. s02−s0=0 | degree=2 s12−s1=0 | degree=2 Then we require that s1 is always set to 1 during read operations when the context and address did not change and to 0 in all other cases. (1−n0)⋅(1−n1)⋅s0′⋅(1−s1′)=0 | degree=6 (n0+(1−n0)⋅n1+(1−s0′))⋅s1′=0 | degree=5 The first constraint enforces that s_1 is 1 when the operation is a read and ctx and addr are both unchanged. The second constraint enforces that when either the context changed, the address changed, or the operation is a write, then s_1 is set to 0. To enforce the values of context ID, address, and clock cycle grow monotonically as described in the previous section, we define the following constraint. (n0⋅Δc+(1−n0)⋅(n1⋅Δa+(1−n1)⋅Δi))−(216⋅d1′+d0′)=0 | degree=5 Where Δi=i′−i−1. In addition to this constraint, we also need to make sure that values in registers d0 and d1 are less than 216, and this can be done with permutation-based range checks. Next, we need to make sure that values at a given memory address are always initialized to 0. This can be done with the following constraint: s0⋅(1−s1)⋅vi=0 for i∈{0,1,2,3} | degree=3 Thus, when the operation is a read and either the context changes or the address changes, values in the vi columns are guaranteed to be zeros. Lastly, we need to make sure that for the same context/address combination, the vi columns of the current row are equal to the corresponding vi columns of the next row. This can be done with the following constraints: s1⋅(vi′−vi)=0 for i∈{0,1,2,3} | degree=2 Chiplets bus constraints Communication between the memory chiplet and the stack is accomplished via the chiplets bus bchip. To respond to memory access requests from the stack, we need to divide the current value in bchip by the value representing a row in the memory table. This value can be computed as follows: vmem=α0+α1⋅opmem+α2⋅c+α3⋅a+α4⋅i+j=0∑3(αj+5⋅vj) Where, opmem is the unique operation label of the memory access operation. To ensure that values of memory table rows are included into the chiplets bus, we impose the following constraint: bchip′=bchip⋅vmem | degree=2 On the stack side, for every memory access request, a corresponding value is divided out of the bchip column. Specifics of how this is done are described here .","breadcrumbs":"Design » Chiplets » Memory Chiplet » AIR constraints","id":"259","title":"AIR constraints"},"26":{"body":"The !help command prints out all the available commands in the REPL tool.","breadcrumbs":"Development tooling » REPL » !help","id":"26","title":"!help"},"260":{"body":"The kernel ROM enables executing predefined kernel procedures. These procedures are always executed in the root context and can only be accessed by a SYSCALL operation. The chiplet tracks and enforces correctness of all kernel procedure calls as well as maintaining a list of all the procedures defined for the kernel, whether they are executed or not. More background about Miden VM execution contexts can be found here .","breadcrumbs":"Design » Chiplets » Kernel ROM Chiplet » Kernel ROM chiplet","id":"260","title":"Kernel ROM chiplet"},"261":{"body":"The kernel ROM table consists of 6 columns. kernel_rom_execution_trace The meaning of columns in the above is as follows: Column s0 specifies whether the value in the row should be included into the chiplets bus bchip. addr is a row address column which starts out at 0 and must either remain the same or be incremented by 1 with every row. r0,...,r3 are contain the roots of the kernel functions. The values in these columns can change only when the value in the addr column changes. If the addr column remains the same, the values in the r columns must also remain the same.","breadcrumbs":"Design » Chiplets » Kernel ROM Chiplet » Kernel ROM trace","id":"261","title":"Kernel ROM trace"},"262":{"body":"The following constraints are required to enforce correctness of the kernel ROM trace. For convenience, let's define Δaddr=addr′−addr. The s0 column must be binary. s02−s0=0 | degree=2 The value in the addr column must either stay the same or increase by 1. Δaddr⋅(1−Δaddr)=0 | degree=2 Finally, if the addr column stays the same then the kernel procedure root must not change. This can be achieved by enforcing the following constraint against each of the four procedure root columns: (1−Δaddr)⋅(ri′−ri)=0 | degree=2 These constraints on addr should not be applied to the very last row of the kernel ROM's execution trace, since we do not want to enforce a value that would conflict with the first row of a subsequent chiplet (or padding). Therefore we can create a special virtual flag for this constraint using the chip_s3 selector column from the chiplets module that selects for the kernel ROM chiplet. The modified constraints which should be applied are the following: (1−chip_s3′)⋅Δaddr⋅(1−Δaddr)=0 | degree=3 (1−chip_s3′)⋅(1−Δaddr)⋅(ri′−ri)=0 | degree=3 Note: these constraints should also be multiplied by chiplets module's selector flag for the kernel ROM chiplet, as is true for all constraints in this chiplet.","breadcrumbs":"Design » Chiplets » Kernel ROM Chiplet » Constraints","id":"262","title":"Constraints"},"263":{"body":"The chiplets bus is used to keep track of all kernel function calls. To simplify the notation for describing kernel ROM constraints on the chiplets bus, we'll first define variable u, which represents how each kernel procedure in the kernel ROM's execution trace is reduced to a single value. Denoting the random values received from the verifier as α0,α1, etc., this can be achieved as follows. v=α0+α1⋅opkrom+i=0∑3(αi+2⋅ri) Where, opkrom is the unique operation label of the kernel procedure call operation. The request side of the constraint for the operation is enforced during program block hashing of the SYSCALL operation . To provide accessed kernel procedures to the chiplets bus, we must send the kernel procedure to the bus every time it is called, which is indicated by the s0 column. bchip′=bchip⋅(s0⋅v+1−s0) | degree=3 Thus, when s0=0 this reduces to bchip′=bchip, but when s0=1 it becomes bchip′=bchip⋅u.","breadcrumbs":"Design » Chiplets » Kernel ROM Chiplet » Chiplets bus constraints","id":"263","title":"Chiplets bus constraints"},"264":{"body":"Note: Although this table is described independently, it is implemented as part of the chiplets virtual table , which combines all virtual tables required by the any of the chiplets into a single master table. This kernel procedure table keeps track of all unique kernel function roots. The values in this table will be updated only when the value in the address column changes. The row value included into vtchip is: v=α0+α1⋅addr+i=0∑3(αi+2⋅ri) The constraint against vtchip is: vtchip′=vtchip⋅(Δaddr⋅v+1−Δaddr) | degree=3 Thus, when Δaddr=0, the above reduces to vtchip′=vtchip, but when Δaddr=1, the above becomes vtchip′=vtchip⋅v. We also need to impose boundary constraints to make sure that running product column implementing the kernel procedure table is equal to 1 when the kernel procedure table begins and to the product of all unique kernel functions when it ends. The last boundary constraint means that the verifier only needs to know which kernel was used, but doesn't need to know which functions were invoked within the kernel. These two constraints are described as part of the chiplets virtual table constraints .","breadcrumbs":"Design » Chiplets » Kernel ROM Chiplet » Kernel procedure table constraints","id":"264","title":"Kernel procedure table constraints"},"265":{"body":"Zero knowledge virtual machines frequently make use of lookup arguments to enable performance optimizations. Miden VM uses multiset checks, and a brief introduction to them can be found here . In Miden VM, multiset checks are used for two purposes: To prove the consistency of intermediate values that must persist between different cycles of the trace, without storing the full data in the execution trace (which would require adding more columns to the trace). To prove correct interaction between two independent sections of the execution trace, e.g., between the main trace where the result of some operation is required, but would be expensive to compute, and a specialized component which can perform that operation cheaply. The first is achieved using virtual tables of data, where we add a row at some cycle in the trace and remove it at a later cycle when it is needed again. Instead of maintaining the entire table in the execution trace, multiset checks allow us to prove data consistency of this table using one running product column. The second is done by reducing each operation to a lookup value and then using a communication bus , implemented as a running product column, to provably connect the two sections of the trace.","breadcrumbs":"Design » Multiset checks » Multiset checks","id":"265","title":"Multiset checks"},"266":{"body":"Although the multiset equality check can be thought of as comparing multiset equality between two vectors a and b, in Miden VM it is implemented as a single running product column in the following way: The running product column is initialized to a value x at the beginning of the trace. (We typically use x=1.) All values of a are multiplied into the running product column. All values of b are divided out of the running product column. If a and b were multiset equal, then the running product column will equal x at the end of the trace. Running product columns are computed using a set of random values α0, α1,... sent to the prover by the verifier after the prover commits to the execution trace of the program. Length of running product columns Running product columns are computed by including information from the current row of the main execution trace into the next row of the running product column. Thus, in order to ensure that the trace is long enough to give the running product column space for its final value, a padding row may be required at the end of the trace of the component upon which the running product column depends. This is true when the data in the main trace could go all the way to the end of the trace, such as in the case of the range checker. Cost of running product columns It is important to note that depending on the field in which we operate, a running product column may actually require more than one trace column. This is specifically true for small fields. Since Miden uses a 64-bit field, each running product column needs to be represented by 2 columns to achieve ~100-bit security and by 3 columns to achieve ~128-bit security.","breadcrumbs":"Design » Multiset checks » Running product columns","id":"266","title":"Running product columns"},"267":{"body":"Virtual tables can be used to store intermediate data which is computed at one cycle and used at a different cycle. When the data is computed, the row is added to the table, and when it is used later, the row is deleted from the table. Thus, all that needs to be proved is the data consistency between the row that was added and the row that was deleted. The consistency of a virtual table can be proved with a single trace column p, which keeps a running product of rows that were inserted into and deleted from the table. This is done by reducing each row to a single value, multiplying the value into p when the row is inserted, and dividing the value out of p when the row is removed. Thus, at any step of the computation, p will contain a product of all rows currently in the table. The initial value of p is set to 1. Thus, if the table is empty by the time Miden VM finishes executing a program (we added and then removed exactly the same set of rows), the final value of p will also be equal to 1. The initial and final values are enforced via boundary constraints.","breadcrumbs":"Design » Multiset checks » Virtual tables","id":"267","title":"Virtual tables"},"268":{"body":"To compute a product of rows, we'll first need to reduce each row to a single value. This can be done as follows. Let t0,t1,t2,... be columns in the virtual table, and assume the verifier sends a set of random values α0, α1,... to the prover after the prover commits to the execution trace of the program. The prover reduces row i in the table to a single value ri as: ri=α0+α1⋅t0,i+α2⋅t1,i+α3⋅t2,i+... Then, when row i is added to the table, we'll update the value in the p column like so: p′=p⋅ri Analogously, when row i is removed from the table, we'll update the value in column p like so: p′=rip","breadcrumbs":"Design » Multiset checks » Computing a virtual table's trace column","id":"268","title":"Computing a virtual table's trace column"},"269":{"body":"Miden VM currently makes use of 6 virtual tables across 4 components: Stack: Overflow table Decoder: Block stack table Block hash table Op group table Chiplets: Chiplets virtual table , which combines the following two tables into one: Hash chiplet sibling table Kernel ROM chiplet procedure table","breadcrumbs":"Design » Multiset checks » Virtual tables in Miden VM","id":"269","title":"Virtual tables in Miden VM"},"27":{"body":"The !program command prints out the entire Miden program being executed. E.g., in the below scenario: >> push.1.2.3.4\n>> repeat.16 pow2 end\n>> u32checked_add >> !program\nbegin push.1.2.3.4 repeat.16 pow2 end u32checked_add\nend","breadcrumbs":"Development tooling » REPL » !program","id":"27","title":"!program"},"270":{"body":"One strategy for improving the efficiency of a zero knowledge virtual machine is to use specialized components for complex operations and have the main circuit “offload” those operations to the corresponding components by specifying inputs and outputs and allowing the proof of execution to be done by the dedicated component instead of by the main circuit. These specialized components are designed to prove the internal correctness of the execution of the operations they support. However, in isolation they cannot make any guarantees about the source of the input data or the destination of the output data. In order to prove that the inputs and outputs specified by the main circuit match the inputs and outputs provably executed in the specialized component, some kind of provable communication bus is needed. This bus is typically implemented as some kind of lookup argument, and in Miden VM in particular we use multiset checks.","breadcrumbs":"Design » Multiset checks » Communication buses","id":"270","title":"Communication buses"},"271":{"body":"A bus can be implemented as a single trace column b where a request can be sent to a specific component and a corresponding response will be sent back by that component. The values in this column contain a running product of the communication with the component as follows: Each request is “sent” by computing a lookup value from some information that's specific to the specialized component, the operation inputs, and the operation outputs, and then dividing it out of the running product column b. Each chiplet response is “sent” by computing the same lookup value from the component-specific information, inputs, and outputs, and then multiplying it into the running product column b. Thus, if the requests and responses match, and the bus column b is initialized to 1, then b will start and end with the value 1. This condition is enforced by boundary constraints on column b. Note that the order of the requests and responses does not matter, as long as they are all included in b. In fact, requests and responses for the same operation will generally occur at different cycles. Additionally, there could be multiple requests sent in the same cycle, and there could also be a response provided at the same cycle that a request is received.","breadcrumbs":"Design » Multiset checks » Implementation","id":"271","title":"Implementation"},"272":{"body":"These constraints can be expressed in a general way with the 2 following requirements: The lookup value must be computed using random values α0,α1, etc. that are provided by the verifier after the prover has committed to the main execution trace. The lookup value must include all uniquely identifying information for the component/operation and its inputs and outputs. Given an example operation opex with inputs i0,...,in and outputs o0,...,om, the lookup value can be computed as follows: lookup=α0+α1⋅opex+α2⋅i0+...+αn+2⋅in+αn+3⋅o0+...+αn+2+m⋅om The constraint for sending this to the bus as a request would be: b′⋅lookup=b The constraint for sending this to the bus as a response would be: b′=b⋅lookup However, these constraints must be combined, since it's possible that requests and responses both occur during the same cycle. To combine them, let ulookup be the request value and let vlookup be the response value. These values are both computed the same way as shown above, but the data sources are different, since the input/output values used to compute ulookup come from the trace of the component that's \"offloading\" the computation, while the input/output values used to compute vlookup come from the trace of the specialized component. The final constraint can be expressed as: b′⋅ulookup=b⋅vlookup","breadcrumbs":"Design » Multiset checks » Communication bus constraints","id":"272","title":"Communication bus constraints"},"273":{"body":"In Miden VM, the specialized components are implemented as dedicated segments of the execution trace, which include the range checker and the 3 chiplets in the Chiplets module (the hash chiplet, bitwise chiplet, and memory chiplet). Miden VM currently uses 2 buses to communicate with these components: The chiplets bus bchip , which communicates with all of the chiplets (Hash, Bitwise, and Memory). The range checker bus brange .","breadcrumbs":"Design » Multiset checks » Communication buses in Miden VM","id":"273","title":"Communication buses in Miden VM"},"274":{"body":"Proofs of execution generated by Miden VM are based on STARKs. A STARK is a novel proof-of-computation scheme that allows you to create an efficiently verifiable proof that a computation was executed correctly. The scheme was developed by Eli Ben-Sasson, Michael Riabzev et al. at Technion - Israel Institute of Technology. STARKs do not require an initial trusted setup, and rely on very few cryptographic assumptions. Here are some resources to learn more about STARKs: STARKs paper: Scalable, transparent, and post-quantum secure computational integrity STARKs vs. SNARKs: A Cambrian Explosion of Crypto Proofs Vitalik Buterin's blog series on zk-STARKs: STARKs, part 1: Proofs with Polynomials STARKs, part 2: Thank Goodness it's FRI-day STARKs, part 3: Into the Weeds Alan Szepieniec's STARK tutorials: Anatomy of a STARK BrainSTARK StarkWare's STARK Math blog series: STARK Math: The Journey Begins Arithmetization I Arithmetization II Low Degree Testing A Framework for Efficient STARKs StarkWare's STARK tutorial: STARK 101","breadcrumbs":"Background Material » Background Material","id":"274","title":"Background Material"},"28":{"body":"The !stack command prints out the state of the stack at the last executed instruction. Since the stack always contains at least 16 elements, 16 or more elements will be printed out (even if all of them are zeros). >> push.1 push.2 push.3 push.4 push.5\n>> exp\n>> u32checked_mul\n>> swap\n>> eq.2\n>> assert The !stack command will print out the following state of the stack: >> !stack\n3072 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0","breadcrumbs":"Development tooling » REPL » !stack","id":"28","title":"!stack"},"29":{"body":"The !mem command prints out the contents of all initialized memory locations. For each such location, the address, along with its memory values, is printed. Recall that four elements are stored at each memory address. If the memory has at least one value that has been initialized: >> !mem\n7: [1, 2, 0, 3]\n8: [5, 7, 3, 32]\n9: [9, 10, 2, 0] If the memory is not yet been initialized: >> !mem\nThe memory has not been initialized yet","breadcrumbs":"Development tooling » REPL » !mem","id":"29","title":"!mem"},"3":{"body":"In the coming months we plan to finalize the design of the VM and implement support for the following features: Recursive proofs. Miden VM will soon be able to verify a proof of its own execution. This will enable infinitely recursive proofs, an extremely useful tool for real-world applications. Better debugging. Miden VM will provide a better debugging experience including the ability to place breakpoints, better source mapping, and more complete program analysis info. Faulty execution. Miden VM will support generating proofs for programs with faulty execution (a notoriously complex task in ZK context). That is, it will be possible to prove that execution of some program resulted in an error.","breadcrumbs":"Introduction » Planned features","id":"3","title":"Planned features"},"30":{"body":"The !mem[addr] command prints out memory contents at the address specified by addr. If the addr has been initialized: >> !mem[9]\n9: [9, 10, 2, 0] If the addr has not been initialized: >> !mem[87]\nMemory at address 87 is empty","breadcrumbs":"Development tooling » REPL » !mem[addr]","id":"30","title":"!mem[addr]"},"31":{"body":"The !undo command reverts to the previous state of the stack and memory by dropping off the last executed assembly instruction from the program. One could use !undo as often as they want to restore the state of a stack and memory n instructions ago (provided there are n instructions in the program). The !undo command will result in an error if no remaining instructions are left in the Miden program. >> push.1 push.2 push.3\n>> push.4\n>> !stack\n4 3 2 1 0 0 0 0 0 0 0 0 0 0 0 0 >> push.5\n>> !stack\n5 4 3 2 1 0 0 0 0 0 0 0 0 0 0 0 >> !undo\n4 3 2 1 0 0 0 0 0 0 0 0 0 0 0 0 >> !undo\n3 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0","breadcrumbs":"Development tooling » REPL » !undo","id":"31","title":"!undo"},"32":{"body":"In the following sections, we provide developer-focused documentation useful to those who want to develop on Miden VM or build compilers from higher-level languages to Miden VM. This documentation consists of two high-level sections: Miden assembly which provides a detailed description of Miden assembly language, which is the native language of Miden VM. Miden Standard Library which provides descriptions of all procedures available in Miden Standard Library. For info on how to run programs on Miden VM, please refer to the usage section in the introduction.","breadcrumbs":"User Documentation » User Documentation","id":"32","title":"User Documentation"},"33":{"body":"Miden assembly is a simple, low-level language for writing programs for Miden VM. It stands just above raw Miden VM instruction set, and in fact, many instructions of Miden assembly map directly to raw instructions of Miden VM. Before Miden assembly can be executed on Miden VM, it needs to be compiled into a Program MAST (Merkelized Abstract Syntax Tree) which is a binary tree of code blocks each containing raw Miden VM instructions. assembly_to_VM As compared to raw Miden VM instructions, Miden assembly has several advantages: Miden assembly is intended to be a more stable external interface for the VM. That is, while we plan to make significant changes to the underlying VM to optimize it for stability, performance etc., we intend to make very few breaking changes to Miden assembly. Miden assembly natively supports control flow expressions which the assembler automatically transforms into a program MAST. This greatly simplifies writing programs with complex execution logic. Miden assembly supports macro instructions . These instructions expand into short sequences of raw Miden VM instructions making it easier to encode common operations. Miden assembly supports procedures . These are stand-alone blocks of code which the assembler inlines into program MAST at compile time. This improves program modularity and code organization. The last two points also make Miden assembly much more concise as compared to the raw program MAST. This may be important in the blockchain context where pubic programs need to be stored on chain.","breadcrumbs":"User Documentation » Miden Assembly » Miden Assembly","id":"33","title":"Miden Assembly"},"34":{"body":"In this document we use the following terms and notations: p is the modulus of the VM's base field which is equal to 264−232+1. A binary value means a field element which is either 0 or 1. Inequality comparisons are assumed to be performed on integer representations of field elements in the range [0,p). Throughout this document, we use lower-case letters to refer to individual field elements (e.g., a). Sometimes it is convenient to describe operations over groups of elements. For these purposes we define a word to be a group of four elements. We use upper-case letters to refer to words (e.g., A). To refer to individual elements within a word, we use numerical subscripts. For example, a0 is the first element of word A, b3 is the last element of word B, etc.","breadcrumbs":"User Documentation » Miden Assembly » Terms and notations","id":"34","title":"Terms and notations"},"35":{"body":"The design of Miden assembly tries to achieve the following goals: Miden assembly should be an easy compilation target for high-level languages. Programs written in Miden assembly should be readable, even if the code is generated by a compiler from a high-level language. Control flow should be easy to understand to help in manual inspection, formal verification, and optimization. Compilation of Miden assembly into Miden program MAST should be as straight-forward as possible. Serialization of Miden assembly into a binary representation should be as compact and as straight-forward as possible. In order to achieve the first goal, Miden assembly exposes a set of native operations over 32-bit integers and supports linear read-write memory. Thus, from the stand-point of a higher-level language compiler, Miden VM can be viewed as a regular 32-bit stack machine with linear read-write memory. In order to achieve the second and third goals, Miden assembly facilitates flow control via high-level constructs like while loops, if-else statements, and function calls with statically defined targets. Thus, for example, there are no explicit jump instructions. In order to achieve the fourth goal, Miden assembly retains direct access to the VM stack rather than abstracting it away with higher-level constructs and named variables. Lastly, in order to achieve the fifth goal, each instruction of Miden assembly can be encoded using a single byte. The resulting byte-code is simply a one-to-one mapping of instructions to their binary values.","breadcrumbs":"User Documentation » Miden Assembly » Design goals","id":"35","title":"Design goals"},"36":{"body":"A Miden assembly program is just a sequence of instructions each describing a specific directive or an operation. You can use any combination of whitespace characters to separate one instruction from another. In turn, Miden assembly instructions are just keywords which can be parameterized by zero or more parameters. The notation for specifying parameters is keyword.param1.param2 - i.e., the parameters are separated by periods. For example, push.123 instruction denotes a push operation which is parameterized by value 123. Miden assembly programs are organized into procedures. Procedures, in turn, can be grouped into modules.","breadcrumbs":"User Documentation » Miden Assembly » Code Organization » Code organization","id":"36","title":"Code organization"},"37":{"body":"A procedure can be used to encapsulate a frequently-used sequence of instructions which can later be invoked via a label. A procedure must start with a proc.. instruction and terminate with an end instruction. For example: proc.foo.2 \nend A procedure label must start with a letter and can contain any combination of numbers, ASCII letters, and underscores (_). The number of characters in the procedure label cannot exceed 100. The number of locals specifies the number of memory-based local words a procedure can access (via loc_load, loc_store, and other instructions ). If a procedure doesn't need any memory-based locals, this parameter can be omitted or set to 0. A procedure can have at most 216 locals, and the total number of locals available to all procedures at runtime is limited to 230. To execute a procedure, the exec., call., and syscall. instructions can be used. For example: exec.foo The difference between using each of these instructions is explained in the next section . A procedure may execute any other previously defined procedure, but it cannot execute itself or any of the subsequent procedures. Thus, recursive procedure calls are not possible. For example, the following code block defines a program with two procedures: proc.foo \nend proc.bar exec.foo \nend begin exec.bar exec.foo\nend","breadcrumbs":"User Documentation » Miden Assembly » Code Organization » Procedures","id":"37","title":"Procedures"},"38":{"body":"A module consists of one or more procedures. There are two types of modules: library modules and executable modules (also called programs ). Library modules Library modules contain zero or more internal procedures and one or more exported procedures. For example, the following module defines one internal procedure (defined with proc instruction) and one exported procedure (defined with export instruction): proc.foo \nend export.bar exec.foo \nend Programs Executable modules are used to define programs. A program contains zero or more internal procedures (defined with proc instruction) and exactly one main procedure (defined with begin instruction). For example, the following module defines one internal procedure and a main procedure: proc.foo \nend begin